/* ======================
   BRAND COLORS & GLOBAL STYLES
   ====================== */
:root {
    --primary: #00CCCD;
    --dark-teal: #009999;
    --light-teal: #00CCCD;
    --accent: #B8E986;
    --black: #101820;
    --silver: #B0BEC5;
    --light-bg: #1a2530;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(0, 204, 205, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 204, 205, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 204, 205, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

body>* {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--black);
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary-custom:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 233, 134, 0.3);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 8px;
    padding: 10px 26px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-outline-custom:hover {
    background-color: var(--primary);
    color: var(--black);
    transform: translateY(-2px);
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 2.5rem;
}

.section-subtitle {
    color: var(--silver);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.bg-teal {
    background-color: var(--primary) !important;
}

.bg-dark-teal {
    background-color: var(--dark-teal) !important;
}

.bg-light {
    background-color: rgba(26, 37, 48, 0.5) !important;
    backdrop-filter: blur(10px);
}

.text-teal {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--silver) !important;
}

/* Service List Items */
.card-custom ul.list-unstyled li {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
}

.card-custom ul.list-unstyled li i.bi-check2 {
    color: var(--primary) !important;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Card Headings - Ensure white color */
.card-custom h5,
.card-custom h4,
.card-custom h3,
.card-custom h6 {
    color: var(--white) !important;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.05), rgba(184, 233, 134, 0.03));
    padding: 60px 0 50px 0;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--accent);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--silver);
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.breadcrumb-subtitle {
    font-size: 1.1rem;
    color: var(--silver);
    max-width: 700px;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* About Section Image */
.about-image-card {
    height: 100%;
}

.about-image-wrapper {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    display: block;
}

/* Mobile About Image */
@media (max-width: 768px) {
    .about-image-wrapper {
        padding: 15px;
    }
    
    .about-image {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .about-image-wrapper {
        padding: 10px;
    }
    
    .about-image {
        max-height: 250px;
    }
}

/* Stats Section */
.stats-section {
    position: relative;
}

.stats-section .card-custom {
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.stats-section .card-custom:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 204, 205, 0.3);
}

.stats-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
}

/* ======================
   NAVBAR STYLES
   ====================== */
.navbar {
    background-color: rgba(16, 24, 32, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    align-items: flex-start;
}

.navbar-logo {
    max-height: 73px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
}

.navbar-brand span {
    color: var(--primary);
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-top: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    transition: color 0.3s;
    position: relative;
    margin: 0 4px;
    display: inline-flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
    border-radius: 1px;
}

/* Only show underline on non-dropdown nav links */
.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    width: 70%;
}

/* Dropdown Toggle - Always show Bootstrap arrow */
.nav-link.dropdown-toggle::after {
    display: inline-block !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    margin-left: 0.4em;
    vertical-align: 0.255em;
    content: "" !important;
    border-top: 0.3em solid currentColor;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    border-radius: 0 !important;
    transition: none !important;
}

/* Keep dropdown icon visible when dropdown is open */
.nav-item.dropdown:hover .dropdown-toggle,
.dropdown-toggle[aria-expanded="true"] {
    color: var(--primary) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    background-color: rgba(16, 24, 32, 0.98);
    backdrop-filter: blur(10px);
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    display: block;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0;
}

/* Prevent dropdown from closing when hovering over it */
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    transition: background 0.3s;
    color: var(--white);
}

.dropdown-item:hover {
    background-color: rgba(0, 204, 205, 0.1);
    color: var(--primary);
}

/* Mega Menu Styles */
.mega-menu {
    width: 100% !important;
    min-width: 1100px;
    max-width: 1200px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
    padding: 35px 40px;
    margin-top: 0;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    background-color: rgba(16, 24, 32, 0.98);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    display: block;
}

.nav-item.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    margin-top: 0;
}

/* Prevent mega menu from closing when hovering over it */
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0;
    margin: 0;
}

.mega-menu .row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -15px;
}

.mega-menu .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
    padding: 0 15px;
    box-sizing: border-box;
}

.mega-menu-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
    white-space: nowrap;
}

.mega-menu .dropdown-item {
    padding: 8px 0;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
    color: var(--silver);
}

.mega-menu .dropdown-item:hover {
    background-color: rgba(0, 204, 205, 0.1);
    color: var(--primary);
    padding-left: 12px;
}

/* FAQ Accordion Styles */
.accordion-body {
    color: var(--white) !important;
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
}

.accordion-button {
    color: var(--white);
    background-color: transparent;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 204, 205, 0.1);
    color: var(--primary);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Navbar Logo */
/* .navbar-logo {
    height: 45px;
    width: auto;
} */

/* ======================
   TECHNOLOGIES CAROUSEL
   ====================== */
#techCarousel .card-custom {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

#techCarousel .card-custom:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

#techCarousel .carousel-control-prev,
#techCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

#techCarousel .carousel-control-prev-icon,
#techCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

#techCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.4;
}

#techCarousel .carousel-indicators button.active {
    opacity: 1;
}

/* ======================
   BREADCRUMB SECTION
   ====================== */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--dark-teal), var(--primary));
    padding: 60px 0 40px 0;
    color: var(--white);
    margin-top: 80px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.breadcrumb-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ======================
   CONTACT PAGE STYLES
   ====================== */
.contact-info-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--light-teal));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--black);
}

.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 151, 167, 0.15);
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.business-hours li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.business-hours li:last-child {
    border-bottom: none;
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* ======================
   HERO SECTION
   ====================== */
.hero-section {
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(16, 24, 32, 0.85));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 204, 205, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 204, 205, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Hero Buttons - Ensure Clickability */
.hero-buttons {
    position: relative;
    z-index: 10;
}

.hero-buttons .btn {
    position: relative;
    z-index: 11;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Hero Section Container */
.hero-section .container {
    position: relative;
    z-index: 5;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--silver);
}

.tagline-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    animation: taglineGlow 3s ease-in-out infinite;
}

@keyframes taglineGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(184, 233, 134, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(184, 233, 134, 0.6), 0 0 30px rgba(184, 233, 134, 0.4);
    }
}

/* Case Study Badge */
.case-study-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 24px;
    animation: badgePulse 2s ease-in-out infinite;
}

.case-study-badge .badge-label {
    font-size: 0.85rem;
    color: var(--silver);
    font-weight: 500;
}

.case-study-badge .badge-value {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(184, 233, 134, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(184, 233, 134, 0);
    }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--silver);
    font-size: 0.95rem;
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

/* ======================
   CARDS STYLING
   ====================== */
.card-custom {
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 204, 205, 0.2);
    border-color: var(--primary);
}

.card-icon {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.2), rgba(184, 233, 134, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Contact Page Icons */
.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.2), rgba(184, 233, 134, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ======================
   LEAD POPUP FORM
   ====================== */
.lead-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 24, 32, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lead-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.lead-popup-container {
    background: var(--black);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.lead-popup-overlay.show .lead-popup-container {
    transform: scale(1);
}

.lead-popup-header {
    padding: 20px 24px 0;
    position: relative;
}

.lead-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.lead-popup-close:hover {
    background: var(--primary);
    color: var(--black);
}

.lead-popup-body {
    padding: 15px 24px 24px;
}

.lead-popup-body .form-control {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
}

.lead-popup-body .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 204, 205, 0.25);
    background: var(--glass-bg);
    color: var(--white);
}

.lead-popup-body .form-control::placeholder {
    color: var(--silver);
    opacity: 0.6;
}

.lead-popup-body .form-label {
    color: var(--white);
    margin-bottom: 5px;
}

.lead-popup-body select.form-control option {
    background: var(--black);
    color: var(--white);
}

/* ======================
   PROCESS SECTION
   ====================== */
.process-step {
    position: relative;
    text-align: center;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--silver);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    border: 2px solid var(--glass-border);
}

/* ======================
   FAQ SECTION
   ====================== */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 204, 205, 0.1);
    color: var(--primary);
}

.accordion-button {
    background-color: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--glass-border);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-item {
    background-color: transparent;
    border: none;
}

/* ======================
   CONTACT FORM
   ====================== */
.form-control {
    border-radius: 8px;
    padding: 14px 18px;
    border: 1px solid var(--glass-border);
    margin-bottom: 20px;
    font-size: 1rem;
    background-color: var(--glass-bg);
    color: var(--white);
}

.form-control::placeholder {
    color: var(--silver);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 204, 205, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

/* ======================
   FLOATING SOCIAL ICONS
   ====================== */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background-color: var(--dark-teal);
    color: var(--white);
    transform: translateY(-3px);
}

.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.theme-toggle {
    background: linear-gradient(135deg, #B8E986, #9DD876);
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.social-icon.theme-toggle:hover {
    background: linear-gradient(135deg, #9DD876, #8BC866);
    transform: translateY(-3px) rotate(15deg);
}

.social-icon.whatsapp:hover {
    background-color: #128C7E;
}

/* ======================
   PREMIUM FOOTER
   ====================== */
.premium-footer {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(26, 37, 48, 0.98));
    color: var(--silver);
    overflow: hidden;
    margin-top: 0;
}

/* Footer CTA Section */
.footer-cta {
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.15), rgba(184, 233, 134, 0.1));
    padding: 50px 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.footer-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.footer-cta-subtitle {
    font-size: 1.1rem;
    color: var(--silver);
}

/* Footer Wave */
.footer-wave {
    position: relative;
    height: 80px;
    overflow: hidden;
    z-index: 1;
}

.footer-wave svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: rgba(16, 24, 32, 0.98);
}

/* Footer Main */
.footer-main {
    padding: 80px 0 60px 0;
    position: relative;
    z-index: 2;
}

/* Footer Brand */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 204, 205, 0.2));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 6px 12px rgba(0, 204, 205, 0.4));
    transform: translateY(-2px);
}

.footer-tagline {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.footer-description {
    color: var(--silver);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.footer-social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social-icon:hover {
    color: var(--black);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 204, 205, 0.3);
}

/* Footer Column */
.footer-column {
    height: 100%;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.2), rgba(184, 233, 134, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 204, 205, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--silver);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--white);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.contact-value:hover {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: var(--silver);
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links li a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: var(--primary);
}

.footer-bottom-links li a:hover::after {
    width: 100%;
}

/* Footer Background Elements */
.footer-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.footer-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 204, 205, 0.1), transparent);
    animation: floatCircle 20s infinite ease-in-out;
}

.footer-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.footer-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.footer-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

/* ======================
   TEAM MEMBER CARDS
   ====================== */
.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 204, 205, 0.2);
    border-color: var(--primary);
}

.team-photo-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.1), rgba(184, 233, 134, 0.05));
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.3;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--white);
}

.team-designation {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Culture Stats */
.culture-stat {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.culture-stat:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 204, 205, 0.15);
}

/* ======================
   CASE STUDIES PAGE STYLES
   ====================== */

/* Hero Section */
.case-studies-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(16, 24, 32, 0.9));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.case-studies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 204, 205, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 204, 205, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.hero-grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--black), transparent);
}

.case-studies-hero .hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.case-studies-hero .hero-subheadline {
    font-size: 1.25rem;
    color: var(--silver);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Featured Badge */
.featured-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.2), rgba(184, 233, 134, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 24px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-badge i {
    color: var(--accent);
}

/* Glass Card Base */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 204, 205, 0.15);
}

/* Featured Case Section */
.featured-case-section {
    background: linear-gradient(180deg, var(--black) 0%, rgba(0, 204, 205, 0.03) 100%);
}

.featured-case-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.featured-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.challenge-box {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

.intervention-box {
    background: rgba(0, 204, 205, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

.intervention-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intervention-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--silver);
    font-size: 0.95rem;
}

.intervention-list li:last-child {
    margin-bottom: 0;
}

.intervention-list li i {
    color: var(--accent);
    margin-top: 3px;
}

.result-box {
    background: rgba(184, 233, 134, 0.1);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

.text-accent {
    color: var(--accent) !important;
}

.text-silver {
    color: var(--silver) !important;
}

/* Before/After Slider */
.before-after-slider {
    position: relative;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.label-before, .label-after {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
}

.label-before {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.label-after {
    background: rgba(0, 204, 205, 0.2);
    color: var(--primary);
}

.slider-container {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--black);
}

.before-panel, .after-panel {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.before-panel {
    left: 0;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.after-panel {
    right: 0;
    width: 100%;
}

.slider-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
    z-index: 3;
    cursor: ew-resize;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 204, 205, 0.5);
}

/* Dashboard Mockup */
.dashboard-mockup {
    padding: 20px;
    height: 100%;
}

.dashboard-mockup.dull {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.dashboard-mockup.vibrant {
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.15), rgba(184, 233, 134, 0.1));
}

.mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
}

.metric.dull-metric {
    background: rgba(255, 255, 255, 0.05);
}

.metric.vibrant-metric {
    background: rgba(0, 204, 205, 0.15);
    border: 1px solid var(--glass-border);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--silver);
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.chart-placeholder {
    height: 80px;
    border-radius: 8px;
    margin-top: 10px;
}

.grey-chart {
    background: linear-gradient(90deg, #3a3a3a, #2a2a2a);
}

.teal-chart {
    background: linear-gradient(90deg, rgba(0, 204, 205, 0.3), rgba(184, 233, 134, 0.2));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
}

.spike-graph {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100%;
}

.spike-bar {
    width: 20px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
    opacity: 0.6;
}

.spike-bar.highlight {
    background: var(--accent);
    opacity: 1;
    box-shadow: 0 0 10px rgba(184, 233, 134, 0.5);
}

/* Featured Metrics */
.featured-metrics .metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.featured-metrics .metric-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.metric-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.metric-value-large {
    font-size: 1.75rem;
    font-weight: 800;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.metric-label-small {
    font-size: 0.8rem;
    color: var(--silver);
}

/* Industry Cards */
.industry-card {
    height: 100%;
    text-align: center;
    padding: 40px 30px;
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.2), rgba(184, 233, 134, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin: 0 auto 20px;
}

.industry-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--white);
}

.industry-card p {
    color: var(--silver);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.industry-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.industry-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.industry-stat .stat-label {
    font-size: 0.85rem;
    color: var(--silver);
}

/* Metrics Track Cards */
.metric-track-card {
    text-align: center;
    padding: 40px 30px;
    height: 100%;
}

.metric-track-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.2), rgba(184, 233, 134, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 20px;
}

.metric-track-icon.accent {
    background: linear-gradient(135deg, rgba(184, 233, 134, 0.2), rgba(0, 204, 205, 0.1));
    color: var(--accent);
}

.metric-track-icon.success {
    background: linear-gradient(135deg, rgba(39, 201, 63, 0.2), rgba(184, 233, 134, 0.1));
    color: #27c93f;
}

.metric-track-card h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--white);
}

.metric-full-name {
    display: block;
    font-size: 0.85rem;
    color: var(--silver);
    margin-bottom: 15px;
}

.metric-track-card p {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Case Study Cards Grid */
.case-study-card {
    overflow: hidden;
    padding: 0;
    height: 100%;
}

.case-study-image {
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.1), rgba(184, 233, 134, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.case-study-content {
    padding: 25px;
}

.case-study-content h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--white);
}

.case-description {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-metrics {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.case-metric {
    display: flex;
    flex-direction: column;
}

.case-metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.case-metric-label {
    font-size: 0.75rem;
    color: var(--silver);
}

/* Closing Section */
.closing-section {
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.05), rgba(184, 233, 134, 0.03));
}

.closing-card {
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.1), rgba(184, 233, 134, 0.05));
    border: 2px solid var(--glass-border);
}

.closing-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.closing-text {
    font-size: 1.1rem;
    color: var(--silver);
    margin-bottom: 0;
}

/* ======================
   FLOATING SIDEBAR
   ====================== */
.floating-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.floating-sidebar.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 70px;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.btn-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.email-btn {
    background: #e74c3c;
    border-radius: 8px 0 0 0;
}

.email-btn:hover {
    background: #c0392b;
    width: 70px;
}

.call-btn {
    background: #27ae60;
}

.call-btn:hover {
    background: #219a52;
    width: 70px;
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    width: 70px;
}

.social-btn {
    background: #8e44ad;
}

.social-btn:hover {
    background: #7d3c98;
    width: 70px;
}

.youtube-btn {
    background: #ff0000;
    border-radius: 0 0 0 8px;
}

.youtube-btn:hover {
    background: #cc0000;
    width: 70px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 80px;
    width: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
    pointer-events: auto;
}

.whatsapp-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-header {
    background: #075e54;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.popup-info h5 {
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.popup-info .status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.popup-info .status i {
    color: #25d366;
    font-size: 0.5rem;
    margin-right: 4px;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 5px;
}

.popup-body {
    padding: 20px;
    background: #f0f2f5;
    max-height: 350px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.chat-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.message-bubble {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.message-bubble p {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message-time {
    font-size: 0.7rem;
    color: #999;
}

.quick-questions {
    margin-top: 15px;
}

.questions-title {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: #333;
}

.quick-btn:hover {
    background: #f8f9fa;
    border-color: #25d366;
}

.quick-btn i {
    color: #25d366;
}

.popup-footer {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.start-chat-btn:hover {
    background: #128c7e;
    color: white;
}

/* Social Popup */
.social-popup {
    position: fixed;
    bottom: 100px;
    right: 80px;
    width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
    pointer-events: auto;
}

.social-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-popup .popup-header {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    padding: 15px 20px;
}

.social-popup .popup-header h5 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.social-popup .popup-body {
    padding: 15px;
    background: white;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.social-link:hover {
    background: #f8f9fa;
}

.social-link i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
}

.social-link.facebook i {
    background: #1877f2;
}

.social-link.instagram i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.youtube i {
    background: #ff0000;
}

.social-link.linkedin i {
    background: #0a66c2;
}

.social-link span {
    font-weight: 500;
}

/* Responsive - Mobile Floating Sidebar */
@media (max-width: 768px) {
    .floating-sidebar {
        position: fixed !important;
        top: auto !important;
        bottom: 20px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        flex-direction: row !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        z-index: 9999 !important;
    }
    
    .floating-sidebar.show {
        transform: translateX(-50%) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .sidebar-btn {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }
    
    .email-btn {
        border-radius: 8px 0 0 8px;
    }
    
    .social-btn {
        border-radius: 0;
    }
    
    .youtube-btn {
        border-radius: 0 8px 8px 0;
    }
    
    .btn-label {
        display: none;
    }
    
    .whatsapp-popup,
    .social-popup {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 40px) !important;
        max-width: 380px !important;
        bottom: 90px !important;
        top: auto !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 576px) {
    .floating-sidebar {
        position: fixed !important;
        top: auto !important;
        bottom: 15px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        flex-direction: row !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        z-index: 9999 !important;
    }
    
    .floating-sidebar.show {
        transform: translateX(-50%) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .sidebar-btn {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }
    
    .email-btn {
        border-radius: 8px 0 0 8px;
    }
    
    .social-btn {
        border-radius: 0;
    }
    
    .youtube-btn {
        border-radius: 0 8px 8px 0;
    }
    
    .whatsapp-popup,
    .social-popup {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 30px) !important;
        max-width: 350px !important;
        bottom: 85px !important;
        top: auto !important;
        margin: 0 auto !important;
    }
    
    .theme-toggle-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* ======================
   TYPED EFFECT CURSOR
   ====================== */
.typed-cursor {
    display: inline-block;
    color: var(--primary);
    font-weight: 100;
    margin-left: 2px;
    opacity: 1;
    animation: cursorBlink 0.8s infinite;
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* ======================
   POLICY PAGES STYLES
   ====================== */
.policy-page {
    background: linear-gradient(180deg, var(--black) 0%, rgba(0, 204, 205, 0.03) 100%);
}

.policy-card {
    padding: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-content {
    color: var(--silver);
    line-height: 1.8;
}

.policy-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--glass-border);
}

.policy-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 20px;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.policy-list li a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-list li a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .case-studies-hero .hero-headline {
        font-size: 2.5rem;
    }
    
    .case-studies-hero .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .closing-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .closing-text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .closing-card .text-lg-end {
        text-align: center !important;
    }
    
    .case-study-image {
        min-height: 200px;
    }
    
    .policy-card {
        padding: 35px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .case-studies-hero {
        padding: 80px 0 60px;
    }
    
    .case-studies-hero .hero-headline {
        font-size: 2rem;
    }
    
    .glass-card {
        padding: 25px;
    }
    
    .slider-container {
        height: 240px;
    }
    
    .metric-value-large {
        font-size: 1.5rem;
    }
    
    .closing-title {
        font-size: 1.75rem;
    }
    
    .policy-card {
        padding: 25px 20px;
    }
    
    .policy-title {
        font-size: 1.75rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
}