/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FFD230;
    --black: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}


/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.whatsapp-btn, .call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--primary);
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.floating-cta a {
    text-decoration: none;   /* remove underline */
}

.floating-cta i {
    line-height: 1;          /* icons ko perfectly center align karega */
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 0 5%;
}

/* Container */
.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-left: 12px;
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.logo-link:hover .logo-text {
    opacity: 1;
    transform: translateX(0);
}

/* Hover */
.logo-link:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Nav menu (desktop) */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    position: relative;
}

.nav-link {
    color: #2D3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D69E2E, #B7791F);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
}

.nav-link:hover .nav-text,
.nav-link.active .nav-text {
    color: #B7791F;
    transform: translateY(-2px);
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    width: 100%;
    opacity: 1;
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #D69E2E 0%, #B7791F 100%);
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(214, 158, 46, 0.25);
    transition: all 0.3s ease;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 158, 46, 0.35);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(214, 158, 46, 0.1);
}

.bar {
    width: 30px;
    height: 3px;
    background: #2D3748;
    margin: 3.5px 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform-origin: center;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #B7791F;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #B7791F;
}

/* Mobile Menu Styling */
@media (max-width: 968px) {
    .navbar {
        height: 80px;
        padding: 0 20px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, #F7FAFC 0%, #ffffff 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.35s ease-in-out;
        gap: 2.8rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 15px 25px;
        opacity: 0;
        transform: translateX(40px);
        transition: all 0.35s ease;
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation for menu items */
    .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.25s; }

    .nav-indicator {
        display: none;
    }

    /* Ensure hamburger is visible */
    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 80px;
    }

    .logo-text {
        display: none;
    }


    /* Mobile CTA Button */
    .mobile-cta {
        display: block;
        margin-top: 30px;
        text-align: center;
    }

    .mobile-cta .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 998;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Subtle animation for navbar on scroll */
.navbar.scrolled {
    height: 75px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.navbar.scrolled .logo-img {
    height: 85px;
}

.navbar.scrolled .logo-text {
    opacity: 1;
    transform: translateX(0);
}

/* Animation for navbar background on scroll */
@keyframes navScroll {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.scrolled {
    animation: navScroll 0.4s ease;
}

/* Add mobile CTA to menu */
@media (max-width: 968px) {
    .nav-menu::after {
        content: '';
        display: block;
        width: 200px;
        height: 1px;
        background: rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }
    
    .mobile-cta {
        display: block !important;
    }
}

/* Hero Section - Self-contained styles */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}

/* Video Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-content-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #F7FAFC;
}

#hero-typed-text {
    color: #FFD230;
    font-weight: 700;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-line {
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.hero-cta-container {
    display: flex;
    justify-content: center;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    background: #FFD230;
    color: #000000;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 210, 48, 0.3);
}

.hero-cta-button:hover {
    background: #ffc400;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 210, 48, 0.4);
}

.hero-button-icon {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .hero-button-icon {
    transform: translateX(5px);
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    animation: hero-float 12s ease-in-out infinite;
}

.floating-element.camera-icon { 
    top: 20%; 
    left: 10%; 
    animation-delay: 0s; 
    font-size: 2.5rem;
    color: rgba(255, 210, 48, 0.6);
}

.floating-element.film-strip { 
    top: 60%; 
    right: 10%; 
    animation-delay: 2s; 
    font-size: 2.5rem;
    color: rgba(255, 210, 48, 0.6);
}

.floating-element.circle-shape { 
    width: 60px; 
    height: 60px; 
    background: rgba(255, 210, 48, 0.2); 
    border-radius: 50%; 
    top: 40%; 
    left: 30%; 
    animation-delay: 1s; 
}

.floating-element.triangle-shape { 
    width: 70px; 
    height: 70px; 
    background: rgba(255, 210, 48, 0.15); 
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%); 
    bottom: 20%; 
    left: 50%; 
    animation-delay: 3s; 
}

.floating-element.bokeh { 
    width: 20px; 
    height: 20px; 
    background: rgba(255, 255, 255, 0.4); 
    border-radius: 50%; 
    top: 50%; 
    right: 20%; 
    animation: hero-float 8s infinite; 
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #FFFFFF;
}

.hero-scroll-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-line {
    width: 2px;
    height: 40px;
    background: #FFD230;
    margin: 0 auto;
    animation: hero-scrollLine 2s infinite;
}

.hero-scroll-indicator {
    display: none !important;
}


/* Animations */
@keyframes hero-float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-25px) rotate(10deg); opacity: 0.9; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
}

@keyframes hero-scrollLine {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .floating-element {
        display: none;
    }
    
    .floating-element.camera-icon,
    .floating-element.film-strip {
        display: block;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}
/* Project Showcase Section */
        /* Project Showcase Section */
.project-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
    position: relative;
    overflow: hidden;
}

.project-showcase::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,210,48,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.project-showcase::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,170,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.project-showcase .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #111;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #FFA000;
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 25px auto 0;
            font-weight: 400;
            font-style: italic;
        }

        .project-intro {
            font-size: 1.1rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 70px;
            line-height: 1.8;
            text-align: center;
            font-weight: 400;
        }

        /* Project Grid */
        .project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop pe 4 ek line me */
  gap: 20px;
  margin-bottom: 80px;
}

        /* Project Cards */
        .project-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            background: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Project Media */
        .project-media {
            position: relative;
            overflow: hidden;
            border-radius: 12px 12px 0 0;
            background: #f8f8f8;
            min-height: 250px;
        }

        .video-container {
            position: relative;
            padding-top: 75%; /* 4:3 Aspect Ratio for photography style */
            background: #f0f0f0;
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .video-container video {
            transform: scale(1.05);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.01) 40%, rgba(0,0,0,0.2) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .video-overlay {
            opacity: 1;
        }

        .play-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: all 0.3s ease;
            z-index: 3;
            cursor: pointer;
        }

        .play-indicator i {
            font-size: 1.2rem;
            color: #FFA000;
            margin-left: 4px;
        }

        .project-media:hover .play-indicator {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .media-type-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fff;
            color: #000;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
            z-index: 3;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Project Content */
        .project-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .project-category {
            display: inline-block;
            color: #FFA000;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .project-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #111;
            line-height: 1.3;
            font-family: 'Playfair Display', serif;
        }

        .project-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #555;
            flex-grow: 1;
        }

        /* Project Link */
        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #000;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 5px 0;
            font-size: 0.95rem;
        }

        .link-arrow {
            width: 30px;
            height: 30px;
            background: #f5f5f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .link-arrow i {
            color: #000;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .project-link:hover {
            color: #FFA000;
        }

        .project-link:hover .link-arrow {
            background: #FFA000;
            transform: translateX(5px);
        }

        .project-link:hover .link-arrow i {
            color: #fff;
            transform: translateX(3px);
        }



        /* Responsive Design */
        @media (max-width: 1024px) {
           .project-grid {
          grid-template-columns: repeat(2, 1fr);
             gap: 25px;
              }
            }

            @media (max-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 60px;
  }
}

        @media (max-width: 768px) {
            .project-showcase {
                padding: 70px 0;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .project-intro {
                margin-bottom: 50px;
            }
            
            .project-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto 60px;
            }
            
            .project-content h3 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
            }
            
            .project-content {
                padding: 20px;
            }
            
            .project-content h3 {
                font-size: 1.3rem;
            }
            
            .project-description {
                font-size: 0.95rem;
            }
            
            .media-type-badge {
                top: 15px;
                right: 15px;
                padding: 6px 12px;
                font-size: 0.75rem;
            }
            
            .play-indicator {
                width: 50px;
                height: 50px;
            }
            
            .project-cta p {
                font-size: 1.1rem;
            }
            
            .cta-button {
                padding: 14px 30px;
            }
        }

        /* Video error message */
        .video-error {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #888;
            width: 80%;
        }
        
        .video-error i {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #ccc;
        }
        
        /* Loading animation */
        .video-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 160, 0, 0.3);
            border-radius: 50%;
            border-top-color: #FFA000;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,210,48,0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,170,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About Header */
.about-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #FFD230 0%, #FFA000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FFD230, #FFA000);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About Text */
.about-text {
  padding-right: 20px;
}

.intro-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
}

.intro {
  font-size: 1.3rem !important;
  font-weight: 600;
  color: #333 !important;
}

.brand-highlight {
  color: #FFA000;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.brand-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 210, 48, 0.3);
  z-index: -1;
}

.skill-highlight {
  background: linear-gradient(120deg, rgba(255,210,48,0.2) 0%, rgba(255,210,48,0) 100%);
  padding: 0 6px;
  border-radius: 4px;
  font-weight: 600;
  color: #333;
}

/* Belief Section */
.belief {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #fffdf5 0%, #fff8e1 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFD230;
  position: relative;
  overflow: hidden;
}

.belief::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 210, 48, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.belief-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 210, 48, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.belief-icon i {
  font-size: 1.2rem;
  color: #FFA000;
}

.belief h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  position: relative;
  z-index: 2;
}

.belief p {
  font-size: 1.05rem;
  color: #444;
  font-style: italic;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

/* About Features */
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-hover-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 48, 0.05), transparent);
  transition: left 0.7s ease;
  z-index: 1;
}

.feature-card:hover .feature-hover-bg {
  left: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 210, 48, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.feature-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 2px solid rgba(255, 210, 48, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}

.feature-icon i {
  font-size: 1.8rem;
  color: #FFD230;
}

.feature-content {
  position: relative;
  z-index: 2;
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.feature-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-text {
    padding-right: 0;
    text-align: center;
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .about-header {
    margin-bottom: 50px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .intro {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .belief {
    padding: 25px 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
}

/* Mobile Fix for Feature Icons */
@media (max-width: 900px) {
  .feature-card {
    flex-direction: column; /* stack icon above content */
    align-items: center;    /* center horizontally */
    text-align: center;
  }

  .feature-icon {
    margin-right: 0;
    margin-bottom: 15px;   /* spacing between icon and text */
  }

  .feature-content h4,
  .feature-content p {
    text-align: center;    /* center text */
  }
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,210,48,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,170,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.team-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D69E2E, #B7791F);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Team Member Card */
.team-member {
    perspective: 1000px;
}

.member-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Member Image */
.member-image {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(214, 158, 46, 0.9), rgba(183, 121, 31, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #B7791F;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.member-card:hover .social-links a {
    transform: translateY(0);
}

.social-links a:nth-child(1) { transition-delay: 0.1s; }
.social-links a:nth-child(2) { transition-delay: 0.2s; }
.social-links a:nth-child(3) { transition-delay: 0.3s; }

.social-links a:hover {
    background: #2D3748;
    color: #fff;
    transform: translateY(-5px);
}

.member-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #D69E2E 0%, #B7791F 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(214, 158, 46, 0.3);
}

/* Member Info */
.member-info {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2D3748;
}

.role {
    color: #D69E2E;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Skills */
.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    background: rgba(214, 158, 46, 0.1);
    color: #B7791F;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #D69E2E;
    color: white;
    transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        gap: 30px;
    }
    
    .member-image {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
    }
    
    .member-image {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .member-image {
        height: 320px;
    }
    
    .member-info {
        padding: 25px 20px;
    }
    
    .member-info h3 {
        font-size: 1.4rem;
    }
    
    .team-cta p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 14px 30px;
    }
}

/* Work Section */
.work {
  padding: 100px 0;
  background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}

.work::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,210,48,0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.work::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,170,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.work .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #FFD230 0%, #FFA000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FFD230, #FFA000);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

.work-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 70px;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
}

/* Work Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

/* Work Card */
.work-card {
  height: 320px;
  perspective: 1000px;
  border-radius: 16px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.work-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-front {
  background: #fff;
  text-align: center;
}

.card-back {
  background: linear-gradient(135deg, #FFD230 0%, #FFA000 100%);
  color: white;
  transform: rotateY(180deg);
  text-align: center;
  justify-content: space-between;
}

/* Icon Styling */
.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 210, 48, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 210, 48, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.icon-wrapper i {
  font-size: 2.2rem;
  color: #FFD230;
  z-index: 2;
}

/* Card Text */
.work-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.card-front p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-hover-content {
  display: flex;
  align-items: center;
  color: #FFA000;
  font-weight: 600;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.work-card:hover .card-hover-content {
  opacity: 1;
  transform: translateY(0);
}

.card-hover-content i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.work-card:hover .card-hover-content i {
  transform: translateX(5px);
}

/* Back Card Styling */
.card-back h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.card-back ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: center;
}

.card-back li {
  padding: 8px 0;
  font-weight: 500;
  position: relative;
}

.card-back li::before {
  content: '•';
  color: rgba(255, 255, 255, 0.8);
  margin-right: 8px;
}

/* Work Link */
.work-link {
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.work-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.work-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.work-link:hover i {
  transform: translateX(5px);
}


/* Responsive Design */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .work {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .work-intro {
    margin-bottom: 50px;
  }
  
  .work-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .work-card {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .work-card {
    height: 280px;
  }
  
  .card-front, .card-back {
    padding: 25px 20px;
  }
  
  .icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .icon-wrapper i {
    font-size: 1.8rem;
  }
  
  .work-card h3 {
    font-size: 1.3rem;
  }
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,210,48,0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,170,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #D69E2E, #B7791F);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

/* Tabs */
.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
  padding: 0 20px;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #2D3748;
  border: 2px solid #E2E8F0;
  padding: 16px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-button:hover {
  border-color: #D69E2E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(214, 158, 46, 0.15);
}

.tab-button.active {
  background: linear-gradient(135deg, #D69E2E 0%, #B7791F 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(214, 158, 46, 0.3);
}

.tab-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.tab-button.active i {
  transform: scale(1.2);
}

/* Tab Content */
.tab-content {
  min-height: 400px;
}

.tab-pane {
  display: none;
  animation: fadeInUp 0.6s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #D69E2E, #B7791F);
  transform: translateY(-5px);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(214, 158, 46, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  transition: all 0.4s ease;
}

.service-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(214, 158, 46, 0.2);
  animation: pulse 2s infinite;
}


@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}

.service-icon i {
  font-size: 2rem;
  color: #D69E2E;
  z-index: 2;
}

.service-card:hover .service-icon {
  background: rgba(214, 158, 46, 0.2);
  transform: scale(1.1);
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2D3748;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .tab-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .tab-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .service-card {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .service-icon i {
    font-size: 1.8rem;
  }
  
  .service-card h4 {
    font-size: 1.2rem;
  }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,210,48,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,170,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.stats .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Heading */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Stat Item */
.stat-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #D69E2E, #B7791F);
    transform: translateY(-5px);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: translateY(0);
}

.stat-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Stat Icon */
.stat-icon {
    width: 65px;
    height: 65px;
    background: rgba(214, 158, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.4s ease;
}

.stat-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(214, 158, 46, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.stat-icon i {
    font-size: 1.8rem;
    color: #D69E2E;
    z-index: 2;
}

.stat-item:hover .stat-icon {
    background: rgba(214, 158, 46, 0.2);
    transform: scale(1.1) rotate(5deg);
}

/* Stat Number + Plus */
.stat-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #D69E2E 0%, #B7791F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.stat-item .plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D69E2E;
    margin-left: 4px;
    vertical-align: super;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

/* Stat Label */
.stat-label {
    color: #4A5568;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #B7791F;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stat-item {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon i {
        font-size: 1.2rem;
    }
}


/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--black);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Mobile view - center align */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}


.footer-legal a:hover {
    color: var(--primary);
}

/* Remove underline from floating CTA buttons */
.floating-cta a {
    text-decoration: none;
}

/* Remove underline from footer social icons */
footer a {
    text-decoration: none;
}

/* Extra alignment fix for all icons */
.floating-cta i,
footer i {
    line-height: 1;
    vertical-align: middle;
}

/* ========================
   ABOUT PAGE STYLES
   ======================== */


/* Our Story */
.our-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
    position: relative;
    overflow: hidden;
}

.our-story::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,210,48,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.our-story::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,170,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.our-story .container {
    position: relative;
    z-index: 2;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.story-text p {
    margin-bottom: 1.5rem;
}

/* Our Values */
.our-values {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #D69E2E, #B7791F);
    transform: translateY(-5px);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(214, 158, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.4s ease;
}

.value-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(214, 158, 46, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.value-icon i {
    font-size: 2.2rem;
    color: #D69E2E;
    z-index: 2;
}

.value-card:hover .value-icon {
    background: rgba(214, 158, 46, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2D3748;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Our Team */
.our-team {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.member-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(214, 158, 46, 0.9), rgba(183, 121, 31, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #B7791F;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.member-card:hover .social-links a {
    transform: translateY(0);
}

.social-links a:nth-child(1) { transition-delay: 0.1s; }
.social-links a:nth-child(2) { transition-delay: 0.2s; }
.social-links a:nth-child(3) { transition-delay: 0.3s; }

.social-links a:hover {
    background: #2D3748;
    color: #fff;
    transform: translateY(-5px);
}

.member-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #D69E2E 0%, #B7791F 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(214, 158, 46, 0.3);
}

.member-info {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2D3748;
}

.role {
    color: #D69E2E;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    background: rgba(214, 158, 46, 0.1);
    color: #B7791F;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #D69E2E;
    color: white;
    transform: translateY(-2px);
}

/* Why Choose Us */
.why-us {
    padding: 80px 0;
    background: #FFFFFF;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    display: flex;
    align-items: center;  /* icon aur text vertical center */
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Icon styling */
.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D69E2E, #f7d483);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.3);
}

.why-icon i {
    font-size: 1.6rem;
    color: #fff; /* अब white icon clearly दिखेगा */
}

/* Content */
.why-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2D3748;
}

.why-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Mobile responsive fix */
@media (max-width: 480px) {
    .why-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .why-icon {
        margin: 0 0 12px 0;
    }
}



/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D69E2E, #B7791F);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid,
    .team-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .about-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 6rem 1rem 3rem;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .values-grid,
    .team-grid,
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .member-image {
        height: 320px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .value-card,
    .member-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .value-icon i {
        font-size: 2rem;
    }
    
    .member-image {
        height: 280px;
    }
    
    .why-card {
        flex-direction: column;
        text-align: center;
    }
    
    .why-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}


/* ========================
   WORK PAGE STYLES
   ======================== */

/* Portfolio Section */


.portfolio {
    padding: 100px 0;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    color: #555;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    color: #2D3748;
    border: 2px solid #D69E2E;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #D69E2E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(214, 158, 46, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.portfolio-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-poster {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.portfolio-content p {
    font-size: 1rem;
    margin-bottom: 12px;
}

.video-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: #D69E2E;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-btn:hover {
    background: #B7791F;
}

/* Modal */
#videoModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left:0; top:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

#videoModal video {
    max-width: 80%;
    max-height: 80%;
    border-radius: 15px;
}

#videoModal .close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}


/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
  text-align: center;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;   /* यही main fix है – बाहर का हिस्सा कट जाएगा */
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial {
  flex: 0 0 100%;         /* हर slide पूरे width लेगा */
  box-sizing: border-box;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  /* box-shadow हटाया गया */
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-content p {
  font-style: italic;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial-author h4 {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.2rem;
}

.testimonial-author p {
  color: #D69E2E;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Dots */
.testimonial-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonial-dots button {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #ddd;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dots button.active {
  background: #D69E2E;
  transform: scale(1.2);
}



/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D69E2E, #B7791F);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-grid,
    .stats-grid,
    .services-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .work-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .work-hero {
        min-height: 50vh;
        padding: 6rem 1rem 3rem;
    }
    
    .work-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .work-hero-content p {
        font-size: 1.1rem;
    }
    
    .portfolio-grid,
    .stats-grid,
    .services-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .work-hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .testimonial {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .portfolio-image {
        height: 250px;
    }
}

/* ========================
   SERVICES PAGE STYLES
   ======================== */

/* Services Tabs Section */
.services-tabs-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.services-tabs-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-tabs {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-button {
    background: transparent;
    color: #2D3748;
    border: 2px solid #D69E2E;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    font-weight: 600;
    font-size: 1rem;
}

.tab-button:hover, .tab-button.active {
    background: #D69E2E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(214, 158, 46, 0.3);
}

.tab-content {
    min-height: 300px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-pane ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tab-pane li {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    color: #666;
    font-weight: 500;
}

.tab-pane li:hover {
    background: rgba(214, 158, 46, 0.1);
    transform: translateX(8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.tab-pane i {
    color: #D69E2E;
    margin-right: 15px;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
    position: relative;
}

.process .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-step {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #D69E2E, #B7791F);
    transform: translateY(-5px);
    transition: transform 0.4s ease;
}

.process-step:hover::before {
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D69E2E 0%, #B7791F 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 5px 15px rgba(214, 158, 46, 0.3);
}

.step-content {
    margin-top: 20px;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2D3748;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #FFFFFF;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2D3748;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    color: #D69E2E;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D69E2E, #B7791F);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tab-pane ul,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .services-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 50vh;
        padding: 6rem 1rem 3rem;
    }
    
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1.1rem;
    }
    
    .tab-pane ul,
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .process-step,
    .faq-question {
        padding: 25px 20px;
    }
    
    .step-number {
        top: -15px;
        left: -15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .tab-pane li {
        padding: 15px;
    }
    
    .tab-pane i {
        font-size: 1.1rem;
        margin-right: 12px;
    }
}

/* ========================
   CONTACT PAGE STYLES
   ======================== */
/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(214, 158, 46, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d69e2e;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #2d3748;
  font-weight: 600;
}

.contact-details a,
.contact-details p {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: #d69e2e;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #2d3748;
  text-align: center;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background: #ffffff;
  border: 2px solid #edf2f7;
  border-radius: 10px;
  color: #2d3748;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d69e2e;
  box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1);
}

.contact-form textarea {
  resize: none;
}

/* Custom Dropdown */
.custom-dropdown {
  position: relative;
  width: 100%;
  background: #fff;
  border: 2px solid #edf2f7;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  z-index: 100;
}

.dropdown-selected {
  padding: 15px;
  font-size: 1rem;
  color: #2d3748;
  border-radius: 10px;
  position: relative;
}

.dropdown-selected:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid #edf2f7;
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dropdown-options li {
  padding: 12px 15px;
  font-size: 0.95rem;
  color: #2d3748;
  transition: background 0.2s;
  list-style: none;
  border-bottom: 1px solid #f1f1f1;
}

.dropdown-options li:last-child {
  border-bottom: none;
}

.dropdown-options li:hover {
  background: rgba(214, 158, 46, 0.1);
}

/* Button */
.contact-form button {
  width: 100%;
  background: #d69e2e;
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.contact-form button:hover {
  background: #b7791f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(214, 158, 46, 0.3);
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-method {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-details h3 {
    margin-top: 10px;
  }

  .contact-form {
    padding: 25px;
  }
  
  /* Mobile-specific dropdown fixes */
  .dropdown-options {
    position: fixed;
    top: auto !important;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 50vh;
    border-radius: 15px 15px 0 0;
    border: 2px solid #edf2f7;
    animation: slideUp 0.3s ease;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 90%;
}

.popup-content h2 {
  color: #2d3748;
  margin-bottom: 15px;
}

.popup-content p {
  color: #555;
  margin-bottom: 20px;
}

.popup-content button {
  background: #d69e2e;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.popup-content button:hover {
  background: #b7791f;
}



/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2D3748;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    color: #D69E2E;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefefe 0%, #fff9e6 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2D3748;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    background: #D69E2E;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .cta-button:hover {
    background: #B7791F;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(214, 158, 46, 0.3);
}

.cta-buttons .cta-button.whatsapp {
    background: #25D366;
}

.cta-buttons .cta-button.whatsapp:hover {
    background: #128C7E;
}

.cta-buttons .cta-button.email {
    background: #EA4335;
}

.cta-buttons .cta-button.email:hover {
    background: #D14836;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D69E2E, #B7791F);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .contact-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding: 6rem 1rem 3rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    

    
    .contact-method,
    .faq-question {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    

    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* ========================
   PRIVACY POLICY PAGE STYLES
   ======================== */

/* Privacy Policy Hero Banner */
.privacy-hero {
    min-height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/privacy-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 8rem 2rem 4rem;
}

.privacy-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

.privacy-hero-content p {
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.8s;
}

/* Privacy Policy Content */
.privacy-content {
    padding: 6rem 0;
    background: var(--white);
}

.privacy-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    position: relative;
    padding-left: 1.5rem;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.policy-section strong {
    color: var(--black);
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Responsive Styles for Privacy Policy Page */
@media (max-width: 992px) {
    .privacy-hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .privacy-hero-content p {
        font-size: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
        padding-left: 1.2rem;
    }
    
    .policy-section h2::before {
        width: 6px;
        height: 6px;
        top: 0.7rem;
    }
}

@media (max-width: 576px) {
    .privacy-hero {
        padding: 6rem 1rem 3rem;
    }
    
    .privacy-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 4rem 0;
    }
    
    .privacy-intro {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .policy-section {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
        padding-left: 1rem;
    }
    
    .policy-section p {
        font-size: 1rem;
    }
}

/* ========================
   TERMS OF SERVICE PAGE STYLES
   ======================== */

/* Terms of Service Hero Banner */
.terms-hero {
    min-height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/terms-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 8rem 2rem 4rem;
}

.terms-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

.terms-hero-content p {
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.8s;
}

/* Terms of Service Content */
.terms-content {
    padding: 6rem 0;
    background: var(--white);
}

.terms-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    position: relative;
    padding-left: 1.5rem;
}

.terms-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.terms-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--black);
    position: relative;
    padding-left: 1.2rem;
}

.terms-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.terms-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.terms-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.terms-section strong {
    color: var(--black);
}

.terms-section a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-section a:hover {
    text-decoration: underline;
}

/* Numbered List Styling */
.terms-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    counter-reset: item;
}

.terms-section ol li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0.5rem;
}

/* Responsive Styles for Terms of Service Page */
@media (max-width: 992px) {
    .terms-hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .terms-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .terms-hero-content p {
        font-size: 1rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
        padding-left: 1.2rem;
    }
    
    .terms-section h2::before {
        width: 6px;
        height: 6px;
        top: 0.7rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
        padding-left: 1rem;
    }
    
    .terms-section h3::before {
        width: 5px;
        height: 5px;
        top: 0.6rem;
    }
}

@media (max-width: 576px) {
    .terms-hero {
        padding: 6rem 1rem 3rem;
    }
    
    .terms-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .terms-content {
        padding: 4rem 0;
    }
    
    .terms-intro {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .terms-section {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
        padding-left: 1rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
        padding-left: 0.8rem;
    }
    
    .terms-section p {
        font-size: 1rem;
    }
    
    .terms-section ul,
    .terms-section ol {
        margin-left: 1rem;
    }
}