:root {
    --primary-blue: #0A2540;
    --primary-navy: #0D1B2A;
    --secondary-teal: #00A8A8;
    --secondary-cyan: #00C2C2;
    --white: #FFFFFF;
    --light-bg: #F4F8FB;
    --light-blue-bg: #E8F0FE;
    --dark-navy: #0A1A2A;
    --text-dark: #1A2B3C;
    --text-body: #4A5A6A;
    --text-muted: #7A8A9A;
    --border-light: #E8ECF0;
    --shadow-sm: 0 2px 10px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 37, 64, 0.10);
    --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.15);
    --transition-fast: 0.25s ease-out;
    --transition-base: 0.5s ease-out;
    --transition-slow: 0.9s ease-out;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 16px;
    --border-radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    overflow-anchor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-teal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--secondary-teal);
    outline-offset: 3px;
    border-radius: 4px;
}

/* BUTTONS */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.25);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    border: 2px solid var(--white);
    color: var(--primary-blue);
}

.btn-light:hover {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* SECTION HEADINGS */
.section-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-body);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-heading {
    margin-bottom: 3rem;
}

/* TOPBAR */
.topbar {
    background-color: var(--primary-navy);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1030;
    border-bottom: 2px solid var(--secondary-cyan);
    max-height: 60px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.35s ease, opacity 0.25s ease,
                padding 0.35s ease, border-width 0.35s ease;
}

.topbar.hidden {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-width: 0;
    pointer-events: none;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 1.5rem;
}

.topbar-link {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.topbar-link:hover {
    color: var(--white);
}

.topbar-right {
    display: flex;
    gap: 1rem;
}

.topbar-social {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.topbar-social:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* NAVBAR */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: var(--primary-navy);
    transition: all var(--transition-base);
}

.navbar-wrapper.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 0.9rem 0;
    transition: padding var(--transition-base);
    position: relative;
}

.navbar-wrapper.scrolled .navbar {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: var(--white);
    transition: color var(--transition-base);
}

.navbar-wrapper.scrolled .navbar-brand {
    color: var(--primary-blue);
}

.brand-text {
    display: inline-block;
}

.brand-accent {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--secondary-cyan);
    margin-top: -2px;
    font-weight: 600;
}

.navbar-nav {
    gap: 0.25rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-wrapper.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-cyan) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--secondary-cyan);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--white);
}

.navbar-wrapper.scrolled .navbar-toggler {
    color: var(--primary-blue);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--secondary-teal);
    outline-offset: 3px;
    border-radius: 8px;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* HERO SECTION */
.hero {
    min-height: auto;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 50%, #0D3148 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* ============================================
   HEADER / NAVBAR - DROPDOWN STYLES
   ============================================ */

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    min-width: 240px;
    margin-top: 0.75rem;
    border-top: 3px solid var(--secondary-cyan);
}

.dropdown-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 0.7rem 1.25rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
}

.dropdown-item i {
    color: var(--secondary-teal);
    width: 20px;
    text-align: center;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-blue);
    padding-left: 1.5rem;
}

.dropdown-item:hover i {
    color: var(--primary-blue);
    transform: scale(1.2);
}

/* Dropdown toggle arrow */
.dropdown-toggle::after {
    font-size: 0.7rem;
    margin-left: 0.35rem;
    vertical-align: middle;
}

/* Mobile Dropdown */
@media (max-width: 991px) {
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
        margin-top: 0;
        border-top: none;
        background-color: transparent;
    }

    .dropdown-item {
        padding: 0.6rem 0.75rem;
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .dropdown-item:hover {
        background-color: transparent;
        padding-left: 1rem;
        color: var(--secondary-teal);
    }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 37, 64, 0.95) 0%,
        rgba(13, 27, 42, 0.90) 50%,
        rgba(10, 37, 64, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 194, 194, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--secondary-cyan);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-paragraph {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    margin-bottom: 1.75rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual-col {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: 450px;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.4) 0%, transparent 40%);
    border-radius: var(--border-radius);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background-color: var(--white);
    border-radius: 14px;
    padding: 0.7rem 1.1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 3;
    white-space: nowrap;
}

.floating-card strong {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: var(--text-dark);
}

.floating-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background-color: var(--light-blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-teal);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.floating-card-1 {
    top: 15px;
    left: -25px;
    animation: floatCard1 4s ease-in-out infinite;
}

.floating-card-2 {
    top: 45%;
    right: -15px;
    animation: floatCard2 5s ease-in-out infinite;
}

.floating-card-3 {
    bottom: 25px;
    left: 15px;
    animation: floatCard3 6s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatCard2 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

@keyframes floatCard3 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* TRUST SECTION */
.trust-section {
    padding: 3.5rem 0;
    background-color: var(--white);
    position: relative;
    z-index: 5;
}

.trust-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-teal);
}

.trust-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--light-bg);
    position: absolute;
    top: 8px;
    right: 12px;
    transition: color var(--transition-base);
}

.trust-card:hover .trust-number {
    color: rgba(0, 168, 168, 0.15);
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background-color: var(--light-blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-blue);
    font-size: 1.25rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.trust-card:hover .trust-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.trust-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 2;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ABOUT SECTION */
.about-section {
    padding: 4.5rem 0;
    background-color: var(--light-bg);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background-color: var(--secondary-teal);
    border-radius: 20px;
    z-index: -1;
}

.about-content .section-title {
    margin-bottom: 1.25rem;
}

.about-text {
    color: var(--text-body);
    margin-bottom: 1rem;
}

/* WHY US SECTION */
.why-us-section {
    padding: 4.5rem 0;
    background-color: var(--white);
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-cyan));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-teal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: var(--light-blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* PRODUCTS SECTION */
.products-section {
    padding: 4.5rem 0;
    background-color: var(--light-bg);
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.product-image-wrapper {
    overflow: hidden;
    height: 230px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-body {
    padding: 1.5rem;
}

.product-category {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: 0.4rem;
}

.product-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.product-body p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* VALUES SECTION */
.values-section {
    padding: 4.5rem 0;
    background-color: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 194, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.values-section .section-label {
    color: var(--secondary-cyan);
}

.values-section .section-title {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.value-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 1.25rem;
    transition: all var(--transition-base);
}

.value-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-cyan);
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(0, 194, 194, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-cyan);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.value-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* STATS SECTION */
.stats-section {
    padding: 3.5rem 0;
    background-color: var(--light-blue-bg);
}

.stat-card {
    text-align: center;
    padding: 1.75rem 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.stat-card p {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 4.5rem 0;
    background-color: var(--white);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 1rem;
}

.testimonial-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-teal);
    opacity: 0.3;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 550px;
    margin: 0 auto 1.25rem;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.testimonial-company {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: var(--border-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.dot.active {
    background-color: var(--secondary-teal);
    width: 28px;
    border-radius: 5px;
}

/* CTA SECTION */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 60%, #0D3148 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 194, 194, 0.12) 0%, transparent 70%);
    top: -100px;
    left: -80px;
    animation: heroFloat 7s ease-in-out infinite;
}

.cta-shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: heroFloat 9s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 1.75rem;
    font-size: 1rem;
}

/* CONTACT SECTION */
.contact-section {
    padding: 4.5rem 0;
    background-color: var(--white);
}

.contact-info-item {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.75rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--light-blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.contact-info-item a {
    color: var(--text-body);
    font-weight: 500;
}

.contact-info-item a:hover {
    color: var(--secondary-teal);
}

.contact-form {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.contact-form .form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.contact-form .form-control {
    padding: 0.7rem 0.9rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 0.93rem;
    transition: all var(--transition-fast);
    background-color: var(--white);
}

.contact-form .form-control:focus {
    border-color: var(--secondary-teal);
    box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.15);
    outline: none;
}

/* FOOTER */
/* ============================================
   FOOTER - PREMIUM CLEAN DESIGN
   ============================================ */

.footer {
    background: linear-gradient(180deg, #0A1A2A 0%, #081420 100%);
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

/* Subtle top border accent */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, 
        var(--primary-blue), 
        var(--secondary-teal), 
        var(--secondary-cyan)
    );
}

/* Decorative background shapes */
.footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 194, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 1rem;
}

.footer .brand-text {
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.footer-description {
    color: rgba(255, 255, 255, 0.5);
    margin: 1rem 0 1.5rem;
    max-width: 280px;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.7rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--secondary-teal), var(--secondary-cyan));
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 168, 168, 0.3);
    border-color: transparent;
}

/* Footer Headings */
.footer h5 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Underline accent for headings */
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-cyan);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
    font-size: 0.85rem;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-cyan);
    transition: width var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-cyan);
    padding-left: 5px;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Contact List */
.footer-contact li {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
}

.footer-contact li span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact i {
    color: var(--secondary-cyan);
    margin-top: 4px;
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-contact a:hover {
    color: var(--secondary-cyan);
    padding-left: 0;
}

/* Footer Top Spacing */
.footer-top {
    padding-bottom: 3rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    transition: color var(--transition-fast);
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-cyan);
    transition: width var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--secondary-cyan);
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

.footer-credit a {
    color: var(--secondary-cyan);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ============================================
   FOOTER - RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .footer {
        padding-top: 3rem;
    }

    .footer-top {
        padding-bottom: 2rem;
    }

    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer h5 {
        margin-bottom: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.25rem 0;
    }

    .footer-legal {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer {
        padding-top: 2.5rem;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .footer h5 {
        font-size: 0.9rem;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 0.8rem;
    }
}
/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-teal);
    transform: translateY(-5px);
}

/* ANIMATION CLASSES */
[data-animate] {
    opacity: 0;
    transition: all var(--transition-base);
    transition-delay: calc(var(--delay, 0) * 1ms);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-scale"] {
    transform: scale(0.92);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    .floating-card {
        animation: none;
    }

    .hero-bg-shape,
    .cta-bg-shape {
        animation: none;
    }

    .testimonial-track {
        transition: none;
    }
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        height: 420px;
        max-height: 420px;
    }

    .floating-card-1 {
        left: -10px;
    }

    .floating-card-2 {
        right: -10px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white);
        border-radius: var(--border-radius-sm);
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-collapse .nav-link {
        color: var(--text-dark) !important;
        padding: 0.7rem 0.5rem !important;
    }

    .nav-cta {
        margin-top: 0.5rem;
    }

    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-image {
        height: 380px;
        max-height: 380px;
        margin-top: 2rem;
    }

    .floating-card-1 {
        left: 10px;
        top: 10px;
    }

    .floating-card-2 {
        right: 10px;
    }

    .floating-card-3 {
        left: 25px;
        bottom: 15px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-image {
        height: 350px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .topbar-left .topbar-link:last-child {
        display: none;
    }

    .hero {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-image {
        height: 300px;
        max-height: 300px;
    }

    .floating-card {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .floating-card-icon {
        width: 26px;
        height: 26px;
        font-size: 0.78rem;
    }

    .floating-card-1 {
        left: 5px;
        top: 5px;
    }

    .floating-card-2 {
        right: 5px;
    }

    .floating-card-3 {
        left: 12px;
        bottom: 8px;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .section-heading {
        margin-bottom: 1.75rem;
    }

    .about-image {
        height: 280px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.7rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-paragraph {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image {
        height: 250px;
        max-height: 250px;
    }

    .floating-card {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        gap: 0.4rem;
    }

    .floating-card-icon {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .floating-card-1 {
        left: 0;
        top: 5px;
    }

    .floating-card-2 {
        right: 0;
    }

    .floating-card-3 {
        left: 8px;
        bottom: 6px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .trust-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        min-height: 200px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .footer-legal {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   HERO SECTION - PREMIUM UPGRADES
   ============================================ */

.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?w=1000&q=60');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    z-index: 0;
    opacity: 0.45;
}

.hero-highlight {
    color: var(--secondary-cyan);
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-cyan), transparent);
    border-radius: 2px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-trust-item i {
    color: var(--secondary-cyan);
    font-size: 1.1rem;
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.badge-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.floating-card small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

/* ============================================
   TESTIMONIALS - PREMIUM UPGRADES
   ============================================ */

.testimonial-stars {
    margin-bottom: 0.75rem;
}

.testimonial-stars i {
    color: #FFB800;
    font-size: 1rem;
    margin: 0 2px;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author-info .testimonial-author {
    margin-bottom: 0;
    font-size: 1rem;
    text-align: left;
}

.testimonial-author-info .testimonial-company {
    margin-bottom: 0;
    font-size: 0.82rem;
    text-align: left;
}

/* ============================================
   RESPONSIVE HERO FIXES
   ============================================ */

@media (max-width: 991px) {
    .hero {
        background-attachment: scroll;
        padding-top: 80px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.75rem 1rem;
    }

    .badge-number {
        font-size: 1.4rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .hero-trust {
        gap: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-badge {
        display: none;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-trust-item {
        font-size: 0.8rem;
    }
}

/* ============================================
   ABOUT PAGE - SPECIFIC STYLES
   ============================================ */

.page-hero {
    background: linear-gradient(135deg,
        rgba(10, 37, 64, 0.92) 0%,
        rgba(13, 27, 42, 0.88) 50%,
        rgba(10, 37, 64, 0.90) 100%),
        url('https://images.unsplash.com/photo-1579154204601-01588f351e67?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 194, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav a {
    color: var(--secondary-cyan);
    transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
    color: var(--white);
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.breadcrumb-nav .current {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .page-hero {
        background-attachment: scroll;
        padding: 4rem 0 2.5rem;
    }

    .page-hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 3.5rem 0 2.5rem;
    }

    .page-hero-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 575px) {
    .page-hero-title {
        font-size: 1.6rem;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }
}

/* About Intro Section */
.about-intro-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-intro-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.about-intro-accent {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--secondary-teal), var(--secondary-cyan));
    border-radius: 20px;
    z-index: -1;
}

.about-intro-accent-2 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--light-blue-bg);
    border-radius: 20px;
    z-index: -1;
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-experience-badge .exp-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-blue);
    line-height: 1;
}

.about-experience-badge .exp-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-intro-content .section-label {
    margin-bottom: 0.75rem;
}

.about-intro-content .section-title {
    margin-bottom: 1.25rem;
}

.about-intro-content .about-text {
    color: var(--text-body);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.mission-vision-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-cyan));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-teal);
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--light-blue-bg), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-blue);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.mission-vision-card:hover .mission-vision-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    transform: rotate(-5deg);
}

.mission-vision-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.mission-vision-card p {
    color: var(--text-body);
    margin-bottom: 0;
    font-size: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Core Values Section */
.core-values-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.core-value-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.core-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-teal);
}

.core-value-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: var(--light-bg);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color var(--transition-base);
}

.core-value-card:hover .core-value-number {
    color: rgba(0, 168, 168, 0.1);
}

.core-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: var(--light-blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary-blue);
    font-size: 1.3rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.core-value-card:hover .core-value-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.core-value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.core-value-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Approach / Process Section */
.approach-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.approach-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.approach-step:last-child {
    margin-bottom: 0;
}

.approach-step::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 56px;
    bottom: -28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-teal), transparent);
}

.approach-step:last-child::before {
    display: none;
}

.approach-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.approach-step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.approach-step-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .page-hero-title {
        font-size: 2.25rem;
    }

    .about-intro-image img {
        height: 380px;
    }

    .mission-vision-card {
        padding: 2rem 1.5rem;
    }

    .approach-step::before {
        left: 22px;
        top: 50px;
        bottom: -24px;
    }

    .approach-step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 3.5rem 0 2.5rem;
    }

    .page-hero-title {
        font-size: 1.85rem;
    }

    .about-intro-image img {
        height: 300px;
    }

    .about-intro-accent,
    .about-intro-accent-2 {
        display: none;
    }

    .mission-vision-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .core-value-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .page-hero-title {
        font-size: 1.6rem;
    }

    .about-intro-image img {
        height: 250px;
    }

    .about-experience-badge {
        padding: 0.75rem 1rem;
    }

    .about-experience-badge .exp-number {
        font-size: 1.4rem;
    }

    .about-experience-badge .exp-text {
        font-size: 0.7rem;
    }

    .approach-step {
        gap: 1rem;
    }

    .approach-step-number {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .approach-step::before {
        left: 18px;
        top: 40px;
        bottom: -20px;
    }
}

/* ============================================
   CONTACT PAGE - SPECIFIC STYLES
   ============================================ */

.contact-page-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-page-info .section-title {
    margin-bottom: 1rem;
}

.contact-page-text {
    color: var(--text-body);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.contact-info-card:hover {
    border-color: var(--secondary-teal);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.contact-info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--light-blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.contact-info-card:hover .contact-info-card-icon {
    background-color: var(--primary-blue);
    color: var(--white);
}

.contact-info-card .contact-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.contact-info-card .contact-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

.contact-info-card .contact-value a {
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.contact-info-card .contact-value a:hover {
    color: var(--secondary-teal);
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-blue-bg);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.contact-social-links a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form .form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.contact-form .form-control {
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background-color: var(--white);
}

.contact-form .form-control:focus {
    border-color: var(--secondary-teal);
    box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.15);
    outline: none;
}

.contact-form .form-select {
    cursor: pointer;
}

.contact-map-section {
    padding: 3rem 0 5rem;
    background-color: var(--white);
}

.map-placeholder {
    background-color: var(--light-bg);
    border: 2px dashed var(--border-light);
    border-radius: var(--border-radius);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder-content {
    color: var(--text-muted);
}

.map-placeholder-content i {
    font-size: 3rem;
    color: var(--secondary-teal);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.map-placeholder-content p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-muted);
}

/* ============================================
   PRODUCTS MEGA DROPDOWN - PERFECTLY CENTERED
   ============================================ */

.nav-item.dropdown.mega-dropdown-wrapper {
    position: static;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 800px;
    min-width: 0;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--secondary-cyan);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-top: 0;
    background-color: var(--white);
}

.mega-dropdown-header {
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.mega-dropdown-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-teal);
    margin-bottom: 0;
}

.mega-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.25rem 1rem;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    min-width: 0;
    white-space: normal;
}

.mega-item span {
    overflow-wrap: break-word;
    line-height: 1.3;
}

.mega-item i {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: var(--light-blue-bg);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.mega-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-blue);
    padding-left: 1rem;
}

.mega-item:hover i {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.dropdown-toggle::after {
    font-size: 0.7rem;
    margin-left: 0.35rem;
    vertical-align: middle;
}

/* ============================================
   DESKTOP: JS-CONTROLLED HOVER WITH GRACE PERIOD
   ============================================
   IMPORTANT: Ab hover gap fix ke liye JS delay-timer use karte hain.
   CSS sirf .show class ko handle karta hai (jo JS add/remove karega).
   Invisible bridge hover area ko extend karta hai taaki gap na aaye.
*/
@media (min-width: 992px) {
    .dropdown-menu.mega-dropdown {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        pointer-events: none;
    }

    .dropdown-menu.mega-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Invisible bridge - gap ko bridge karta hai */
    .mega-dropdown-wrapper::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 12px;
        z-index: 1021;
    }
}

/* ============================================
   MOBILE RESPONSIVE - MEGA DROPDOWN (ACCORDION)
   ============================================ */
@media (max-width: 991px) {
    .nav-item.dropdown.mega-dropdown-wrapper {
        position: relative;
    }

    .mega-dropdown {
        display: none;
        position: static;
        margin-left: 0;
        margin-right: 0;
        left: auto;
        right: auto;
        width: auto;
        max-width: none;
        border: none;
        border-top: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
        margin-top: 0;
        background-color: transparent;
        border-radius: 0;
        max-height: 55vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mega-dropdown-wrapper.mobile-open .mega-dropdown {
        display: block;
    }

    .mega-dropdown-header {
        display: none;
    }

    .mega-dropdown-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mega-item {
        padding: 0.55rem 0.5rem;
        font-size: 0.9rem;
        color: var(--text-dark);
    }

    .mega-item i {
        width: 26px;
        height: 26px;
        font-size: 0.78rem;
        background-color: transparent;
        color: var(--secondary-teal);
    }

    .mega-item:hover {
        background-color: transparent;
        color: var(--secondary-teal);
        padding-left: 0.75rem;
    }

    .mega-item:hover i {
        background-color: transparent;
        color: var(--secondary-teal);
        transform: none;
    }

    .mega-dropdown-wrapper .dropdown-toggle::after {
        transition: transform 0.25s ease;
        float: right;
    }

    .mega-dropdown-wrapper.mobile-open .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* ============================================
   PRODUCT LISTING PAGE - WITH IMAGES
   ============================================ */

.product-listing-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.product-list-card {
    display: block;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    text-decoration: none !important;
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.product-list-image {
    overflow: hidden;
    height: 200px;
}

.product-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-list-body {
    padding: 1.5rem;
}

.product-list-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.product-list-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.product-list-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-blue);
    transition: all var(--transition-fast);
}

.product-list-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.product-list-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-list-card:hover .product-list-image img {
    transform: scale(1.08);
}

.product-list-card:hover .product-list-body h3 {
    color: var(--secondary-teal);
}

.product-list-card:hover .product-list-link {
    color: var(--secondary-teal);
    gap: 0.6rem;
}

.product-list-card:hover .product-list-link i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .product-list-image {
        height: 180px;
    }

    .product-list-body {
        padding: 1.25rem;
    }
}

@media (max-width: 575px) {
    .product-list-image {
        height: 160px;
    }

    .product-list-body {
        padding: 1rem;
    }

    .product-list-body h3 {
        font-size: 0.95rem;
    }
}