:root {
    --primary: #007bff;
    --secondary: #6c757d;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --accent: #ffc107;
    --white: #ffffff;
    --gray-100: #f1f3f5;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Style */
/* Simple Professional Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 110px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 90px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 10px;
}

.nav-links a:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

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

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 10px 0;
    display: none;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 15px;
    animation: dropdownFade 0.3s ease;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 12px 25px !important;
    display: block !important;
    width: 100%;
    color: var(--dark) !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

.language-bar {
    margin-top: 125px; /* Adjusted for taller navbar with large logo */
    padding: 10px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 999;
}

@media (max-width: 768px) {
    .language-bar {
        margin-top: 105px; /* Mobile adjustment for larger logo */
    }
}

.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 6px 15px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.lang-btn:hover:not(.active) {
    background: #eee;
}

.dropdown-menu a:after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: #f8faff;
    color: var(--primary) !important;
    padding-left: 30px !important;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

/* 3D Action Buttons for Hero */
.btn-3d {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: none;
    cursor: pointer;
}

.btn-3d.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;

}

.btn-3d.call {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;

}

.btn-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 0 inherit, 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-3d:active {
    transform: translateY(5px);
    box-shadow: 0 0 0 inherit, 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-3d i {
    font-size: 20px;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: var(--gray-100);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 15px;
}

.link-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Internal Page Header */
.page-header {
    background: linear-gradient(rgba(0, 123, 255, 0.9), rgba(0, 86, 179, 0.9)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.padding-y {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--gray-100);
}

.service-row {
    padding: 60px 0;
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-detail .content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-detail ul {
    margin: 20px 0;
    list-style: none;
}

.service-detail ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-detail ul li:before,
.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 17px;
}

.cta-box {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    margin-top: 40px;
}

.cta-box h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.cta-box p {
    margin-bottom: 25px !important;
}

hr {
    border: 0;
    border-top: 1px solid var(--gray-100);
}

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

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--dark);
    color: var(--white);
}

.footer a {
    color: var(--primary);
    text-decoration: none;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--dark);
    transition: var(--transition);
}

/* Image Gallery Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

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

.image-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.image-overlay p {
    font-size: 14px;
    opacity: 0.9;
    transform: translateY(20px);
    transition: var(--transition) 0.1s;
}

.image-card:hover .image-overlay h4,
.image-card:hover .image-overlay p {
    transform: translateY(0);
}

/* Advanced Animated Display Cards */
.advanced-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
}

.advanced-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 50%, #00d2ff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advanced-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 123, 255, 0.15);
}

.advanced-card:hover::before {
    opacity: 1;
}

.advanced-card .img-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.advanced-card .img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 50, 100, 0.4) 100%);
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.advanced-card:hover .img-wrapper::after {
    opacity: 0.3;
}

.advanced-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.advanced-card:hover .img-wrapper img {
    transform: scale(1.1) rotate(2deg);
}

.advanced-card .card-content {
    padding: 35px;
    position: relative;
    z-index: 1;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 25px 25px;
}

.advanced-card .card-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(0, 123, 255, 0.05), transparent 70%);
    z-index: -1;
}

.advanced-card h4 {
    font-size: 24px;
    color: #1a1f26;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.advanced-card:hover h4 {
    color: var(--primary);
}

.advanced-card p {
    color: #667085;
    font-size: 15.5px;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.card-links {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.advanced-card .btn-link,
.advanced-card .btn-contact {
    flex: 1;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.advanced-card .btn-link {
    background: #f0f7ff;
    color: var(--primary);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.advanced-card .btn-contact {
    background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.advanced-card .btn-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.advanced-card .btn-contact:hover {
    background: var(--dark);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #004d99 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Certification Section */
/* Experts & Stats Section (Screenshot Match) */
.experts-stats-section {
    background: #fdfdfd;
    padding: 80px 0;
}

.experts-header {
    margin-bottom: 40px;
}

.experts-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1f26;
    margin-bottom: 10px;
}

.experts-underline {
    width: 60px;
    height: 4px;
    background: #2a2e35;
    border-radius: 2px;
}

.expert-intro-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-30px);
    animation: revealExperts 1s forwards cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

@keyframes revealExperts {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.expert-intro-card:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.expert-avatar {
    position: relative;
    width: 80px;
    height: 80px;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: #2ecc71;
    border: 3px solid #f8f9fa;
    border-radius: 50%;
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.expert-info {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.info-divider {
    width: 3px;
    height: 50px;
    background: #1a1f26;
    flex-shrink: 0;
    margin-top: 5px;
}

.expert-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    font-weight: 500;
    margin-top: -3px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 50px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.02);
    opacity: 0;
    transform: translateY(30px);
}

.stat-card:nth-child(1) {
    animation: revealStats 0.8s forwards 0.4s;
}

.stat-card:nth-child(2) {
    animation: revealStats 0.8s forwards 0.6s;
}

.stat-card:nth-child(3) {
    animation: revealStats 0.8s forwards 0.8s;
}

@keyframes revealStats {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 123, 255, 0.1);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #1a1f26;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .expert-intro-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .expert-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-divider {
        display: none;
    }
}


/* Google Reviews Screenshot Match */
.exact-google-reviews {
    background: #eef2f6;
    /* Very light blue/gray matching screenshot */
    padding: 80px 0;
    font-family: inherit;
}

.overall-review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 50px;
    transition: all 0.4s ease;
}

.overall-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.overall-left .rating-number {
    font-size: 64px;
    font-weight: 800;
    color: #045b9c;
    /* Dark blue matching screenshot */
    line-height: 1;
    margin-bottom: 5px;
}

.overall-left .rating-stars i {
    color: #fbbc05;
    font-size: 20px;
    margin-right: 3px;
}

.overall-left .rating-text {
    font-size: 14px;
    color: #444;
    margin-top: 10px;
    font-weight: 500;
}

.overall-right .google-badge-pill {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.google-badge-pill img {
    height: 28px;
}

.google-badge-pill span {
    font-size: 15px;
    font-weight: 700;
    color: #555;
}

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

.gr-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853, #4285F4);
    background-size: 200% auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gr-card:hover::before {
    opacity: 1;
    animation: borderFlow 2s linear infinite;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.gr-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 40px 80px rgba(0, 50, 150, 0.12);
}

.gr-top {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.gr-avatar-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.gr-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gr-person h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 5px 0;
}

.gr-stars-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gr-stars i {
    color: #fbbc05;
    font-size: 12px;
}

.gr-time {
    font-size: 12px;
    color: #888;
}

.gr-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.gr-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gr-footer img {
    width: 18px;
}

.gr-footer span {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

@media (max-width: 768px) {
    .overall-review-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #f8faff;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background-color: white;
}

.faq-item.active .faq-answer {
    padding: 20px 30px;
    max-height: 300px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-question span {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

/* Main Footer */
.main-footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col.about-col p {
    color: #aaa;
    margin: 20px 0;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.links-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-dtls li {
    display: flex;
    margin-bottom: 15px;
    color: #aaa;
    align-items: flex-start;
}

.contact-dtls li i {
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-dtls li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.contact-dtls li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar {
        width: 100%;
        top: 0;
        padding: 10px 0;
        border-radius: 0;
    }

    .logo a {
        font-size: 1.2rem !important;
    }

    .hero h1 {
        font-size: 32px;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 16px;
        padding: 0 15px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 3px;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
    }

    .menu-toggle .bar {
        width: 26px;
        height: 3px;
        background: var(--dark);
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 85px;
        left: 5%;
        width: 90%;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        padding: 0;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
        border-radius: 28px; /* iOS style heavy rounding */
        z-index: 1000;
        text-align: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px) scale(0.92);
        transition: all 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    }

    /* iOS Style Top Indicator */
    .nav-links::before {
        content: '';
        width: 40px;
        height: 5px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin: 12px auto;
        display: block;
    }

    .nav-links.active {
        max-height: 700px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        padding-bottom: 20px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 18px !important;
        color: #000 !important;
        font-weight: 600;
        font-size: 17px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
        transition: background 0.2s;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    /* Mobile Dropdown Styling */
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.02);
        padding: 0;
        margin-top: 0;
        animation: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 15px 40px !important;
        font-size: 15px;
        color: #555 !important;
        background: transparent !important;
    }

    .dropdown i {
        transition: transform 0.3s;
    }

    .dropdown.open > a i {
        transform: rotate(180deg);
    }



    .nav-links a:active {
        background: rgba(0, 0, 0, 0.05); /* Tactile feedback on press */
    }

    .nav-links a:hover {
        background: #f9f9f9;
        transform: none;
    }

    /* Hamburger to X Animation */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .image-grid, .exact-reviews-grid, .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .cta-btns, .hero-actions {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn-3d {
        width: 100%;
        padding: 15px 25px;
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    /* Fix for About Us alternating sections */
    .project-section {
        flex-direction: column !important;
        text-align: center;
        padding: 40px 0;
    }

    .project-info {
        padding: 20px 0 !important;
    }

    .project-image {
        height: 300px;
    }
}

/* Specific fix for Contact Page Premium Panel on Mobile */
@media (max-width: 1024px) {
    .contact-floating-panel {
        grid-template-columns: 1fr; /* Stack Sidebar and Form */
        margin-top: -50px;
    }

    .contact-info-side {
        padding: 40px;
        border-radius: 30px 30px 0 0;
    }

    .contact-form-side {
        padding: 40px;
        border-radius: 0 0 30px 30px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem !important;
    }
}

/* 3D Floating Bubble Buttons */
.floating-container-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-container-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), inset 0 -4px 0 rgba(0, 0, 0, 0.2), inset 0 4px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bubbleFloat 3s ease-in-out infinite;
    position: relative;
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #6cb86c 100%);
    animation-delay: 0s;
}

.float-call {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    animation-delay: 0.5s;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 30px rgba(118, 187, 86, 0.685);
}

.float-btn:active {
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgb(63, 180, 89);
}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(2deg);
    }

    66% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

.float-btn i {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* Extra 3D Depth for Floaters */
/* VIP Shuffle Animation for Call Button */
@keyframes vipShuffle {
    0% {
        transform: scale(1) rotate(0deg);
    }

    10% {
        transform: scale(1.1) rotate(-5deg);
    }

    20% {
        transform: scale(1.1) rotate(5deg);
    }

    30% {
        transform: scale(1.1) rotate(-5deg);
    }

    40% {
        transform: scale(1.1) rotate(5deg);
    }

    50% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.float-call {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    animation: bubbleFloat 3s ease-in-out infinite, vipShuffle 4s ease-in-out infinite;


    .float-whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        animation: bubbleFloat 3s ease-in-out infinite;
        animation-delay: 0.5s;

    }

    .float-btn:hover {
        transform: scale(1.1) translateY(-8px);
        box-shadow: 0 4px 0 inherit, 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .float-btn:active {
        transform: scale(0.95) translateY(4px);
        box-shadow: 0 0 0 inherit, 0 5px 10px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {

        .floating-container-right,
        .floating-container-left {
            bottom: 20px;
        }

        .floating-container-right {
            right: 20px;
        }

        .floating-container-left {
            left: 20px;
        }

        .float-btn {
            width: 55px;
            height: 55px;
            font-size: 22px;
        }
    }
}

