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

 :root {
     --primary: #0ea5e9;
     --secondary: #0284c7;
     --accent: #38bdf8;
     --silver: #cbd5e1;
     --dark: #0f172a;
     --dark-blue: #1e293b;
     --light: #f8fafc;
     --gray: #64748b;
 }

body {
    font-family: "Inter", sans-serif;
    background-color: var(--dark);
    color: #ffffff;
    overflow-x: hidden;
    font-size: 14px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001; /* Ensure nav is on top */
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(14, 165, 233, 0.3));
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
    margin-left: auto;
}

.nav-item {
    position: relative;
    cursor: pointer;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-item {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    transform: translateX(5px);
}

.cta-button {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 50%, rgba(15, 23, 42, 0.92) 100%),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80') center/cover no-repeat;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    z-index: 50;
}

.hero-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 50px;
    color: #38bdf8;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
}

.secondary-btn {
    padding: 16px 40px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-btn:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: #38bdf8;
    color: #38bdf8;
}

/* Services Section */
.services-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--dark) 0%, #1a2332 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    color: #0ea5e9;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #0ea5e9;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    font-family: "Space Grotesk", sans-serif;
}

.service-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    padding: 100px 40px;
    background: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.cover {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    z-index: 2000;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        align-items: flex-start;
        gap: 0;
        z-index: 999;
    }

    .nav.mobile-nav-active .nav-links {
        display: flex;
        transform: none; /* Reset any transforms */
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 15px 0;
        font-size: 16px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown {
        position: static;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 20px;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        box-shadow: none;
        display: none; /* Hide by default */
    }

    .nav-item:hover .dropdown {
        margin-top: 0;
        display: block; /* Show on hover/tap */
    }

    .dropdown-item {
        padding: 10px 0;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding: 15px 28px;
    }

    .mobile-menu {
        display: flex;
    }

    .logo span {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .services-section {
        padding: 80px 20px;
    }

    .stats-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
    }
}

/* Page Header Styles */
.page-header {
    padding: 140px 30px 80px;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    text-align: center;
}

.page-header .container {
    max-width: 900px;
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.about-text p {
    margin-bottom: 24px;
}

/* Testimonial Styles */
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 4px;
}

.testimonial-achievement {
    padding: 16px;
    background: rgba(14, 165, 233, 0.1);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.video-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(14, 165, 233, 0.1);
}

.video-placeholder .service-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

/* Select dropdown options styling */
.form-group select option {
    background: var(--dark-blue);
    color: white;
    padding: 10px;
    border: none;
}

.form-group select option:hover,
.form-group select option:focus {
    background: var(--primary);
    color: white;
}

/* Ensure select dropdown is properly styled */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

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

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 8px;
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    cursor: pointer;
}

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 140px 20px 60px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 40px 30px;
    margin-top: -40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(14, 165, 233, 0.3));
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-icon {
    font-size: 18px;
    margin-top: 2px;
    color: var(--accent);
}

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

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter button {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

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

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Policy Pages Styles */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content .service-card {
    margin-bottom: 24px;
}

.policy-content .service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
}

.policy-content .service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.policy-content .service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Animated Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(56, 189, 248, 0.6);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
    opacity: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Contact Panel Trigger */
.contact-trigger {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
}

.contact-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(14, 165, 233, 0.6);
}

.contact-trigger svg {
    width: 28px;
    height: 28px;
}

/* Contact Panel */
.contact-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.contact-panel.active {
    right: 0;
}

.contact-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-panel-header h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    color: white;
    margin: 0;
}

.close-panel {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.close-panel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.close-panel svg {
    width: 24px;
    height: 24px;
}

.quick-contact-form {
    padding: 30px;
}

.quick-contact-form .form-group {
    margin-bottom: 20px;
}

.quick-contact-form input,
.quick-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

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

.quick-contact-form .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* Team Cards Styles */
.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #0ea5e9;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

.team-image {
    flex-shrink: 0;
}

.team-photo {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .team-photo {
    border-color: #0ea5e9;
    transform: scale(1.05);
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-role {
    font-size: 18px;
    font-weight: 600;
    color: #0ea5e9;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-tag {
    background: rgba(14, 165, 233, 0.1);
    color: #38bdf8;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-panel {
        width: 100%;
        right: -100%;
    }
    
    .whatsapp-float,
    .contact-trigger {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .contact-trigger {
        bottom: 85px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    .contact-trigger svg {
        width: 24px;
        height: 24px;
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

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

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

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

    .service-card {
        padding: 30px;
    }

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

    .stat-label {
        font-size: 16px;
    }

    .team-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
    }

    .team-image {
        margin-bottom: 20px;
    }

    .team-photo {
        width: 200px;
        height: 200px;
    }
    
}