
        :root {
            --navy: #2C3E50;
            --gold: #F59E0B;
            --gold-light: #FCD34D;
            --royal: #3B82F6;
            --light-bg: #F0F4F8;
            --light-blue: #E8F1F8;
            --light-cream: #FEFAF5;
            --bg: #FFFFFF;
            --dark-bg: #FAFBFC;
            --text: #2C3E50;
            --white: #FFFFFF;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-300: #D1D5DB;
            --gray-400: #94A3B8;
            --gray-600: #64748B;
            --wood-brown: #A0886F;
            --light-green: #E8F5E9;
            --soft-teal: #E0F2F1;
            --font-display: 'Georgia', 'Garamond', serif;
            --font-body: 'Segoe UI', 'Trebuchet MS', sans-serif;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-soft: 0 4px 24px rgba(44, 62, 80, 0.06);
            --shadow-gold: 0 8px 32px rgba(245, 158, 11, 0.15);
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background-color: var(--bg);
            overflow-x: hidden;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* ===== HEADER BAR ===== */
        .top-header {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFE 100%);
            color: var(--text);
            padding: 12px 0;
            font-size: 13px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-soft);
            animation: fadeIn 0.6s ease-out;
            border-bottom: 1px solid rgba(245, 158, 11, 0.1);
        }

        .top-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .header-left {
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }

        .header-item {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .header-item:hover {
            color: var(--gold);
        }

        .header-item i {
            color: var(--gold);
            width: 16px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .social-icon {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
            font-size: 12px;
        }

        .social-icon:hover {
            background-color: var(--gold);
            color: var(--navy);
            transform: translateY(-3px);
        }

        .quote-btn {
            background-color: var(--gold);
            color: var(--navy);
            padding: 8px 16px;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 600;
            font-size: 12px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .quote-btn:hover {
            background-color: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold);
        }

        /* ===== NAVIGATION BAR ===== */
        .navbar-custom {
            background-color: transparent;
            padding: 20px 0;
            transition: var(--transition);
            position: sticky;
            top: 44px;
            z-index: 999;
            animation: fadeInDown 0.6s ease-out 0.2s both;
        }

        .navbar-custom.scrolled {
            background-color: var(--white);
            box-shadow: var(--shadow-soft);
            padding: 15px 0;
        }

        .navbar-brand {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            color: var(--navy) !important;
            transition: var(--transition);
        }

        .navbar-brand span {
            color: var(--gold);
        }

        .navbar-custom.scrolled .navbar-brand {
            color: var(--navy) !important;
        }

        .nav-link {
            color: var(--navy) !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: var(--transition);
            font-size: 14px;
        }

        .navbar-custom.scrolled .nav-link {
            color: var(--text) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--gold) !important;
        }

        .consultation-btn {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--navy);
            padding: 10px 20px;
            border-radius: var(--radius-md);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 13px;
            white-space: nowrap;
        }

        .consultation-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
            color: var(--navy);
        }

        /* ===== HERO SECTION ===== */
        
        .btn-primary,
        .btn-secondary {
            padding: 14px 30px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--radius-md);
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background-color: var(--gold);
            color: var(--navy);
        }

        .btn-primary:hover {
            background-color: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
            color: var(--navy);
            text-decoration: none;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border-color: var(--gold);
        }

        .btn-secondary:hover {
            background-color: var(--gold);
            color: var(--navy);
            box-shadow: var(--shadow-gold);
            text-decoration: none;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-top: 80px;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: var(--radius-md);
            border: 1px solid rgba(245, 158, 11, 0.3);
            transition: var(--transition);
            text-align: center;
            box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.95);
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: var(--shadow-gold);
        }

        .feature-card i {
            font-size: 32px;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .feature-card h4 {
            font-size: 16px;
            color: var(--navy);
            font-weight: 600;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            padding: 80px 0;
            background: linear-gradient(135deg, #FEFAF5 0%, #FFFFFF 100%);
            position: relative;
            overflow: hidden;
            
        }

        .about::before {
            content: '';
            position: absolute;
            right: -200px;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            text-align: center;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--navy);
            position: relative;
            display: inline-block;
            
        }

        .section-title span {
            color: var(--gold);
        }

        .section-subtitle {
            color: var(--gray-600);
            font-size: 16px;
            margin-bottom: 50px;
            text-align: center;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--navy);
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .highlight-item {
            display: flex;
            gap: 15px;
            padding: 15px;
            background-color: var(--gray-100);
            border-radius: var(--radius-md);
            transition: var(--transition);
        }

        .highlight-item:hover {
            background-color: var(--gold-light);
            box-shadow: var(--shadow-soft);
        }

        .highlight-item i {
            color: var(--gold);
            font-size: 20px;
            min-width: 20px;
        }

        .highlight-item h5 {
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .highlight-item p {
            color: var(--gray-600);
            font-size: 13px;
            margin: 0;
        }

        .about-image {
            position: relative;
            height: 400px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* ===== CATEGORIES SECTION ===== */
        .categories {
            padding: 80px 0;
            background: linear-gradient(135deg, #E8F1F8 0%, #F0F4F8 100%);
            color: var(--text);
            position: relative;
            overflow: hidden;
        }

        .categories::before {
            content: '';
            position: absolute;
            left: -200px;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .categories .section-title {
            color: var(--navy);
            position: relative;
            z-index: 2;
        }

        .categories .section-subtitle {
            color: var(--gray-600);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .category-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
        }

        .category-card:hover {
            border-color: var(--gold);
            transform: translateY(-10px);
            box-shadow: var(--shadow-gold);
            background: var(--white);
        }

        .category-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--wood-brown) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            overflow: hidden;
            position: relative;
        }

        .category-image i {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }

        .category-card:hover .category-image i {
            transform: scale(1.2) rotate(5deg);
            color: var(--white);
        }

        .category-info {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .category-info h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--navy);
        }

        .category-info p {
            color: var(--gray-600);
            font-size: 14px;
            margin-bottom: 15px;
            flex: 1;
        }

        .category-link {
            color: var(--gold);
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .category-link:hover {
            gap: 12px;
            color: var(--gold-light);
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-item {
            text-align: center;
            padding: 35px 25px;
            border-radius: var(--radius-lg);
            background: var(--gray-100);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .service-item:hover::before {
            transform: scaleX(1);
        }

        .service-item:hover {
            box-shadow: var(--shadow-soft);
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 40px;
            color: var(--gold);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .service-item:hover .service-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .service-item h4 {
            font-size: 18px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-item p {
            color: var(--gray-600);
            font-size: 14px;
            line-height: 1.6;
        }

        /* ===== PROCESS SECTION ===== */
        .process {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
            position: relative;
        }

        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
            top: 0;
        }

        .timeline-items {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .timeline-item {
            position: relative;
            padding: 30px;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .timeline-item:hover {
            box-shadow: var(--shadow-gold);
            transform: translateY(-5px);
        }

        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 35px;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: var(--gold);
            border: 4px solid var(--white);
            border-radius: 50%;
            z-index: 10;
            box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
        }

        .timeline-content {
            max-width: 500px;
            margin: 0 auto;
        }

        .timeline-number {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .timeline-item h4 {
            font-size: 20px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .timeline-item p {
            color: var(--gray-600);
            font-size: 14px;
            line-height: 1.6;
        }

        /* ===== PROJECTS SECTION ===== */
        .projects {
            padding: 80px 0;
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
            position: relative;
            overflow: hidden;
        }

        .projects::after {
            content: '';
            position: absolute;
            right: -200px;
            bottom: -200px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .project-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            box-shadow: var(--shadow-gold);
            transform: translateY(-10px);
        }

        .project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 10px; /* Optional */
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills area without distortion */
    display: block;
}

        .project-card:hover .project-image {
            transform: scale(1.1);
        }

        .project-info {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .project-info h4 {
            font-size: 18px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-meta {
            font-size: 13px;
            color: var(--gray-600);
            margin-bottom: 12px;
        }

        .project-info p {
            color: var(--gray-600);
            font-size: 14px;
            line-height: 1.6;
            flex: 1;
            margin-bottom: 15px;
        }

        .project-link {
            color: var(--gold);
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .project-link:hover {
            gap: 12px;
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials {
            padding: 80px 0;
            background: linear-gradient(135deg, #F0F4F8 0%, #E8F1F8 100%);
            color: var(--text);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            left: -200px;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonials .section-title {
            color: var(--navy);
            position: relative;
            z-index: 2;
        }

        .swiper {
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: var(--radius-lg);
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
        }

        .testimonial-card:hover {
            border-color: var(--gold);
            background: var(--white);
            box-shadow: var(--shadow-gold);
        }

        .testimonial-rating {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 14px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.8;
            color: var(--gray-600);
            margin-bottom: 25px;
            flex: 1;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-weight: 700;
            font-size: 18px;
        }

        .testimonial-info h5 {
            color: var(--navy);
            font-weight: 600;
            margin: 0;
            font-size: 14px;
        }

        .testimonial-info p {
            color: var(--gold);
            font-size: 12px;
            margin: 0;
        }

        .swiper-pagination-bullet {
            background-color: rgba(255, 255, 255, 0.5) !important;
            transition: var(--transition);
        }

        .swiper-pagination-bullet-active {
            background-color: var(--gold) !important;
        }

        /* ===== STATISTICS SECTION ===== */
        .statistics {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--navy);
            font-size: 16px;
            font-weight: 600;
        }

        .stat-label small {
            color: var(--gray-600);
            font-size: 13px;
            display: block;
        }

        /* ===== CTA SECTION ===== */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(232, 241, 248, 0.98) 100%);
            color: var(--navy);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 100%);
            z-index: 1;
        }

        .cta h2 {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--navy);
        }

        .cta p {
            font-size: 16px;
            color: var(--gray-600);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, #FFFFFF 0%, #F0F4F8 100%);
            position: relative;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-item-content h5 {
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .contact-item-content p {
            color: var(--gray-600);
            font-size: 14px;
            margin: 0;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-form h3 {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 13px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--text);
            transition: var(--transition);
            background-color: var(--white);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--navy);
            padding: 14px 30px;
            border: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
        }

        /* ===== MAP SECTION ===== */
        .map-section {
            width: 100%;
            height: 400px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===== FOOTER ===== */
        footer {
            background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
            color: var(--white);
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            right: -200px;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .footer-column h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--gold);
        }

        .footer-column p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        .footer-link {
            display: block;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 12px;
            transition: var(--transition);
        }

        .footer-link:hover {
            color: var(--gold);
            padding-left: 8px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-social-icon {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-social-icon:hover {
            background: var(--gold);
            color: var(--navy);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 2;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .top-header-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .header-left {
                flex-direction: column;
                gap: 15px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-features {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                margin-top: 50px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                height: 300px;
            }

            .section-title {
                font-size: 32px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                margin-left: 50px;
            }

            .timeline-marker {
                left: 8px;
                transform: translateX(-50%);
            }

            .timeline-content {
                max-width: 100%;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .nav-link {
                margin: 5px 0;
            }

            .navbar-custom {
                padding: 12px 0;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }

            .cta-buttons {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .top-header {
                padding: 8px 0;
                font-size: 11px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 14px;
            }

            .hero-features {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 24px;
            }

            .about-highlights {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 36px;
            }

            .timeline-item {
                margin-left: 30px;
                padding: 20px;
            }

            .category-card,
            .project-card {
                margin: 0;
            }

            .testimonial-card {
                padding: 25px;
            }

            .map-section {
                height: 300px;
            }

            .cta h2 {
                font-size: 28px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        /* ===== AOS ANIMATIONS ===== */
        [data-aos] {
            opacity: 0;
        }

        [data-aos="fade-up"] {
            transform: translateY(30px);
        }

        [data-aos="fade-down"] {
            transform: translateY(-30px);
        }

        [data-aos="zoom-in"] {
            transform: scale(0.9);
        }

        [data-aos].aos-animate {
            opacity: 1;
            transform: translate(0) scale(1) !important;
        }
    

    .cta {
     padding:120px 20px;
    text-align:center;
    color:#fff;
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* Background Image */
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.65)
    ),
    url('images/interior-cta.jpg') center center/cover no-repeat;

    z-index: -2;

    /* Slow Zoom Animation */
    animation: zoomBg 15s ease-in-out infinite alternate;
}

/* Optional Glass Overlay */
.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    margin: auto;
    animation: fadeUp 1s ease;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-color:#fff;
}

.cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Background Zoom */
@keyframes zoomBg {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Content Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RIGHT: info panel --- */
        .info-panel {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 44px 40px;
            border-top: 5px solid var(--gold);
            position: relative;
            z-index: 1;
        }
        .prod-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(252,211,77,0.15) 100%);
            color: var(--gold);
            border: 1px solid rgba(245,158,11,0.3);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
        }
        .prod-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            color: var(--navy);
            line-height: 1.2;
            letter-spacing: -0.025em;
            margin-bottom: 1.2rem;
        }
        .prod-desc {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--gray-200);
        }
        .feat-heading {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 1.2rem;
        }
        .feat-list { list-style: none; margin-bottom: 2rem; }
        .feat-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--gray-100);
            font-size: 0.95rem;
            color: var(--text);
            line-height: 1.5;
        }
        .feat-list li:last-child { border-bottom: none; }
        .feat-icon {
            width: 26px; height: 26px;
            min-width: 26px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(245,158,11,0.18) 0%, rgba(252,211,77,0.18) 100%);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            margin-top: 1px;
        }
        .feat-list strong { color: var(--navy); }
        .action-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-200);
        }
        .meta-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 1.6rem;
        }
        .meta-tag {
            background: var(--gray-100);
            color: var(--gray-600);
            font-size: 0.78rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 50px;
            border: 1px solid var(--gray-200);
        }

        /* ============================================================
           2. PRODUCT DESCRIPTION
        ============================================================ */
        .desc-section {
            background: var(--light-cream);
            padding: 80px 0;
            position: relative;
        }
        .desc-section::before {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 380px; height: 380px;
            background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .desc-body {
            font-size: 1.02rem;
            color: var(--gray-600);
            line-height: 1.85;
            margin-bottom: 2rem;
        }
        .spec-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }
        .spec-table thead {
            background: var(--navy);
        }
        .spec-table thead th {
            color: var(--white);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 16px 24px;
        }
        .spec-table tbody tr {
            background: var(--white);
            transition: var(--transition);
        }
        .spec-table tbody tr:nth-child(even) { background: var(--gray-100); }
        .spec-table tbody tr:hover { background: rgba(245,158,11,0.06); }
        .spec-table tbody td {
            padding: 15px 24px;
            font-size: 0.92rem;
            color: var(--text);
            border-bottom: 1px solid var(--gray-200);
        }
        .spec-table tbody td:first-child {
            font-weight: 700;
            color: var(--navy);
            width: 38%;
        }
        .spec-icon-badge {
            color: var(--gold);
            margin-right: 8px;
        }
        .spec-bullet-col ul {
            list-style: none;
            padding: 0;
        }
        .spec-bullet-col ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.96rem;
            color: var(--gray-600);
            line-height: 1.7;
            padding: 7px 0;
            border-bottom: 1px solid var(--gray-200);
        }
        .spec-bullet-col ul li:last-child { border-bottom: none; }
        .spec-bullet-col ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--gold);
            font-size: 0.75rem;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .spec-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-soft);
            height: 100%;
        }
        .spec-card h4 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .spec-card h4 i { color: var(--gold); font-size: 1rem; }

        .thumb-image{
    transition:.3s;
}

.thumb-image:hover{
    transform:scale(1.05);
}

.active-thumb{
    border:2px solid #0d6efd !important;
}

  /* --- LEFT: image panel --- */
        .img-panel {
            position: sticky;
            top: 100px;
        }
        .main-img-wrap {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            background: var(--light-bg);
            aspect-ratio: 1 / 1;
            cursor: zoom-in;
        }
        .main-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
        }
        .main-img-wrap:hover img { transform: scale(1.08); }
        .img-badge {
            position: absolute;
            top: 18px; left: 18px;
            background: var(--navy);
            color: var(--gold);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-soft);
            z-index: 2;
        }
        .thumbs-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 16px;
        }
        .thumb-item {
            aspect-ratio: 1 / 1;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 2px solid var(--gray-200);
            cursor: pointer;
            transition: var(--transition);
            background: var(--light-bg);
        }
        .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .thumb-item:hover { border-color: var(--gold); transform: translateY(-2px); }
        .thumb-item.active {
            border-color: var(--gold);
            box-shadow: var(--shadow-gold);
        }
        .thumb-item:hover img { transform: scale(1.06); }

        /* --- RIGHT: info panel --- */
        .info-panel {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 44px 40px;
            border-top: 5px solid var(--gold);
            position: relative;
            z-index: 1;
        }
        .prod-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(252,211,77,0.15) 100%);
            color: var(--gold);
            border: 1px solid rgba(245,158,11,0.3);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
        }
        .prod-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            color: var(--navy);
            line-height: 1.2;
            letter-spacing: -0.025em;
            margin-bottom: 1.2rem;
        }
        .prod-desc {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--gray-200);
        }
        .feat-heading {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 1.2rem;
        }
        .feat-list { list-style: none; margin-bottom: 2rem; }
        .feat-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--gray-100);
            font-size: 0.95rem;
            color: var(--text);
            line-height: 1.5;
        }
        .feat-list li:last-child { border-bottom: none; }
        .feat-icon {
            width: 26px; height: 26px;
            min-width: 26px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(245,158,11,0.18) 0%, rgba(252,211,77,0.18) 100%);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            margin-top: 1px;
        }
        .feat-list strong { color: var(--navy); }
        .action-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-200);
        }
        .meta-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 1.6rem;
        }
        .meta-tag {
            background: var(--gray-100);
            color: var(--gray-600);
            font-size: 0.78rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 50px;
            border: 1px solid var(--gray-200);
        }

        /* ============================================================
           2. PRODUCT DESCRIPTION
        ============================================================ */
        .desc-section {
            background: var(--light-cream);
            padding: 80px 0;
            position: relative;
        }
        .desc-section::before {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 380px; height: 380px;
            background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .desc-body {
            font-size: 1.02rem;
            color: var(--gray-600);
            line-height: 1.85;
            margin-bottom: 2rem;
        }
        .spec-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }
        .spec-table thead {
            background: var(--navy);
        }
        .spec-table thead th {
            color: var(--white);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 16px 24px;
        }
        .spec-table tbody tr {
            background: var(--white);
            transition: var(--transition);
        }
        .spec-table tbody tr:nth-child(even) { background: var(--gray-100); }
        .spec-table tbody tr:hover { background: rgba(245,158,11,0.06); }
        .spec-table tbody td {
            padding: 15px 24px;
            font-size: 0.92rem;
            color: var(--text);
            border-bottom: 1px solid var(--gray-200);
        }
        .spec-table tbody td:first-child {
            font-weight: 700;
            color: var(--navy);
            width: 38%;
        }
        .spec-icon-badge {
            color: var(--gold);
            margin-right: 8px;
        }
        .spec-bullet-col ul {
            list-style: none;
            padding: 0;
        }
        .spec-bullet-col ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.96rem;
            color: var(--gray-600);
            line-height: 1.7;
            padding: 7px 0;
            border-bottom: 1px solid var(--gray-200);
        }
        .spec-bullet-col ul li:last-child { border-bottom: none; }
        .spec-bullet-col ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--gold);
            font-size: 0.75rem;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .spec-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-soft);
            height: 100%;
        }
        .spec-card h4 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .spec-card h4 i { color: var(--gold); font-size: 1rem; }