/* =============================================
   AS Media - Landing Page Optimized CSS
   Lightweight, Responsive, Modern
   ============================================= */

:root {
    --primary: #662c91;
    --secondary: #f97acc;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #662c91 0%, #f97acc 100%);
}

* { box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 600; }
.section-title { color: var(--secondary); font-size: 18px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.section-heading { color: var(--dark); font-size: clamp(28px, 5vw, 45px); line-height: 1.2; margin-bottom: 20px; }
.as_media { color: var(--primary); font-weight: 600; }

/* Buttons */
.btn-primary-custom {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 44, 145, 0.3);
    color: var(--white);
}
.btn-outline-custom {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-outline-custom:hover {
    background: var(--secondary);
    color: var(--white);
}

/* =============================================
   Header / Navigation (Solid, no glassy effect)
   ============================================= */
.site-header {
    position: relative;
    z-index: 1000;
    padding: 10px 0;
    background-color: #fff;
    background-image: url('../img/bg-header.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.site-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    background-image: url('../img/bg-menu.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 5px 0;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
/* Add spacing when header is fixed - push content below navbar */
body.header-fixed {
    padding-top: 90px;
}
/* Smooth scroll offset for anchor links */
section[id] {
    scroll-margin-top: 90px;
}
.site-header .container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo img {
    max-height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}
.site-logo:hover img {
    transform: scale(1.05);
}
.site-header.scrolled .site-logo img {
    max-height: 55px;
}
.site-logo .site-title { display: none; }

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}
.nav-menu a {
    color: #060709;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 10px;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-menu a:hover { color: var(--secondary); }
.nav-menu a:hover::after { width: 80%; }

/* Phone Button - Matching old.php exactly */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    padding: 20px 30px 20px 55px;
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    background-image: url('../img/icons/phone.png');
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 25px;
}
.header-phone i { display: none; }
.header-phone:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0,0,0,0.1);
}
.mobile-nav.active { left: 0; }
.mobile-nav-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.mobile-nav-header img { max-width: 150px; }
.mobile-nav-menu {
    list-style: none;
    padding: 20px;
    margin: 0;
}
.mobile-nav-menu li { border-bottom: 1px solid #eee; }
.mobile-nav-menu a {
    display: block;
    padding: 15px 0;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.mobile-nav-menu a:hover {
    color: var(--secondary);
    padding-left: 10px;
}
.mobile-nav-contact {
    padding: 20px;
    border-top: 1px solid #eee;
}
.mobile-nav-contact h6 {
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}
.mobile-nav-contact a:hover {
    color: var(--secondary);
}
.mobile-nav-contact i { color: var(--secondary); width: 20px; }
.mobile-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.mobile-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s;
}
.mobile-social a:hover { background: var(--secondary); }
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* =============================================
   Hero / Banner Section
   ============================================= */
.hero-section {
    position: relative;
    min-height: calc(100vh - 90px);
    background: var(--dark);
    overflow: hidden;
}
.hero-carousel { height: calc(100vh - 90px); min-height: 600px; }
.hero-slide {
    position: relative;
    height: calc(100vh - 90px);
    min-height: 600px;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}
.hero-content {
    position: relative;
    z-index: 2;
    height: calc(100vh - 90px);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.hero-content .container { max-width: 1260px; margin: 0 auto; }
.hero-subtitle {
    color: var(--white);
    font-size: clamp(18px, 3vw, 28px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}
.hero-title {
    color: var(--white);
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-text {
    color: rgba(255,255,255,0.9);
    font-size: clamp(16px, 2vw, 21px);
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.7;
}
.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: all 0.3s ease;
    z-index: -1;
}
.hero-btn:hover {
    color: var(--white);
}
.hero-btn:hover::before {
    left: 0;
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
}
.hero-carousel .carousel-control-prev { left: 30px; }
.hero-carousel .carousel-control-next { right: 30px; }
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: var(--secondary);
}
.hero-carousel .carousel-indicators {
    bottom: 30px;
}
.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s;
}
.hero-carousel .carousel-indicators button.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* =============================================
   About Section
   ============================================= */
.about_section {
    padding: 70px 0;
    background: #fff;
    overflow: visible;
    margin-top: 50px;
}
.about_section .container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 20px;
    overflow: visible;
}
.abt_content_section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 80px;
}

/* About Image with decorations */
.aboutimg {
    position: relative;
    flex: 0 0 420px;
    max-width: 420px;
    margin-right: 30px;
}
.aboutimg img {
    border-bottom-right-radius: 50%;
    border-top-left-radius: 44%;
    border-bottom-left-radius: 44%;
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 100%;
}
.aboutimg::before {
    left: -54px;
    background-image: url('../img/bg-pattern.png');
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    width: 118px;
    height: 118px;
    top: -16px;
    bottom: 0px;
}
.aboutimg::after {
    content: '';
    z-index: 1;
    width: 420px;
    height: 400px;
    background: url('../img/bg-about-line.png') no-repeat;
    background-size: contain;
    position: absolute;
    top: -80px;
    right: -50px;
}
.aboutimg h1 {
    position: absolute;
    z-index: 9;
    width: 320px;
    right: -30px;
    bottom: -10px;
    background: #fff;
    padding: 15px 15px 15px 60px;
    font-size: 32px;
    font-weight: bold;
    border-top-left-radius: 30px;
    color: #494949;
    margin: 0;
}
.aboutimg h1 .experience_years {
    font-size: 52px;
}

/* About Text Content */
.about-text-content {
    flex: 1;
    min-width: 300px;
    padding-left: 20px;
}

/* About Headings */
.abt-inner-heading {
    font-size: 55px;
    color: var(--secondary);
    position: relative;
    padding-left: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}
.abt-inner-heading::before {
    border-left: 3px solid var(--secondary);
    content: '';
    height: 100%;
    position: absolute;
    left: 0px;
}
.abt-sub-heading {
    font-size: 38px;
    color: #494949;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* About Content */
.abt-content {
    text-align: left;
}
.abt-content p {
    font-size: 18px;
    color: #494949;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

/* About List */
.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #494949;
}
.about-list li {
    background: url('../img/icons/arrow.png') no-repeat;
    background-position: 0px 10px;
    padding-left: 21px;
    font-size: 20px;
    margin: 0 0 8px 0;
    transition: all 0.3s ease;
    cursor: default;
}
.about-list li:hover {
    color: var(--secondary);
    padding-left: 28px;
}

/* About Button - aligned right */
.abt_btn { margin-top: 20px; clear: both; }
.brownbtn {
    padding: 10px 30px;
    font-size: 20px;
    border-radius: 50px;
    color: var(--secondary);
    position: relative;
    box-shadow: inset 0 0px 0px 2px var(--secondary);
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    z-index: 1;
}
.brownbtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary);
    transition: all 0.3s ease;
    z-index: -1;
}
.brownbtn:hover {
    color: #fff;
}
.brownbtn:hover::before {
    width: 100%;
}

/* =============================================
   Services Section (Our Services)
   ============================================= */
.ourservice_section {
    padding: 70px 0;
    padding-bottom: 180px;
    background: #fff;
    background-image: url('../img/bg-services.png');
    background-repeat: no-repeat;
    background-position: 0% 50%;
    background-size: contain;
    position: relative;
}
.ourservice_section .container {
    max-width: 1260px;
    padding: 20px;
    position: relative;
    z-index: 1;
}
.ourservice {
    background-color: #f6ecfe;
    padding: 70px;
    border-radius: 30px;
}
.ourservice_section h6 {
    font-size: 36px;
    color: #494949;
    padding-left: 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    transition: 0.4s;
}
p.ourservice_content {
    font-size: 20px;
    color: #494949;
    max-width: 340px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
}
p.services_content {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    line-height: 34px;
    color: #494949;
}
.ourservice_section .sercives_imgs {
    width: 64px;
    height: 64px;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    flex-shrink: 0;
}
.services_section {
    padding: 20px !important;
    transition: all 0.4s ease;
    border-radius: 30px;
    cursor: pointer;
}
.services_section:hover {
    background-color: var(--secondary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 122, 204, 0.3);
}
.services_section:hover .sercives_imgs {
    background-position: bottom !important;
}
.services_section:hover .ourservice_img_heading h6 {
    color: #fff;
}
.services_section:hover p.services_content {
    color: #fff;
}
.ourservice_img_heading {
    align-items: center;
    gap: 10px;
}
.ourservice_img_heading h6 {
    margin: 0;
}

/* Services Media Section */
.services_media_section {
    background-color: #fff;
    border-radius: 190px;
    overflow: hidden;
    margin-bottom: -190px;
    box-shadow: -8px 30px 15px 0px rgba(246, 236, 254, 0.75);
    -webkit-box-shadow: -7px 13px 18px 0px rgba(246, 236, 254, 0.75);
    -moz-box-shadow: -8px 30px 15px 0px rgba(246, 236, 254, 0.75);
    padding-left: 10px;
}
.services_media_section img {
    border-radius: 194px 0px 330px 194px;
    max-width: 100%;
}
.services_media_section p {
    font-size: 30px;
    font-family: 'Outfit', sans-serif;
    color: #494949;
}
h4.service_boutm_heaing {
    font-size: 22px;
    font-family: 'Outfit', sans-serif;
    color: #494949;
}
.get_connected {
    display: flex;
    justify-content: center;
}
.services_media_section a.brownbtn {
    box-shadow: inset 0 0px 0px 2px #f97acc;
    overflow: hidden;
    padding: 10px 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    border-radius: 50px;
    color: #f97acc;
    display: inline-block;
    position: relative;
    text-decoration: none;
    transition: 0.4s;
}
.services_media_section a.brownbtn:hover {
    background: #f97acc;
    color: #fff;
}
span.media_bg_img {
    background-image: url('../img/bg-pattern.png');
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    width: 118px;
    height: 118px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* =============================================
   Portfolio / Gallery Section
   ============================================= */
.gallery_section {
    padding: 70px 0;
    background: #fff;
    background-image: url('../img/bg-gallery.png');
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: contain;
}
.gallery_section .container {
    max-width: 1260px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Gallery Grid */
.wplg-gallery-portfolio {
    margin-top: 50px;
}
.wplg-gallery-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.wplg-gallery-item {
    padding: 15px;
    width: 33.3333%;
    box-sizing: border-box;
    animation: fadeInUp 0.5s ease-out;
}
.wplg-gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.wplg-gallery-thumb {
    position: relative;
}
.wplg-gallery-thumb a {
    display: block;
    position: relative;
}
.wplg-gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}
.wplg-gallery-box:hover .wplg-gallery-img {
    transform: scale(1.05);
}

/* Gallery Overlay */
.wplg-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 44, 145, 0.8) 0%, rgba(249, 122, 204, 0.8) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wplg-gallery-box:hover .wplg-thumb-overlay {
    opacity: 1;
}
.wplg-gallery-icon {
    width: 100px;
    height: 52px;
    background: url('../img/icons/camera.png') no-repeat center;
    background-size: contain;
    display: block;
}

/* Load More Button */
.wplg_gallery_loadmore {
    padding: 12px 40px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: #fff;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.wplg_gallery_loadmore::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary);
    transition: all 0.3s ease;
    z-index: -1;
}
.wplg_gallery_loadmore:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 122, 204, 0.4);
}
.wplg_gallery_loadmore:hover::before {
    width: 100%;
}
.wplg_gallery_loadmore .load-more-count {
    margin-left: 8px;
    background: #f97acc;
    color: white;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}
.wplg_gallery_loadmore:hover .load-more-count {
    background: #fff;
    color: #f97acc;
}

/* Portfolio item for JS compatibility */
.portfolio-item {
    cursor: pointer;
}

/* =============================================
   New Portfolio Grid with Video Support
   ============================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.portfolio-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 44, 145, 0.2);
}
.portfolio-card.portfolio-hidden {
    display: none;
}
.portfolio-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.portfolio-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-thumb {
    transform: scale(1.1);
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 44, 145, 0.7) 0%, rgba(249, 122, 204, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-play-btn,
.portfolio-zoom-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}
.portfolio-play-btn i {
    color: #662c91;
    font-size: 22px;
    margin-left: 4px;
}
.portfolio-zoom-btn i {
    color: #662c91;
    font-size: 20px;
}
.portfolio-card:hover .portfolio-play-btn,
.portfolio-card:hover .portfolio-zoom-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.portfolio-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}
.portfolio-type-badge i {
    font-size: 10px;
}
.portfolio-info {
    padding: 18px 20px;
}
.portfolio-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.portfolio-desc {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Portfolio Modal */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.portfolio-modal.active {
    display: flex;
}
.portfolio-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}
.portfolio-modal-close:hover {
    color: #f97acc;
}
.portfolio-modal-content {
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
}
.portfolio-modal-media {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}
.portfolio-modal-media video,
.portfolio-modal-media img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: none;
}
.portfolio-modal-media video.active,
.portfolio-modal-media img.active {
    display: block;
}
.portfolio-modal-info {
    padding: 20px 0;
    text-align: center;
}
.portfolio-modal-info h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}
.portfolio-modal-info p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}
.portfolio-modal-prev,
.portfolio-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}
.portfolio-modal-prev { left: 20px; }
.portfolio-modal-next { right: 20px; }
.portfolio-modal-prev:hover,
.portfolio-modal-next:hover {
    background: #f97acc;
}

/* Portfolio Modal Video Play Button */
.modal-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    cursor: pointer;
    display: none;
}
.modal-video-play-btn.active {
    display: block;
}
.modal-play-icon {
    width: 80px;
    height: 80px;
    background: rgba(102, 44, 145, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
}
.modal-play-icon:hover {
    background: #f97acc;
    transform: scale(1.1);
}
.modal-play-icon i {
    color: #fff;
    font-size: 28px;
    margin-left: 5px;
}
.modal-play-icon i.fa-pause {
    margin-left: 0;
}
.modal-video-play-btn.playing .modal-play-icon {
    opacity: 0;
    transition: opacity 0.3s;
}
.portfolio-modal-media:hover .modal-video-play-btn.playing .modal-play-icon {
    opacity: 1;
}
/* Portfolio Modal Video Loader */
.modal-video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 14;
}
.modal-video-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: #f97acc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Portfolio Grid Responsive */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .portfolio-media {
        height: 200px;
    }
}
@media (max-width: 767px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .portfolio-media {
        height: 160px;
    }
    .portfolio-info {
        padding: 12px 15px;
    }
    .portfolio-title {
        font-size: 14px;
    }
    .portfolio-desc {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }
    .portfolio-play-btn,
    .portfolio-zoom-btn {
        width: 45px;
        height: 45px;
    }
    .portfolio-play-btn i,
    .portfolio-zoom-btn i {
        font-size: 16px;
    }
    .portfolio-modal-prev,
    .portfolio-modal-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .portfolio-modal-prev { left: 10px; }
    .portfolio-modal-next { right: 10px; }
    /* Modal video play button responsive */
    .modal-play-icon {
        width: 60px;
        height: 60px;
    }
    .modal-play-icon i {
        font-size: 22px;
        margin-left: 4px;
    }
    .modal-video-spinner {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .portfolio-media {
        height: 200px;
    }
}

/* =============================================
   Video Section
   ============================================= */
.video_section {
    padding: 70px 0;
    background: #fff;
}
.video_section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #000;
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}
.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    object-fit: contain;
    background: #000;
    z-index: 1;
}
.video-container video::-webkit-media-controls {
    z-index: 2;
}

/* =============================================
   Contact Section
   ============================================= */
.contact_section_wrapper {
    padding: 0;
    background: #fff;
    margin-bottom: 0;
}
.contact_section_wrapper .container {
    max-width: 2000px;
    padding: 0 95px;
}
.contact_section {
    background-color: #662c91;
    border-radius: 20px;
    overflow: hidden;
}
.contact_img {
    min-height: 100%;
}
.contact_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.contact_frm {
    padding: 40px 95px 40px 65px;
    color: #fff;
}
.contact_section h1 {
    font-size: 60px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    border-left: 3px solid #fff;
    padding-left: 15px;
    margin-bottom: 20px;
}
p.contact_content {
    max-width: 480px;
    color: #fff;
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 25px;
}
.contact_form .form-control {
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
}
.contact_form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(249, 122, 204, 0.3);
    border-color: #f97acc;
}
.contact_form .form-control::placeholder {
    color: #999;
}
.contact_submit {
    background-color: #662c91;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 10px 55px;
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact_submit:hover {
    background-color: #f97acc;
    border-color: #f97acc;
    color: #fff;
}
#formMessage {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

/* =============================================
   Footer Section (Matching old.php design)
   ============================================= */
.footer_section {
    background: #fff;
    background-image: url('../img/bg-footer.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
    padding-top: 80px;
    padding-bottom: 10px;
    margin-top: 50px;
}
.footer_section .container {
    max-width: 2000px;
    padding: 0 95px;
}
.innersectionpadding {
    padding: 50px 0;
}
.footer_section .site-logo img,
.footer_section .custom-logo {
    max-width: 200px;
    margin-bottom: 10px;
}
.footer_section .site-branding .site-title {
    display: none;
}
.footer_content {
    margin-top: 20px;
}
.footer_menu_content {
    color: #494949;
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    max-width: 330px;
}
span.as_media {
    color: #662c91;
    font-weight: 700;
}
.services_heading {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    color: #4e4847;
    font-weight: 400;
}
.footer_section ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_section ul.menu li {
    margin-bottom: 0;
}
.footer_section ul li a {
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 45px;
    color: #494949;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}
.footer_section ul li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}
.footer_section ul li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}
.footer_section ul li a:hover::after {
    width: 100%;
}

/* Footer Address with Icons */
.footer-address {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-address li {
    color: #494949;
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 45px;
}
.footer-address li a {
    color: #494949;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-address li a:hover {
    color: var(--secondary);
    letter-spacing: 0.5px;
}
.footer-address li.contact-number {
    background-image: url('../img/icons/phone.png');
    background-repeat: no-repeat;
    background-position: left 5px;
    background-size: 20px;
    padding-left: 33px;
}
.footer-address li.secode_number {
    background-image: url('../img/icons/phone.png');
    background-repeat: no-repeat;
    background-position: left 5px;
    background-size: 20px;
    padding-left: 33px;
}
.footer-address li.secode_number a:hover {
    color: #f97acc;
}
.footer-address li.mail {
    background-image: url('../img/icons/mail.png');
    background-repeat: no-repeat;
    background-position: left 14px;
    background-size: 20px;
    padding-left: 33px;
}
.footer-address li.address {
    background-image: url('../img/icons/location.png');
    background-repeat: no-repeat;
    background-position: left 6px;
    background-size: 20px;
    padding-left: 33px;
    line-height: 1.6;
}

/* Footer Bottom / Copyright */
.copy-right {
    padding: 25px 0;
}
.copy-right .container {
    max-width: 2000px;
    padding: 0 95px;
}
.copy-right p {
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    color: #4e4847;
    margin: 0;
}
.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin-top: 25px;
}
.crafted-by {
    padding-bottom: 10px;
}
.crafted-by small {
    font-size: 14px;
    color: #6c757d;
}
.crafted-by a {
    transition: all 0.3s ease;
}
.crafted-by a:hover {
    color: #662c91 !important;
    text-decoration: underline !important;
}

/* Social Icons */
.social_icon {
    list-style: none;
}
.social_icon li {
    display: inline-block;
}
.social_icon li a {
    width: 55px;
    height: 55px;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s ease;
}
.social_icon li a:hover {
    animation: rotateIcon 0.7s ease forwards;
}
.social_icon li a.fb {
    background-image: url('../img/icons/facebook.png');
    margin-right: 20px;
}
.social_icon li a.twitter {
    background-image: url('../img/icons/twitter.png');
    margin-right: 20px;
}
.social_icon li a.insta {
    background-image: url('../img/icons/instagram.png');
}

/* Social Icon Rotate Animation */
@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =============================================
   Lightbox
   ============================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--secondary); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}
.lightbox-title {
    color: var(--white);
    margin-top: 15px;
    font-size: 18px;
}

/* =============================================
   Back to Top
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 122, 204, 0.5);
    background: var(--secondary);
}

/* =============================================
   Responsive Styles
   ============================================= */

/* Tablet - 991px and below */
@media (max-width: 991px) {
    /* Navbar Responsive */
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .site-header {
        background-size: cover;
        padding: 8px 0;
    }
    .site-header .container { padding: 0 15px; }
    .site-logo img { max-height: 50px; }
    .header-phone { display: none; }

    /* Fixed header spacing */
    body.header-fixed { padding-top: 70px; }

    /* Slider Responsive */
    .hero-section { min-height: 450px; }
    .hero-carousel { height: 450px; min-height: 450px; }
    .hero-slide { min-height: 450px; height: 450px; }
    .hero-content { min-height: 450px; height: 450px; padding: 40px 20px; }
    .hero-bg { background-position: center center; }
    .hero-subtitle { font-size: 16px; letter-spacing: 1px; }
    .hero-title { font-size: 36px; }
    .hero-text { font-size: 16px; max-width: 100%; }
    .hero-btn { padding: 12px 30px; font-size: 16px; }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    .hero-carousel .carousel-control-prev { left: 10px; }
    .hero-carousel .carousel-control-next { right: 10px; }
    .hero-carousel .carousel-indicators { bottom: 15px; }
    .hero-carousel .carousel-indicators button { width: 10px; height: 10px; }

    /* About Section Responsive - Tablet */
    .about_section { padding: 50px 0; margin-top: 30px; }
    .about_section .container { padding: 15px 30px; }
    .abt_content_section {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .aboutimg {
        flex: 0 0 auto;
        max-width: 350px;
        margin: 0 auto;
        margin-right: 0;
    }
    .about-text-content {
        padding-left: 0;
    }
    .aboutimg::before,
    .aboutimg::after { display: none; }
    .aboutimg h1 {
        width: 280px;
        font-size: 22px;
        padding: 12px 12px 12px 50px;
        right: 0;
        bottom: -5px;
    }
    .aboutimg h1 .experience_years { font-size: 38px; }
    .about-text-content {
        text-align: center;
        max-width: 700px;
    }
    .abt-inner-heading {
        font-size: 40px;
        display: block;
        text-align: center;
        margin-bottom: 10px;
        padding-left: 0;
    }
    .abt-inner-heading::before {
        display: none;
    }
    .abt-sub-heading {
        font-size: 26px;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    .abt-content {
        text-align: center;
    }
    .abt-content p {
        font-size: 16px;
        line-height: 1.8;
        text-align: center;
    }
    .about-list {
        text-align: left;
        display: inline-block;
        margin: 20px auto;
    }
    .about-list li { font-size: 16px; margin-bottom: 10px; }
    .abt_btn {
        text-align: center;
        margin-top: 20px;
    }
    .brownbtn { font-size: 18px; padding: 12px 35px; }

    /* Services Section Responsive - Tablet */
    .ourservice_section {
        background-image: none;
        padding: 50px 0;
        padding-bottom: 120px;
    }
    .ourservice {
        padding: 45px;
    }
    .ourservice_section h6 {
        font-size: 32px;
    }
    p.ourservice_content {
        max-width: 100%;
        text-align: center;
    }
    .services_types {
        margin-top: 30px !important;
    }
    .services_section {
        margin-bottom: 20px;
    }
    p.services_content {
        font-size: 18px;
        line-height: 30px;
    }
    .services_media_section {
        border-radius: 30px;
        margin-bottom: -80px;
        padding: 30px;
        text-align: center;
    }
    .services_media_section img {
        border-radius: 30px;
        max-width: 300px;
        margin: 0 auto 20px;
        display: block;
    }
    .services_media_section p {
        font-size: 23px;
    }
    span.media_bg_img {
        display: none;
    }

    /* Gallery Section Responsive - Tablet */
    .gallery_section {
        background-image: none;
        padding: 50px 0;
    }
    .gallery_section .abt-sub-heading {
        font-size: 32px;
    }
    .wplg-gallery-item {
        width: 50%;
    }
    .wplg-gallery-img {
        height: 220px;
    }
    .wplg_gallery_loadmore {
        font-size: 18px;
        padding: 10px 35px;
    }

    /* Video Section Responsive - Tablet */
    .video_section {
        padding: 50px 0;
    }
    .video_section .container {
        padding: 0 30px;
    }
    .video-wrapper {
        border-radius: 15px;
    }
    .video-container iframe,
    .video-container video {
        border-radius: 15px;
    }

    /* Contact Section Responsive - Tablet */
    .contact_section_wrapper .container {
        padding: 0 40px;
    }
    .contact_section h1 {
        font-size: 50px;
    }
    .contact_frm {
        padding: 40px 58px 40px 40px;
    }
    p.contact_content {
        font-size: 18px;
    }
    .contact_submit {
        font-size: 18px;
        padding: 10px 45px;
    }

    /* Footer Section Responsive - Tablet */
    .footer_section {
        padding-top: 60px;
        margin-top: 40px;
        background-size: 100% auto;
    }
    .footer_section .container {
        padding: 0 40px;
    }
    .innersectionpadding {
        padding: 40px 0;
    }
    .services_heading {
        font-size: 26px;
    }
    .footer_menu_content {
        font-size: 18px;
    }
    .footer_section ul li a {
        font-size: 18px;
        line-height: 42px;
    }
    .footer-address li {
        font-size: 18px;
        line-height: 42px;
    }
    .copy-right .container {
        padding: 0 40px;
    }
    .copy-right p {
        font-size: 18px;
    }
    .social_icon li a {
        width: 50px;
        height: 50px;
    }
}

/* Mobile - 767px and below */
@media (max-width: 767px) {
    /* Navbar Mobile */
    .site-logo img { max-height: 45px; }
    body.header-fixed { padding-top: 60px; }

    /* Slider Mobile */
    .hero-section { min-height: 400px; }
    .hero-carousel { height: 400px; min-height: 400px; }
    .hero-slide { min-height: 400px; height: 400px; }
    .hero-content { min-height: 400px; height: 400px; padding: 30px 15px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 10px; }
    .hero-title { font-size: 28px; margin-bottom: 15px; }
    .hero-text { font-size: 15px; margin-bottom: 20px; line-height: 1.6; }
    .hero-btn { padding: 10px 25px; font-size: 15px; }

    .section-heading { font-size: 28px; }

    /* About Section Mobile */
    .about_section { padding: 40px 0; margin-top: 20px; }
    .about_section .container { padding: 15px 20px; }
    .abt_content_section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .aboutimg {
        flex: 0 0 auto;
        max-width: 300px;
        padding: 0;
        margin: 0 auto;
    }
    .aboutimg img { width: 100%; max-width: 300px; display: block; margin: 0 auto; }
    .aboutimg h1 {
        width: 200px;
        font-size: 16px;
        padding: 10px 10px 10px 45px;
        bottom: -5px;
        right: 50%;
        transform: translateX(50%);
        border-top-left-radius: 20px;
    }
    .aboutimg h1 .experience_years { font-size: 32px; }
    .about-text-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    .abt-inner-heading {
        font-size: 28px;
        padding-left: 0;
        text-align: center;
        display: block;
    }
    .abt-inner-heading::before { display: none; }
    .abt-sub-heading {
        font-size: 20px;
        line-height: 1.4;
        text-align: center;
    }
    .abt-content {
        text-align: center;
        padding: 0 10px;
    }
    .abt-content p {
        font-size: 15px;
        line-height: 1.7;
        text-align: center;
    }
    .about-list {
        max-width: 100%;
        padding: 0;
        display: inline-block;
        text-align: left;
        margin: 20px auto;
    }
    .about-list li { font-size: 15px; background-size: 12px; padding-left: 18px; margin-bottom: 8px; }
    .abt_btn {
        justify-content: center !important;
        width: 100%;
        text-align: center;
    }
    .brownbtn { font-size: 16px; padding: 10px 30px; }

    /* Services Section Mobile */
    .ourservice_section {
        padding: 40px 0;
        padding-bottom: 100px;
    }
    .ourservice {
        padding: 30px 20px;
    }
    .ourservice_section .col-lg-4 {
        text-align: center;
    }
    .ourservice_section h6 {
        font-size: 26px;
        padding-left: 15px;
    }
    p.ourservice_content {
        font-size: 16px;
        margin: 0 auto;
    }
    p.services_content {
        font-size: 16px;
        line-height: 26px;
    }
    .services_media_section {
        margin-bottom: -60px;
        padding: 20px;
    }
    .services_media_section img {
        max-width: 250px;
    }
    .services_media_section p {
        font-size: 18px;
    }
    h4.service_boutm_heaing {
        font-size: 18px;
    }

    /* Gallery Section Mobile */
    .gallery_section {
        padding: 40px 0;
    }
    .gallery_section .abt-sub-heading {
        font-size: 24px;
    }
    .wplg-gallery-portfolio {
        margin-top: 30px;
    }
    .wplg-gallery-item {
        width: 100%;
    }
    .wplg-gallery-img {
        height: 200px;
    }
    .wplg-gallery-icon {
        width: 70px;
        height: 40px;
    }
    .wplg_gallery_loadmore {
        font-size: 16px;
        padding: 10px 30px;
    }
    .wplg_gallery_loadmore .load-more-count {
        font-size: 12px;
        padding: 2px 8px;
    }

    /* Video Section Mobile */
    .video_section {
        padding: 40px 0;
    }
    .video_section .container {
        padding: 0 15px;
    }
    .video_section .abt-inner-heading {
        font-size: 28px;
        text-align: center;
    }
    .video_section .abt-sub-heading {
        font-size: 22px;
        text-align: center;
    }
    .video-wrapper {
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    }
    .video-container iframe,
    .video-container video {
        border-radius: 12px;
    }

    /* Contact Section Mobile */
    .contact_section_wrapper .container {
        padding: 0 20px;
    }
    .contact_section .row {
        flex-direction: column-reverse;
    }
    .contact_img {
        min-height: 250px;
    }
    .contact_img img {
        border-radius: 0 0 20px 20px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 20px;
    }
    .contact_frm {
        padding: 30px 25px;
        border-radius: 20px 20px 0 0;
    }
    .contact_section h1 {
        font-size: 36px;
    }
    p.contact_content {
        font-size: 16px;
        max-width: 100%;
    }
    .contact_form .form-control {
        padding: 10px 12px;
        font-size: 15px;
    }
    .contact_submit {
        font-size: 16px;
        padding: 10px 40px;
    }

    /* Footer Section Mobile - 767px */
    .footer_section {
        padding-top: 40px;
        margin-top: 30px;
        background-size: cover;
        background-position: center bottom;
    }
    .footer_section .container {
        padding: 0 15px;
    }
    .innersectionpadding {
        padding: 30px 0 20px;
    }

    /* Footer Grid - 2 columns on mobile */
    .footer_section .row {
        display: flex;
        flex-wrap: wrap;
    }
    .footer_section .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    /* Logo Column - Full width */
    .footer_section .col-lg-3:first-child {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 25px;
    }
    .footer_section .site-logo,
    .footer_section .custom-logo-link {
        display: block;
        text-align: center;
    }
    .footer_section .custom-logo {
        max-width: 150px;
        margin: 0 auto 15px;
    }
    .footer_content {
        text-align: center;
    }
    .footer_menu_content {
        font-size: 15px;
        max-width: 320px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Menu Columns */
    .services_heading {
        font-size: 20px;
        margin-bottom: 12px !important;
        color: #662c91;
        border-bottom: 2px solid #f97acc;
        padding-bottom: 8px;
        display: inline-block;
    }
    .footer_toggle_items {
        text-align: center;
    }
    .footer_section ul.menu {
        text-align: center;
        padding: 0;
    }
    .footer_section ul li a {
        font-size: 15px;
        line-height: 34px;
    }

    /* Contact Column */
    .footer_section .contact_link {
        text-align: center;
    }
    .footer-address {
        text-align: left;
        display: inline-block;
        padding: 0;
    }
    .footer-address li {
        font-size: 14px;
        line-height: 32px;
        background-size: 16px;
        padding-left: 26px;
    }
    .footer-address li.address {
        line-height: 1.5;
        margin-top: 5px;
    }

    /* Copyright Section */
    .copy-right {
        padding: 20px 0;
    }
    .copy-right .container {
        padding: 0 15px;
    }
    .copy-right .row {
        flex-direction: column-reverse;
    }
    .copy-right p {
        font-size: 13px;
        text-align: center;
        margin: 0;
    }
    .social_icon {
        justify-content: center;
        margin-bottom: 15px;
    }
    .social_icon li a {
        width: 42px;
        height: 42px;
    }
    .social_icon li a.fb,
    .social_icon li a.twitter {
        margin-right: 12px;
    }
    .footer-separator {
        margin-top: 15px;
    }
    .crafted-by small {
        font-size: 12px;
    }

    .lightbox-prev,
    .lightbox-next { width: 40px; height: 40px; font-size: 18px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* Small Mobile - 575px and below */
@media (max-width: 575px) {
    .site-logo img { max-height: 40px; }
    body.header-fixed { padding-top: 55px; }

    /* Slider Small Mobile */
    .hero-section { min-height: 350px; }
    .hero-carousel { height: 350px; min-height: 350px; }
    .hero-slide { min-height: 350px; height: 350px; }
    .hero-content { min-height: 350px; height: 350px; padding: 25px 15px; }
    .hero-subtitle { font-size: 12px; }
    .hero-title { font-size: 22px; }

    .experience-badge { position: relative; bottom: auto; right: auto; margin-top: 20px; display: inline-block; }

    /* About Section Small Mobile */
    .about_section { padding: 30px 0; margin-top: 15px; }
    .about_section .container { padding: 15px; }
    .abt_content_section {
        gap: 25px;
    }
    .aboutimg {
        max-width: 250px;
    }
    .aboutimg img { max-width: 250px; }
    .aboutimg h1 {
        width: 180px;
        font-size: 14px;
        padding: 8px 8px 8px 40px;
    }
    .aboutimg h1 .experience_years { font-size: 28px; }
    .about-text-content {
        text-align: center;
        width: 100%;
    }
    .abt-inner-heading { font-size: 24px; }
    .abt-sub-heading { font-size: 18px; }
    .abt-content p { font-size: 14px; }
    .about-list li { font-size: 14px; background-size: 10px; padding-left: 16px; }
    .brownbtn { font-size: 15px; padding: 10px 25px; }

    /* Services Section Small Mobile */
    .ourservice_section {
        padding: 30px 0;
        padding-bottom: 80px;
    }
    .ourservice {
        padding: 25px 15px;
        border-radius: 20px;
    }
    .ourservice_section h6 {
        font-size: 22px;
        padding-left: 10px;
    }
    p.ourservice_content {
        font-size: 15px;
    }
    .ourservice_section .sercives_imgs {
        width: 50px;
        height: 50px;
    }
    p.services_content {
        font-size: 15px;
        line-height: 24px;
    }
    .services_section {
        padding: 15px !important;
        border-radius: 20px;
    }
    .services_media_section {
        border-radius: 20px;
        margin-bottom: -50px;
        padding: 15px;
    }
    .services_media_section img {
        max-width: 200px;
        border-radius: 20px;
    }
    .services_media_section p {
        font-size: 16px;
    }
    h4.service_boutm_heaing {
        font-size: 16px;
    }
    .services_media_section a.brownbtn {
        font-size: 16px;
        padding: 8px 25px;
    }

    /* Gallery Section Small Mobile */
    .gallery_section {
        padding: 30px 0;
    }
    .gallery_section .abt-sub-heading {
        font-size: 20px;
    }
    .wplg-gallery-portfolio {
        margin-top: 20px;
    }
    .wplg-gallery-row {
        margin: -10px;
    }
    .wplg-gallery-item {
        padding: 10px;
    }
    .wplg-gallery-img {
        height: 180px;
    }
    .wplg-gallery-box {
        border-radius: 15px;
    }
    .wplg-thumb-overlay {
        border-radius: 15px;
    }
    .wplg_gallery_loadmore {
        font-size: 14px;
        padding: 8px 25px;
    }

    /* Video Section Small Mobile */
    .video_section {
        padding: 30px 0;
    }
    .video_section .container {
        padding: 0 12px;
    }
    .video_section .abt-inner-heading {
        font-size: 24px;
    }
    .video_section .abt-sub-heading {
        font-size: 18px;
        margin-bottom: 20px !important;
    }
    .video-wrapper {
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .video-container iframe,
    .video-container video {
        border-radius: 10px;
    }

    /* Contact Section Small Mobile */
    .contact_section_wrapper .container {
        padding: 0 15px;
    }
    .contact_frm {
        padding: 25px 20px;
    }
    .contact_section h1 {
        font-size: 28px;
        padding-left: 12px;
    }
    p.contact_content {
        font-size: 15px;
    }
    .contact_form .form-control {
        padding: 10px;
        font-size: 14px;
    }
    .contact_submit {
        font-size: 15px;
        padding: 10px 35px;
    }
    .contact_img {
        min-height: 200px;
    }

    /* Footer Section Small Mobile - 575px */
    .footer_section {
        padding-top: 30px;
        margin-top: 25px;
        background-size: cover;
        background-position: center bottom;
    }
    .footer_section .container {
        padding: 0 12px;
    }
    .innersectionpadding {
        padding: 20px 0 15px;
    }

    /* All columns single column on small mobile */
    .footer_section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
        padding: 0 8px;
        text-align: center;
    }

    /* Logo section */
    .footer_section .col-lg-3:first-child {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .footer_section .custom-logo {
        max-width: 120px;
        margin: 0 auto 10px;
    }
    .footer_content {
        margin-top: 10px;
    }
    .footer_menu_content {
        font-size: 13px;
        margin: 0 auto;
        line-height: 1.5;
        max-width: 280px;
    }

    /* Services, Links, Contact - side by side */
    .footer_section .sevice_menu,
    .footer_section .link_menus {
        flex: 0 0 50%;
        max-width: 50%;
        border-bottom: none;
        padding-bottom: 0;
    }
    .footer_section .contact_link {
        flex: 0 0 100%;
        max-width: 100%;
        border-top: 1px solid rgba(0,0,0,0.1);
        padding-top: 20px;
        margin-top: 5px;
    }

    .services_heading {
        font-size: 18px;
        margin-bottom: 8px !important;
        padding-bottom: 6px;
    }
    .footer_section ul li a {
        font-size: 13px;
        line-height: 30px;
    }
    .footer-address li {
        font-size: 13px;
        line-height: 28px;
        background-size: 14px;
        padding-left: 24px;
    }
    .footer-address li.address {
        line-height: 1.4;
    }

    /* Copyright */
    .copy-right {
        padding: 15px 0;
    }
    .copy-right .container {
        padding: 0 12px;
    }
    .copy-right p {
        font-size: 12px;
        line-height: 1.4;
    }
    .social_icon {
        margin-bottom: 12px;
    }
    .social_icon li a {
        width: 38px;
        height: 38px;
    }
    .social_icon li a.fb,
    .social_icon li a.twitter {
        margin-right: 10px;
    }
    .footer-separator {
        margin-top: 15px;
    }
    .crafted-by small {
        font-size: 11px;
    }

    .back-to-top { width: 45px; height: 45px; bottom: 20px; right: 20px; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
