@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* =============================================
   CSS VARIABLES & ROOT CONFIGURATION
   ============================================= */
:root {
    /* Primary Colors */
    --primary-blue: #c52e23;
    --dark-blue: #a12519;
    --light-blue: #FEE8E7;

    /* Secondary Colors */
    --secondary-blue: #4874af;
    --secondary-dark: #3a5f8f;
    --secondary-light: #EAF3FF;

    /* Text Colors */
    --text-dark: #1E293B;
    --paragraph: #5F6B7A;
    --border-color: #E7EEF8;
    --white: #FFFFFF;
    --background: #F8FBFF;

    /* Additional Accent Colors */
    --green: #10B981;
    --green-light: #ECFDF5;
    --purple: #7C3AED;
    --purple-light: #F3EEFF;
    --orange: #F59E0B;
    --orange-light: #FFFBEB;
    --teal: #0891B2;
    --teal-light: #ECFEFF;
    --red: #EF4444;
    --red-light: #FEF2F2;
    --indigo: #4F46E5;
    --indigo-light: #EEF2FF;

    /* Shadows */
    --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-button: 0 10px 25px rgba(11, 87, 208, 0.20);
    --shadow-navbar: 0 2px 15px rgba(0, 0, 0, 0.05);
    --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-button: 10px;
    --radius-card: 18px;
    --radius-stats-bar: 22px;

    /* Transitions */
    --transition: all 0.3s ease;

    /* Font */
    --font-family: 'Poppins', sans-serif;
    --font-heading: "Nunito", sans-serif;
}

/* =============================================
   GLOBAL STYLES & RESETS
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Global Heading Font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

/* Utility: Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Utility: Max Container Width */
.container {
    max-width: 1400px;
}

/* =============================================
   BOOTSTRAP OVERRIDES
   ============================================= */
.text-primary-blue {
    color: var(--primary-blue) !important;
}

.bg-primary-blue {
    background-color: var(--primary-blue) !important;
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */
.section-tag {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.section-description {
    font-size: 17px;
    color: var(--paragraph);
    line-height: 1.8;
    max-width: 560px;
}

/* =============================================
   NAVBAR / HEADER
   ============================================= */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.custom-navbar {
    height: 110px;
    box-shadow: var(--shadow-navbar);
    padding: 0;
    transition: var(--transition);
    background: var(--white);
    display: flex;
    align-items: center;
}

.custom-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.custom-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header Logo Image */
.header-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* Logo Icon Wrapper (Footer) */
.logo-icon-wrapper {
    width: 42px;
    height: 42px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-blue);
}

.logo-tag {
    font-size: 10px;
    font-weight: 600;
    color: var(--paragraph);
}

/* Navbar Nav */
.custom-navbar .navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Navbar Links */
.custom-navbar .navbar-nav .nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 14px;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.custom-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: var(--primary-blue);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

.custom-navbar .navbar-nav .nav-link:hover::after,
.custom-navbar .navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown-toggle.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.custom-navbar .dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    padding: 10px;
    margin-top: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.custom-navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Dropdown Fix */
@media (max-width: 991.98px) {
    .custom-navbar .dropdown-menu {
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 24px;
        margin-top: 0;
        min-width: auto;
        background: transparent;
        display: none;
    }

    .custom-navbar .dropdown-menu.show {
        display: block;
    }

    .custom-navbar .dropdown-item {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 6px;
        color: var(--paragraph);
        text-align: left;
    }

    .custom-navbar .dropdown-item:hover {
        background: var(--light-blue);
        color: var(--primary-blue);
    }

    .custom-navbar .nav-link {
        padding: 12px 16px;
        text-align: left;
    }

    .custom-navbar .navbar-nav .nav-link::after {
        display: none !important;
    }
}

.custom-navbar .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.custom-navbar .dropdown-item:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

/* CTA Buttons */
.btn-nav-login {
    font-size: 13px;
    font-weight: 500;
    border-width: 1.5px;
    padding: 2px 10px;
    border-radius: var(--radius-button);
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav-login:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

/* Header Profile Dropdown */
.header-profile-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-profile-btn:hover {
    opacity: 0.85;
}

.header-profile-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
    flex-shrink: 0;
}

.header-profile-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-profile-dropdown {
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    padding: 8px 0;
    z-index: 1200;
}

.header-profile-dropdown .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    transition: background 0.2s;
}

.header-profile-dropdown .dropdown-item:hover {
    background: #f0f4ff;
}

.header-profile-dropdown .dropdown-divider {
    margin: 4px 0;
}

.btn-nav-join {
    font-size: 13px;
    font-weight: 500;
    padding: 0 20px;
    border-radius: var(--radius-button);
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c52e23 0%, #e8453a 50%, #c52e23 100%);
    background-size: 200% 200%;
    color: var(--white);
    border: none;
    transition: all 0.4s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    animation: btnShine 3s ease-in-out infinite;
}

.btn-nav-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-nav-join:hover::before {
    left: 100%;
}

.btn-nav-join:hover {
    background: linear-gradient(135deg, #a8241b 0%, #c52e23 50%, #a8241b 100%);
    color: var(--white);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 18px rgba(197, 46, 35, 0.45);
}

@keyframes btnShine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.custom-navbar {
    height: 80px;
    box-shadow: var(--shadow-navbar);
    padding: 0;
    transition: var(--transition);
    background: var(--white);
}

.custom-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo-icon-wrapper {
    width: 42px;
    height: 42px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-blue);
}

.logo-tag {
    font-size: 10px;
    font-weight: 600;
    color: var(--paragraph);
}

/* Navbar Links */
.custom-navbar .navbar-nav .nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 14px;
    position: relative;
    transition: var(--transition);
}

.custom-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: var(--primary-blue);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

.custom-navbar .navbar-nav .nav-link:hover::after,
.custom-navbar .navbar-nav .nav-link.active::after {
    width: 60%;
}

/* CTA Buttons */
.btn-nav-login {
    font-size: 13px;
    font-weight: 500;
    border-width: 1.5px;
    padding: 0px 10px;
    border-radius: var(--radius-button);
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav-login:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.btn-nav-join {
    font-size: 13px;
    font-weight: 500;
    padding: 0 20px;
    border-radius: var(--radius-button);
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c52e23 0%, #e8453a 50%, #c52e23 100%);
    background-size: 200% 200%;
    color: var(--white);
    border: none;
    transition: all 0.4s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    animation: btnShine 3s ease-in-out infinite;
}

.btn-nav-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-nav-join:hover::before {
    left: 100%;
}

.btn-nav-join:hover {
    background: linear-gradient(135deg, #a8241b 0%, #c52e23 50%, #a8241b 100%);
    color: var(--white);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 18px rgba(197, 46, 35, 0.45);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    padding-top: 110px;
    min-height: 560px;
    background: var(--background);
    position: relative;
    overflow-x: hidden;
}

/* Background Decorations */
.hero-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient-circle {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(11, 87, 208, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-hex-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(11, 87, 208, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(11, 87, 208, 0.04) 0%, transparent 50%);
}

.hero-heartbeat-line {
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: auto;
}

/* Floating Plus Icons */
.floating-plus {
    position: absolute;
    color: var(--primary-blue);
    opacity: 0.05;
    font-size: 24px;
    animation: floatPlus 6s ease-in-out infinite;
}

.plus-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    font-size: 20px;
}

.plus-2 {
    top: 30%;
    left: 20%;
    animation-delay: 1.5s;
    font-size: 16px;
}

.plus-3 {
    top: 70%;
    left: 10%;
    animation-delay: 3s;
    font-size: 28px;
}

.plus-4 {
    top: 20%;
    right: 35%;
    animation-delay: 2s;
    font-size: 18px;
}

.plus-5 {
    bottom: 25%;
    left: 30%;
    animation-delay: 4s;
    font-size: 22px;
}

@keyframes floatPlus {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(45deg);
    }
}

/* Hero Content Column */
.hero-content-col {
    padding: 40px 0;
    z-index: 2;
    position: relative;
}

.hero-hex-pattern {
    display: none;
}

.hero-heartbeat-line {
    display: none;
}

/* Floating Plus Icons */
.floating-plus {
    display: none;
}

/* Hero Content Column */
.hero-content-col {
    padding: 40px 0;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--paragraph);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Feature List */
.hero-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.hero-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 14px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-button);
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.btn-hero-secondary {
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-button);
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Image Column */
.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    height: 480px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Doctor Background Circle */
.doctor-bg-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(11, 87, 208, 0.10) 0%, rgba(11, 87, 208, 0.02) 60%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Doctor Image */
.doctor-image-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: start;
}

.doctor-image {
    height: 480px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
    border-radius: 10px;
}

/* Hero Image Column */
.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Doctor Background Circle */
.doctor-bg-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(11, 87, 208, 0.10) 0%, rgba(11, 87, 208, 0.02) 60%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Doctor Image */
.doctor-image-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: start;
}

.doctor-image {
    height: 480px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

font-size: 16px;
font-weight: 600;
padding: 16px 36px;
border-radius: var(--radius-button);
height: 56px;
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--primary-blue);
color: var(--white);
border: 2px solid var(--primary-blue);
transition: var(--transition);
white-space: nowrap;
}

.btn-hero-primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(11, 87, 208, 0.30);
}

.btn-hero-secondary {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--radius-button);
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(11, 87, 208, 0.30);
}

/* Hero Image Column */
.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    height: 480px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Doctor Background Circle */
.doctor-bg-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(11, 87, 208, 0.10) 0%, rgba(11, 87, 208, 0.02) 60%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Doctor Image */
.doctor-image-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: start;
}

.doctor-image {
    height: 480px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

/* Floating Statistics Cards */
.floating-stats-cards {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 3;
}

.floating-stat-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    animation: fadeInRight 0.6s ease forwards;
    opacity: 0;
    transform: translateX(30px);
    min-width: 220px;
    border: 1px solid rgba(231, 238, 248, 0.5);
}

.floating-stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.floating-stat-card:nth-child(2) {
    animation-delay: 0.35s;
}

.floating-stat-card:nth-child(3) {
    animation-delay: 0.5s;
}

.floating-stat-card:nth-child(4) {
    animation-delay: 0.65s;
}

.floating-stat-card:hover {
    transform: translateX(-6px);
    box-shadow: var(--shadow-card-hover);
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}

.stat-card-icon:hover {
    transform: scale(1.1);
}

.stat-icon-blue {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.stat-icon-blue-light {
    background: var(--secondary-light);
    color: var(--secondary-blue);
}

.stat-icon-green {
    background: var(--green-light);
    color: var(--green);
}

.stat-icon-blue-dark {
    background: var(--purple-light);
    color: var(--purple);
}

.stat-card-content {
    line-height: 1.3;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--paragraph);
    margin: 0;
}

/* =============================================
   SUBPAGE HERO SECTION (About, Leadership, Vision)
   ============================================= */
.subpage-hero .hero-section {
    min-height: auto;
    padding: 50px 0 40px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.subpage-hero .hero-section .min-vh-hero {
    min-height: auto;
}

.subpage-hero .hero-section .doctor-image {
    height: 300px;
}

.subpage-hero .hero-section .doctor-bg-circle {
    width: 280px;
    height: 280px;
}

.subpage-hero .hero-section .floating-stats-cards {
    gap: 10px;
}

.subpage-hero .hero-section .floating-stat-card {
    padding: 12px 14px;
    min-width: 180px;
}

.subpage-hero .hero-section .stat-card-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 18px;
}

.subpage-hero .hero-section .stat-number {
    font-size: 16px;
}

.subpage-hero .hero-section .stat-label {
    font-size: 11px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

.breadcrumb-item.active {
    color: #000;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #000;
}

/* =============================================
   BOTTOM STATISTICS BAR
   ============================================= */
.stats-bar-section {
    margin-top: -25px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.stats-bar-card {
    background: var(--white);
    border-radius: var(--radius-stats-bar);
    box-shadow: var(--shadow-card);
    padding: 20px 10px;
    border: 1px solid rgba(231, 238, 248, 0.5);
}

.stat-bar-item {
    text-align: center;
    padding: 12px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-bar-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.stat-bar-icon:hover {
    transform: scale(1.1);
}

.stat-bar-icon-blue {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.stat-bar-icon-indigo {
    background: var(--indigo-light);
    color: var(--indigo);
}

.stat-bar-icon-green {
    background: var(--green-light);
    color: var(--green);
}

.stat-bar-icon-purple {
    background: var(--purple-light);
    color: var(--purple);
}

.stat-bar-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.stat-bar-label {
    font-size: 14px;
    color: var(--paragraph);
    font-weight: 400;
    margin: 0;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 16px;
    padding: 24px 30px;
    text-align: center;
    box-shadow: var(--shadow-button);
}

.exp-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.exp-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--light-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    transition: var(--transition);
}

.about-feature-item:hover .about-feature-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.about-feature-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-feature-item p {
    font-size: 15px;
    color: var(--paragraph);
    margin: 0;
}

.btn-read-more {
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-button);
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    transition: var(--transition);
}

.btn-read-more:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-button);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
    background: var(--background);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 36px 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon-blue {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.service-icon-green {
    background: var(--green-light);
    color: var(--green);
}

.service-icon-purple {
    background: var(--purple-light);
    color: var(--purple);
}

.service-icon-orange {
    background: var(--orange-light);
    color: var(--orange);
}

.service-icon-teal {
    background: var(--teal-light);
    color: var(--teal);
}

.service-icon-red {
    background: var(--red-light);
    color: var(--red);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--paragraph);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--dark-blue);
    gap: 6px;
}

/* =============================================
   WHY JOIN TNPDA SECTION
   ============================================= */
.why-join-section {
    background: #FFFFFF;
    padding: 30px 0;
}

.why-join-header {
    margin-bottom: 55px;
}

.why-join-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 10px;
}

.why-join-underline {
    display: inline-block;
    width: 55px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50px;
}

.why-join-grid {
    gap: 0px;
}

.why-join-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px 8px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-join-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border-color: #EDF2F7;
}

/* Icon Circles */
.why-join-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: transform 0.35s ease;
}

.why-join-card:hover .why-join-icon-circle {
    transform: scale(1.08);
}

.why-join-icon-blue {
    background: #EAF3FF;
    color: var(--primary-blue);
}

.why-join-icon-green {
    background: #ECFDF5;
    color: #10B981;
}

.why-join-icon-orange {
    background: #FFFBEB;
    color: #F59E0B;
}

.why-join-icon-purple {
    background: #F3EEFF;
    color: #7C3AED;
}

.why-join-icon-teal {
    background: #ECFEFF;
    color: #0891B2;
}

.why-join-icon-pink {
    background: #FDF2F8;
    color: #EC4899;
}

.why-join-card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.why-join-card-desc {
    font-size: 16px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.8;
    margin: 0;
}

/* =============================================
   MEMBERSHIP PROCESS SECTION
   ============================================= */
.membership-process-section {
    background: #FFFFFF;
    padding: 30px 0;
}

.membership-process-header {
    margin-bottom: 30px;
}

.membership-process-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 16px;
}

.membership-process-underline {
    display: inline-block;
    width: 55px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50px;
}

/* Process Steps Wrapper */
.process-steps-wrapper {
    overflow: hidden;
    padding-bottom: 10px;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

/* Individual Process Step */
.process-step {
    text-align: center;
    padding: 0 8px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 160px;
    position: relative;
}

.process-step-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 12px;
    position: relative;
    z-index: 2;
    transition: transform 0.35s ease;
}

.process-step:hover .process-step-icon-circle {
    transform: scale(1.08);
}

/* Step Colors */
.process-step-blue {
    background: #EAF3FF;
    color: var(--primary-blue);
}

.process-step-green {
    background: #ECFDF5;
    color: #10B981;
}

.process-step-orange {
    background: #FFFBEB;
    color: #F59E0B;
}

.process-step-purple {
    background: #F3EEFF;
    color: #7C3AED;
}

.process-step-teal {
    background: #ECFEFF;
    color: #0891B2;
}

.process-step-royal-blue {
    background: #EEF2FF;
    color: #4338CA;
}

/* Step Number Badge */
.process-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: -14px;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
}

.process-step-num-blue {
    background: var(--primary-blue);
}

.process-step-num-green {
    background: #10B981;
}

.process-step-num-orange {
    background: #F59E0B;
}

.process-step-num-purple {
    background: #7C3AED;
}

.process-step-num-teal {
    background: #0891B2;
}

.process-step-num-royal-blue {
    background: #4338CA;
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 6px;
}

.process-step-desc {
    font-size: 13px;
    font-weight: 400;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

/* Connector Lines */
.process-connector {
    display: flex;
    align-items: center;
    padding-top: 26px;
    min-width: 60px;
    flex-shrink: 0;
}

.process-connector-line {
    flex: 1;
    height: 0;
    border-top: 2px dashed #CBD5E1;
}

.process-connector-arrow {
    color: #94A3B8;
    font-size: 18px;
    margin-left: -2px;
}

/* Fade Up Animation for Process Steps */
.process-step {
    opacity: 0;
    transform: translateY(20px);
    animation: processFadeUp 0.5s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(3) {
    animation-delay: 0.2s;
}

.process-step:nth-child(5) {
    animation-delay: 0.3s;
}

.process-step:nth-child(7) {
    animation-delay: 0.4s;
}

.process-step:nth-child(9) {
    animation-delay: 0.5s;
}

.process-step:nth-child(11) {
    animation-delay: 0.6s;
}

@keyframes processFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   CERTIFICATE VERIFICATION SECTION
   ============================================= */
.cert-verification-section {
    background: #F8FBFF;
    padding: 30px 0;
}

.cert-verification-panel {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, var(--primary-blue), #1F6BFF);
    border-radius: 20px;
    min-height: 130px;
    overflow: hidden;
}

/* Left Side */
.cert-verification-left {
    flex: 0 0 35%;
    max-width: 35%;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cert-verification-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cert-verification-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Right Side */
.cert-verification-right {
    flex: 0 0 65%;
    max-width: 65%;
    padding: 25px;
    display: flex;
    align-items: stretch;
}

.cert-verification-form-card {
    background: #FFFFFF;
    border-radius: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Tabs */
.cert-tabs {
    border-bottom: 2px solid #E5EDF8;
    padding: 0 25px;
    margin: 0;
    display: flex;
    gap: 0;
}

.cert-tabs .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    padding: 14px 18px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: transparent;
}

.cert-tabs .nav-link:hover {
    color: var(--primary-blue);
}

.cert-tabs .nav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    font-weight: 600;
    background: transparent;
}

/* Tab Content */
.cert-tab-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Input Group */
.cert-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
}

.cert-input-wrapper {
    flex: 1;
    position: relative;
}

.cert-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 18px;
}

.cert-input {
    width: 100%;
    height: 52px;
    border: 2px solid #E5EDF8;
    border-radius: 10px;
    padding: 0 16px 0 48px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1E293B;
    transition: all 0.3s ease;
    outline: none;
}

.cert-input::placeholder {
    color: #94A3B8;
}

.cert-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.1);
}

/* Verify Button */
.cert-verify-btn {
    height: 52px;
    padding: 0 28px;
    background: var(--primary-blue);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cert-verify-btn:hover {
    background: var(--dark-blue);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 87, 208, 0.3);
}

.cert-verify-btn-full {
    width: 100%;
    justify-content: center;
}

/* QR Content */
.cert-qr-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cert-qr-placeholder {
    width: 100%;
    height: 120px;
    border: 2px dashed #E5EDF8;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #94A3B8;
}

.cert-qr-placeholder i {
    font-size: 36px;
}

.cert-qr-placeholder p {
    font-size: 13px;
    margin: 0;
    text-align: center;
}

/* =============================================
   INFO CARDS SECTION (NEWS, TESTIMONIAL, APP)
   ============================================= */
.info-cards-section {
    background: #F8FBFF;
    padding: 0 0 90px;
}

.info-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

/* Card Header */
.info-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.info-card-header-col {
    margin-bottom: 24px;
}

.info-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

.info-card-view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.info-card-view-all:hover {
    color: var(--dark-blue);
}

.info-card-underline {
    display: inline-block;
    width: 45px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 50px;
    margin-top: 10px;
}

/* =============================================
   NEWS LIST
   ============================================= */
.news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #E5EDF8;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item-image {
    width: 80px;
    height: 60px;
    min-width: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    flex: 1;
    min-width: 0;
}

.news-item-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
    line-height: 1.3;
}

.news-item-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #64748B;
}

.news-item-meta i {
    font-size: 11px;
}

/* Outline Button */
.cert-outline-btn {
    height: 48px;
    padding: 0 24px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.cert-outline-btn:hover {
    background: var(--primary-blue);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 87, 208, 0.25);
}

.cert-outline-btn-full {
    width: 100%;
}

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial-carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.testimonial-track {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    width: 100%;
    animation: testimonialFade 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes testimonialFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    width: 100%;
    border: 1px solid #E5EDF8;
}

.testimonial-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-doctor-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    border: 3px solid #EAF3FF;
}

.testimonial-doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.testimonial-stars i {
    color: #F59E0B;
    font-size: 14px;
}

.testimonial-quote-icon {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 40px;
    color: #EAF3FF;
    line-height: 1;
}

.testimonial-quote-icon i {
    display: block;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #E5EDF8;
    padding-top: 16px;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 2px;
}

.testimonial-designation {
    font-size: 13px;
    color: #64748B;
    margin: 0;
}

/* Carousel Indicators */
.testimonial-indicators {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #E5EDF8;
    padding: 0;
    transition: all 0.3s ease;
}

.testimonial-indicators button.active {
    background: var(--primary-blue);
    width: 28px;
    border-radius: 5px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: var(--white);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    position: relative;
    z-index: 2;
}

.btn-white {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: var(--radius-button);
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* =============================================
   FOOTER
   ============================================= */
.footer-section {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    padding: 60px 0 7px;
    color: #FFFFFF;
}

/* Footer Main Row */
.footer-main-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.footer-main-row>div {
    flex: 1 1 0;
    min-width: 0;
}

@media (max-width: 991.98px) {
    .footer-main-row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-main-row>div {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .footer-col-about {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .footer-main-row {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 28px;
    }

    .footer-main-row>div {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

.footer-main-row .footer-col-about,
.footer-main-row .footer-col-links,
.footer-main-row .footer-col-contact {
    flex: 0 0 calc(21% - 23px);
    max-width: calc(25% - 23px);
}

/* Footer Brand / Logo */
.footer-logo-wrapper {
    display: inline-block;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 14px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Footer Description */
.footer-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 20px;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Footer Column Title */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-blue);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-col-title:hover::after {
    width: 50px;
}

/* Footer Link List */
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list li a {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link-list li a:hover {
    color: #FFFFFF;
    padding-left: 6px;
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    font-size: 18px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-top: 35px;
    margin-bottom: 20px;
}

/* Footer Bottom Row */
.footer-bottom-row {
    padding-bottom: 5px;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.60);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-bottom-links a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.footer-bottom-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.40);
}

.footer-credit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.50);
    margin-top: 8px;
    text-align: center;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-credit a:hover {
    color: #fff;
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-button);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* =============================================
   MIN-HEIGHT HERO UTILITY
   ============================================= */
.min-vh-hero {
    min-height: calc(560px - 110px);
}

@media (max-width: 991.98px) {
    .min-vh-hero {
        min-height: auto;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* =============================================
   STAT BAR DESKTOP DIVIDERS
   ============================================= */
@media (min-width: 992px) {
    .stat-bar-item {
        border-right: 1px solid var(--border-color);
    }

    .stats-bar-card .row>div:last-child .stat-bar-item {
        border-right: none;
    }

}

@media(max-width:768px) {

    .footer-main-row .footer-col-about,
    .footer-main-row .footer-col-links,
    .footer-main-row .footer-col-contact {
        flex: 0 0 calc(21% - 23px);
        max-width: calc(100% - 23px) !important;
    }
}