:root {
    --primary-blue: #0891b2;
    --primary-teal: #0d9488;
    --primary-green: #059669;
    --primary-orange: #ea580c;
    --accent-pink: #db2777;
    --accent-purple: #7e22ce;
    --warning-orange: #f59e0b;
    --success-green: #10b981;
    --light-gray: #fdf2d5;
    --dark-gray: #374151;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: #F8F9FA;
}

/* Navigation */
.navbar {
    background: transparent !important;
    backdrop-filter: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
    filter: none;
}

.navbar.scrolled .navbar-brand img {
    filter: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: white !important;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    text-shadow: none;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-pink) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link.active {
    color: var(--accent-pink) !important;
}

.navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar.scrolled .navbar-nav .nav-link::after {
    background-color: var(--primary-blue);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.btn-doctor-login {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .btn-doctor-login {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border: none;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    backdrop-filter: none;
}

.btn-doctor-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .btn-doctor-login:hover {
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    border: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    background-color: #fdf2d5;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    z-index: 3;
}



@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 5;
}

/* Hero Content Overlay */
.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 5;
    padding: 0;
}

.hero-text-content {
    padding-left: 0;
    max-width: 600px;
}

.hero-content-overlay .container {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.hero-content-overlay .row {
    margin-left: 0;
    margin-right: 0;
}

.hero-content-overlay .col-lg-6 {
    padding-left: 0;
    padding-right: 15px;
}

/* Welcome Badge */
.hero-welcome-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 25px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Main Heading */
.hero-main-heading {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Description */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-hero-explore,
.btn-hero-learn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-right: 15px;
}

.btn-hero-explore {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-hero-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    color: white;
    background: var(--primary-teal);
}

.btn-hero-learn {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-learn:hover {
    transform: translateY(-2px);
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-pink));
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: white;
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-orange));
}

/* Brochure Cards */
.brochure-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.brochure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.brochure-card img {
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.brochure-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.overlay-btn {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-green), var(--primary-teal));
    border-radius: 2px;
}

.bg-light-section {
    background-color: #F5F5F5 !important;
    position: relative;
}

.bg-light-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), var(--primary-green), var(--primary-teal), transparent);
}

/* Floating elements for visual interest - disabled */
.floating-element {
    display: none !important;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Decorative Ring Elements */
.ring-decoration {
    position: absolute;
    border: 2px solid rgba(74, 144, 226, 0.35);
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
}

.ring-decoration.ring-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    left: -8%;
    border-color: rgba(74, 144, 226, 0.3);
    animation: float 9s ease-in-out infinite;
}

.ring-decoration.ring-2 {
    width: 120px;
    height: 120px;
    top: 65%;
    right: -2%;
    border-color: rgba(34, 197, 94, 0.35);
    animation: float 7s ease-in-out infinite reverse;
}

.ring-decoration.ring-3 {
    width: 250px;
    height: 250px;
    top: 8%;
    left: 65%;
    border-color: rgba(168, 85, 247, 0.25);
    animation: float 11s ease-in-out infinite;
}

.ring-decoration.ring-4 {
    width: 140px;
    height: 140px;
    bottom: 25%;
    left: 18%;
    border-color: rgba(239, 68, 68, 0.3);
    animation: float 8s ease-in-out infinite reverse;
}

.ring-decoration.ring-5 {
    width: 160px;
    height: 160px;
    top: 45%;
    right: 28%;
    border-color: rgba(245, 158, 11, 0.35);
    animation: float 10s ease-in-out infinite;
}

.ring-decoration.ring-6 {
    width: 200px;
    height: 200px;
    bottom: 35%;
    right: 8%;
    border-color: rgba(20, 184, 166, 0.3);
    animation: float 9s ease-in-out infinite reverse;
}

/* Section-specific ring positioning */
.section-rings {
    position: relative;
    overflow: hidden;
}

.section-rings::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    z-index: 1;
    animation: rotate 60s linear infinite;
}

.section-rings::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
    z-index: 1;
    animation: rotate 45s linear infinite reverse;
}

/* Multi-ring decorations */
.multi-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 10;
    pointer-events: none;
}

.multi-ring::before,
.multi-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
}

.multi-ring::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-color: rgba(74, 144, 226, 0.3);
    animation: float 7s ease-in-out infinite;
}

.multi-ring::after {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-color: rgba(34, 197, 94, 0.4);
    animation: float 9s ease-in-out infinite reverse;
}

/* Content positioning */
.content-above-rings {
    position: relative;
    z-index: 20;
}

/* Ensure cards and content appear above decorations */
.card, .swiper-slide, .section-title {
    position: relative;
    z-index: 15;
}

/* Colorful separator lines */
.colorful-separator {
    height: 2px;
    background: linear-gradient(90deg,
            var(--primary-orange) 0%,
            var(--accent-pink) 16.66%,
            var(--accent-purple) 33.33%,
            var(--primary-blue) 50%,
            var(--primary-teal) 66.66%,
            var(--primary-green) 83.33%,
            var(--primary-orange) 100%);
    width: 100%;
    margin: 0;
    position: relative;
    opacity: 0.8;
}

.colorful-separator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(1px);
    opacity: 0.6;
}

/* Logo to content separator */
.logo-separator {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 10%,
            rgba(255, 255, 255, 0.5) 25%,
            rgba(255, 255, 255, 0.7) 40%,
            rgba(255, 255, 255, 0.5) 55%,
            rgba(255, 255, 255, 0.3) 70%,
            rgba(255, 255, 255, 0.1) 85%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.scrolled .logo-separator {
    background: linear-gradient(90deg,
            transparent 0%,
            var(--primary-orange) 10%,
            var(--accent-pink) 25%,
            var(--accent-purple) 40%,
            var(--primary-blue) 55%,
            var(--primary-teal) 70%,
            var(--primary-green) 85%,
            transparent 100%);
    opacity: 0.6;
}

/* Section separators */
.section-separator {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--primary-orange) 20%,
            var(--accent-pink) 35%,
            var(--accent-purple) 50%,
            var(--primary-blue) 65%,
            var(--primary-teal) 80%,
            transparent 100%);
    margin: 0;
    opacity: 0.4;
}

/* Large hero rings - disabled */
.hero-rings {
    display: none !important;
}

.hero-rings .ring-large {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-rings .ring-large-1 {
    width: 600px;
    height: 600px;
    border: 25px solid var(--primary-orange);
    top: 5%;
    right: 5%;
    animation: rotate 50s linear infinite;
}

.hero-rings .ring-large-2 {
    width: 400px;
    height: 400px;
    border: 18px solid var(--primary-green);
    bottom: 5%;
    left: 5%;
    animation: rotate 40s linear infinite reverse;
}

.hero-rings .ring-large-3 {
    width: 200px;
    height: 200px;
    border: 10px solid var(--accent-purple);
    top: 20%;
    left: 10%;
    animation: rotate 25s linear infinite;
}

/* DNA Animation Styles - disabled */
.dna-container {
    display: none !important;
}

.dna-helix {
    position: relative;
    width: 100%;
    height: 100%;
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    transform-origin: center;
    border-radius: 2px;
}

.strand-1 {
    background: linear-gradient(90deg, transparent 0%, var(--primary-teal) 20%, var(--primary-green) 50%, var(--primary-teal) 80%, transparent 100%);
    animation: dnaRotate1 4s ease-in-out infinite;
}

.strand-2 {
    background: linear-gradient(90deg, transparent 0%, var(--accent-pink) 20%, var(--primary-orange) 50%, var(--accent-pink) 80%, transparent 100%);
    animation: dnaRotate2 4s ease-in-out infinite;
    animation-delay: 2s;
}

.dna-base {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.8;
}

.base-1 {
    background: var(--accent-purple);
    left: 15%;
    top: 20%;
    animation: pulseBase 2s ease-in-out infinite;
}

.base-2 {
    background: var(--primary-green);
    right: 15%;
    top: 30%;
    animation: pulseBase 2s ease-in-out infinite 0.3s;
}

.base-3 {
    background: var(--primary-orange);
    left: 25%;
    bottom: 25%;
    animation: pulseBase 2s ease-in-out infinite 0.6s;
}

.base-4 {
    background: var(--primary-teal);
    right: 25%;
    bottom: 35%;
    animation: pulseBase 2s ease-in-out infinite 0.9s;
}

.base-5 {
    background: var(--accent-pink);
    left: 40%;
    top: 35%;
    animation: pulseBase 2s ease-in-out infinite 1.2s;
}

.base-6 {
    background: var(--warning-orange);
    right: 40%;
    bottom: 20%;
    animation: pulseBase 2s ease-in-out infinite 1.5s;
}

@keyframes dnaRotate1 {

    0%,
    100% {
        transform: translateY(-50%) rotate3d(1, 0, 0, 0deg);
    }

    25% {
        transform: translateY(-50%) rotate3d(1, 0, 0, 15deg);
    }

    50% {
        transform: translateY(-50%) rotate3d(1, 0, 0, 0deg);
    }

    75% {
        transform: translateY(-50%) rotate3d(1, 0, 0, -15deg);
    }
}

@keyframes dnaRotate2 {

    0%,
    100% {
        transform: translateY(-50%) rotate3d(1, 0, 0, 0deg);
    }

    25% {
        transform: translateY(-50%) rotate3d(1, 0, 0, -15deg);
    }

    50% {
        transform: translateY(-50%) rotate3d(1, 0, 0, 0deg);
    }

    75% {
        transform: translateY(-50%) rotate3d(1, 0, 0, 15deg);
    }
}

@keyframes pulseBase {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Enhanced Cell Cards */
.cell-card {
    background: white;
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cell-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    transition: opacity 0.3s ease;
    border-radius: 13px;
}

.brain-cell {
    border-color: var(--primary-blue);
}

.brain-cell::before {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
}

.brain-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.2);
}

.brain-cell:hover::before {
    opacity: 0.15;
}

.blood-cell {
    border-color: var(--accent-pink);
}

.blood-cell::before {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-orange));
}

.blood-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.2);
}

.blood-cell:hover::before {
    opacity: 0.15;
}

.heart-cell {
    border-color: var(--success-green);
}

.heart-cell::before {
    background: linear-gradient(135deg, var(--success-green), var(--primary-green));
}

.heart-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
}

.heart-cell:hover::before {
    opacity: 0.15;
}

.cell-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.brain-cell .cell-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
}

.blood-cell .cell-icon {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-orange));
    color: white;
}

.heart-cell .cell-icon {
    background: linear-gradient(135deg, var(--success-green), var(--primary-green));
    color: white;
}

.cell-icon i {
    font-size: 1.5rem;
}

/* Hero Video Styles */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

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

.video-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.video-controls .btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.video-controls .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Featured Test Cards */
.featured-test-card {
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: white;
    height: 100%;
}

.featured-test-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.test-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 106, 168, 0.95), rgba(15, 106, 168, 0.85));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-test-card:hover .test-overlay {
    opacity: 1;
}

.view-text {
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 18px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.view-text span {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}

.view-line {
    width: 40px;
    height: 2px;
    background: white;
    margin: 0 auto;
}

.featured-test-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: all 0.4s ease;
    filter: brightness(1.03);
}

.featured-test-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.test-info {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.test-info h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.test-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Step Cards */
.step-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: white;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.step-icon {
    margin: 20px 0 15px;
    color: var(--primary-blue);
}

.step-icon i {
    font-size: 2.5rem;
}

.step-card h5 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.courier-badge {
    position: absolute;
    top: 50px;
    right: -30px;
    transform: rotate(45deg);
    background: var(--accent-pink);
    color: white;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Simple Content Slides */
.simple-content-slide {
    padding: 40px 20px;
}

.simple-feature-box {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.simple-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.simple-feature-box h5 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.simple-feature-box p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.family-icons,
.wellness-icons,
.doctor-patient-icons,
.action-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active.carousel-item-start,
.carousel-fade .carousel-item.active.carousel-item-end {
    left: 0;
    transform: translateX(0);
}

.hero-slide {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Full Screen Slide Styles */
.hero-slide.fullscreen {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}

.hero-slide.fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slide.fullscreen .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-image-container:hover .hero-image-overlay {
    opacity: 1;
}

/* Floating Elements Animation */
.floating-elements {
    display: none !important;
}

.float-element {
    display: none !important;
}

.element-1 {
    color: var(--primary-blue);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    color: var(--primary-green);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    color: var(--accent-pink);
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    25% {
        transform: translateY(-10px) scale(1.1);
    }

    50% {
        transform: translateY(-5px) scale(1.05);
    }

    75% {
        transform: translateY(-15px) scale(1.1);
    }
}

/* Tech Stats */
.tech-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Footer Contact Info */
.contact-info-footer {
    color: #6c757d;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-item-footer:hover {
    transform: translateX(3px);
}

.contact-item-footer a:hover {
    color: var(--primary-blue) !important;
}

.company-info h6 {
    color: #ffffff;
    font-weight: 600;
}

.company-info p {
    line-height: 1.4;
}

/* Secondary Button */
.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Resources Section Styles */
#resourcesTab .nav-link {
    background: none;
    border: none;
    border-radius: 25px;
    color: var(--dark-gray);
    font-weight: 500;
    padding: 12px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#resourcesTab .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    transition: left 0.3s ease;
    z-index: -1;
}

#resourcesTab .nav-link:hover,
#resourcesTab .nav-link.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

#resourcesTab .nav-link:hover::before,
#resourcesTab .nav-link.active::before {
    left: 0;
}

.resource-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.resource-card-header {
    /* background: linear-gradient(135deg, var(--light-gray), #f8fafc); */
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.resource-card-header i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.resource-card-header h4 {
    color: var(--dark-gray);
    margin-bottom: 0;
    font-weight: 600;
}

.resource-card-body {
    padding: 20px;
}

.news-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: rgba(30, 58, 138, 0.02);
    border-radius: 10px;
    padding: 15px;
    margin: 0 -15px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.news-meta .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-link h6 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.news-link:hover h6 {
    color: var(--primary-teal);
}

.news-link p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Brochure Download Cards */
.brochure-download-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.brochure-download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brochure-download-card:hover::before {
    opacity: 0.05;
}

.brochure-download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.brochure-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.brochure-icon i {
    font-size: 2rem;
    color: white;
}

.brochure-download-card h5 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.brochure-download-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.brochure-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.btn-download,
.btn-view {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-view {
    background: var(--primary-teal);
}

.btn-download:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.btn-view:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

/* Education Content */
.education-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.education-topics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.topic-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.topic-item:hover {
    background: rgba(30, 58, 138, 0.02);
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.topic-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topic-icon i {
    font-size: 1.2rem;
    color: white;
}

.topic-content h5 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 8px;
}

.topic-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.topic-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.topic-link:hover {
    color: var(--primary-teal);
}

/* Education Sidebar */
.education-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.education-highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.education-highlight h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-item strong {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    display: block;
}

.fact-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* FAQ Styles */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px;
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(13, 148, 136, 0.05));
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.cta-section h4 {
    color: var(--dark-gray);
    font-weight: 600;
}

.cta-section p {
    color: #64748b;
}

.btn-cta-primary,
.btn-cta-secondary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-secondary {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-pink));
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    color: white;
}

.btn-cta-secondary:hover {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

/* News Show More/Less Functionality */
.news-item-hidden {
    display: none;
}

.news-show-more {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}

.btn-show-more {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-show-more:hover {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

/* Clean Hero Section Styles */
.hero-title-section {
    background: transparent;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 5;
}

.hero-title-content {
    text-align: left;
    max-width: 400px;
}

.hero-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-hero-primary {
    background: var(--primary-blue);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-hero-primary:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-hero-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 15px 30px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-hero-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.hero-cards-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 5;
}

.service-cards-container {
    display: flex;
    gap: 40px;
    padding: 40px 30px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.service-card-wrapper {
    flex: 1;
    max-width: 380px;
}

.hero-service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 550px;
}

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

.hero-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.hero-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-service-card:hover .hero-card-overlay {
    opacity: 1;
}

.hero-overlay-content {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.hero-overlay-content i {
    font-size: 2rem;
    color: white;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 4;
}

.floating-dna {
    display: none !important;
}

.floating-circle {
    display: none !important;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 5%;
    animation-delay: 1s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 15%;
    animation-delay: 2s;
}

.genetic-pattern {
    display: none !important;
}

.pattern-1 {
    top: 25%;
    left: 0;
    animation-delay: 0s;
}

.pattern-2 {
    bottom: 35%;
    right: 0;
    animation-delay: 4s;
    transform: rotate(180deg);
}

@keyframes slidePattern {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(200px); opacity: 0; }
}

/* Header Section */
.hero-cards-header {
    text-align: center;
    padding: 30px 20px 20px;
    position: relative;
    z-index: 2;
}

.cards-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.cards-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Enhanced Cards */
.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 15px 15px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.hero-service-card:hover .card-info {
    transform: translateY(0);
}

.card-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.card-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.featured-card {
    transform: scale(1.05);
    z-index: 5;
}

.featured-badge {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-orange));
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(236, 72, 153, 0.5); }
    to { box-shadow: 0 0 20px rgba(236, 72, 153, 0.8); }
}

/* Footer Info Section */
.hero-cards-footer {
    padding: 40px 20px 20px;
    position: relative;
    z-index: 2;
}

.info-item {
    padding: 20px 15px;
    text-align: center;
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.info-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
}

.hero-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}





/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    /* Ring decorations disabled */

    .hero-rings .ring-large {
        transform: scale(0.7);
    }

    .dna-container {
        height: 150px;
    }

    .cell-card {
        padding: 15px 8px;
    }

    .cell-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .cell-icon i {
        font-size: 1.2rem;
    }

    /* Hero Video Responsive */
    .hero-video-content h1 {
        font-size: 2.5rem !important;
    }

    .hero-video-content p {
        font-size: 1.1rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .video-controls {
        flex-direction: column;
        gap: 8px;
    }

    /* Featured Test Cards Mobile */
    .featured-test-card img {
        height: 250px;
    }

    .test-info {
        padding: 15px;
    }

    .test-info h4 {
        font-size: 1rem;
    }

    .test-info p {
        font-size: 0.8rem;
    }

    /* Step Cards Mobile */
    .step-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .step-icon i {
        font-size: 2rem;
    }

    .step-card h5 {
        font-size: 1rem;
    }

    .step-card p {
        font-size: 0.8rem;
    }

    .courier-badge {
        font-size: 0.6rem;
        padding: 3px 25px;
    }

    /* Simple Content Slides Mobile */
    .simple-content-slide {
        padding: 20px 10px;
    }

    .simple-feature-box {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .simple-feature-box h5 {
        font-size: 1rem;
    }

    .simple-feature-box p {
        font-size: 0.8rem;
    }

    .family-icons,
    .wellness-icons,
    .doctor-patient-icons,
    .action-icons {
        gap: 15px;
        margin-bottom: 2rem !important;
    }

    .family-icons i,
    .wellness-icons i,
    .doctor-patient-icons i,
    .action-icons i {
        font-size: 2.5rem !important;
    }

    .float-element {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .btn-hero-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .tech-stats {
        gap: 15px;
    }

    .contact-info {
        gap: 10px;
    }

    .contact-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    /* Resources Section Mobile */
    #resourcesTab {
        flex-wrap: wrap;
        gap: 5px;
    }

    #resourcesTab .nav-link {
        padding: 8px 12px;
        margin: 2px;
        font-size: 0.85rem;
    }

    /* How Dtect Works Section Mobile */
    #howDtectWorksTab {
        flex-wrap: wrap;
        gap: 5px;
    }

    #howDtectWorksTab .nav-link {
        padding: 8px 12px;
        margin: 2px;
        font-size: 0.85rem;
    }

    .resource-card-header {
        padding: 15px;
    }

    .resource-card-header h4 {
        font-size: 1.1rem;
    }

    .resource-card-body {
        padding: 15px;
    }

    .news-item {
        padding: 12px 0;
    }

    .news-link h6 {
        font-size: 0.95rem;
    }

    .news-link p {
        font-size: 0.8rem;
    }

    .brochure-download-card {
        padding: 20px 15px;
    }

    .brochure-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .brochure-icon i {
        font-size: 1.5rem;
    }

    .brochure-download-card h5 {
        font-size: 1rem;
    }

    .brochure-download-card p {
        font-size: 0.8rem;
    }

    .education-content {
        padding: 20px;
    }

    .topic-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .topic-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .topic-icon i {
        font-size: 1rem;
    }

    .education-highlight {
        padding: 20px;
    }

    .fact-item strong {
        font-size: 1.5rem;
    }

    .accordion-button {
        padding: 15px;
        font-size: 0.9rem;
    }

    .accordion-body {
        padding: 15px;
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 20px;
        text-align: center;
    }

    .cta-section h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .news-show-more {
        padding: 15px 0;
    }

    .btn-show-more {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    /* Hero Section Mobile */
    .hero-title-section {
        padding: 40px 30px;
        min-height: auto;
    }

    .hero-title-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-title-underline {
        margin: 0 auto 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-action-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-cards-section {
        min-height: auto;
        padding: 20px 0;
    }

    .service-cards-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .service-card-wrapper {
        max-width: 320px;
        width: 100%;
    }

    .hero-service-card {
        height: 420px;
    }

    /* Mobile adjustments for new elements */
    .hero-cards-header {
        padding: 20px 15px 15px;
    }

    .cards-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .cards-subtitle {
        font-size: 0.9rem;
    }

    .hero-cards-footer {
        padding: 30px 15px 15px;
    }

    .info-item {
        padding: 15px 10px;
        margin-bottom: 20px;
    }

    .info-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .info-item h5 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .info-item p {
        font-size: 0.8rem;
    }

    .floating-dna {
        font-size: 2rem;
    }

    .floating-circle {
        transform: scale(0.7);
    }

    .featured-card {
        transform: none;
    }

    .card-info h4 {
        font-size: 1rem;
    }

    .card-info p {
        font-size: 0.8rem;
    }

    /* Enhanced Hero Mobile Styles */
    .hero-animated-bg {
        opacity: 0.5;
    }
    
    /* Video Background Mobile */
    .hero-background-video {
        min-width: 120%;
        min-height: 120%;
    }
    
    .hero-video-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
    
    /* Hero Content Mobile */
    .hero-content-overlay .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-text-content {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-main-heading {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero-explore,
    .btn-hero-learn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
    
    .particle {
        display: none;
    }
    
    .geometric-shapes .shape {
        transform: scale(0.6);
    }
    
    .hero-badge {
        padding: 6px 15px;
        margin-bottom: 20px;
    }
    
    .hero-badge i {
        font-size: 0.9rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 2.8rem;
    }
    
    .hero-action-buttons {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 25px;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 3px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cards-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .cards-subtitle {
        font-size: 0.9rem;
    }
    
    .overlay-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .overlay-icon {
        font-size: 1.5rem;
    }
    
    .overlay-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .overlay-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .overlay-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .card-features {
        gap: 6px;
        margin-top: 8px;
    }
    
    .feature-tag {
        padding: 3px 6px;
        font-size: 0.6rem;
    }
    
    .enhanced-info {
        padding: 20px 15px;
    }
    
    .info-icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .info-icon-container i {
        font-size: 2rem;
    }
    
    .enhanced-info h5 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .enhanced-info p {
        font-size: 0.8rem;
    }
    
    .dna-strand-animated {
        width: 200px;
        height: 3px;
        opacity: 0.1;
    }
    
    .dna-base-animated {
        width: 8px;
        height: 8px;
    }
    
    .featured-spotlight::before {
        display: none;
    }
    
    .card-glow-effect {
        opacity: 0.3;
    }
}

/* How Dtect Works Carousel Full Section */
#how-it-works.section-rings {
    min-height: auto;
    padding-bottom: 2rem;
    margin: 0;
    display: flex;
    align-items: stretch;
}

#how-it-works .container.content-above-rings {
    height: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    padding: 0;
    max-width: 100vw;
}

#howDtectWorksCarousel {
    flex: 1 1 auto;
    width: 100vw;
    height: 80vh;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

#howDtectWorksCarousel .carousel-inner,
#howDtectWorksCarousel .carousel-item,
#howDtectWorksCarousel img,
#howDtectWorksCarousel video {
    width: 100vw;
    height: 80vh;
    object-fit: contain;
    background: #fdf2d5;
}

#howDtectWorksCarousel .carousel-item>div,
#howDtectWorksCarousel .carousel-item>img {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* More visible carousel controls */
#howDtectWorksCarousel .carousel-control-prev,
#howDtectWorksCarousel .carousel-control-next {
    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 58, 138, 0.85);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    opacity: 1 !important;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border 0.2s;
}

#howDtectWorksCarousel .carousel-control-prev:hover,
#howDtectWorksCarousel .carousel-control-next:hover {
    background: #ff6b35;
    border-color: #fff;
}

#howDtectWorksCarousel .carousel-control-prev-icon,
#howDtectWorksCarousel .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 2.5rem 2.5rem;
    filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 2px #000);
}

/* Custom Carousel Controls for How Dtect Works */
#howDtectWorksCarousel .carousel-control-prev,
#howDtectWorksCarousel .carousel-control-next {
    width: 64px;
    height: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 58, 138, 0.18);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    opacity: 0.5;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s, box-shadow 0.2s;
}

#howDtectWorksCarousel .carousel-control-prev:hover,
#howDtectWorksCarousel .carousel-control-next:hover {
    background: #ff6b35;
    opacity: 1;
    box-shadow: 0 4px 24px 0 #ff6b35cc;
}

#howDtectWorksCarousel .carousel-control-svg {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    fill: #1e3a8a;
    transition: fill 0.2s;
}

#howDtectWorksCarousel .carousel-control-prev:hover .carousel-control-svg,
#howDtectWorksCarousel .carousel-control-next:hover .carousel-control-svg {
    fill: #fff;
}

/* How Dtect Works Tabs - Same Style as Resources */
#howDtectWorksTab.nav-tabs {
    border-bottom: none;
    gap: 0.5rem;
    justify-content: center;
}

#howDtectWorksTab .nav-link {
    background: none;
    border: none;
    border-radius: 25px;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#howDtectWorksTab .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-pink));
    transition: left 0.3s ease;
    z-index: -1;
}

#howDtectWorksTab .nav-link:hover,
#howDtectWorksTab .nav-link:focus,
#howDtectWorksTab .nav-link.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    background: none;
}

#howDtectWorksTab .nav-link:hover::before,
#howDtectWorksTab .nav-link:focus::before,
#howDtectWorksTab .nav-link.active::before {
    left: 0;
}

/* Enhanced Hero Section Styles */

/* Animated Background Elements */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 4;
}

/* Particle System */
.particle-container {
    display: none !important;
}

.particle {
    display: none !important;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    left: 45%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    left: 60%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    width: 14px;
    height: 14px;
    left: 75%;
    animation-delay: 8s;
    animation-duration: 20s;
}

.particle:nth-child(6) {
    width: 9px;
    height: 9px;
    left: 90%;
    animation-delay: 10s;
    animation-duration: 19s;
}

.particle:nth-child(7) {
    width: 7px;
    height: 7px;
    left: 35%;
    animation-delay: 12s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    width: 11px;
    height: 11px;
    left: 55%;
    animation-delay: 14s;
    animation-duration: 21s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* Enhanced DNA Helix Background - disabled */
.dna-helix-bg {
    display: none !important;
}

.dna-strand-animated {
    display: none !important;
}

.strand-1 {
    top: 30%;
    left: 20%;
    animation: dnaStrandRotate 12s ease-in-out infinite;
}

.strand-2 {
    top: 60%;
    right: 15%;
    animation: dnaStrandRotate 12s ease-in-out infinite reverse;
    animation-delay: 6s;
}

.dna-base-animated {
    display: none !important;
}

.base-1 {
    background: var(--primary-blue);
    top: 25%;
    left: 22%;
    animation-delay: 0s;
}

.base-2 {
    background: var(--primary-orange);
    top: 35%;
    left: 40%;
    animation-delay: 1s;
}

.base-3 {
    background: var(--accent-pink);
    top: 55%;
    right: 25%;
    animation-delay: 2s;
}

.base-4 {
    background: var(--primary-green);
    top: 65%;
    right: 40%;
    animation-delay: 1.5s;
}

@keyframes dnaStrandRotate {
    0%, 100% {
        transform: rotate3d(1, 0, 0, 0deg);
    }
    50% {
        transform: rotate3d(1, 0, 0, 20deg);
    }
}

@keyframes dnaBasePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
}

/* Geometric Shapes - disabled */
.geometric-shapes {
    display: none !important;
}

.shape {
    display: none !important;
}

.hexagon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--primary-orange);
    top: 70%;
    right: 20%;
    animation-delay: 3s;
}

.circle {
    width: 30px;
    height: 30px;
    background: var(--accent-pink);
    border-radius: 50%;
    top: 40%;
    left: 5%;
    animation-delay: 6s;
}

.diamond {
    width: 25px;
    height: 25px;
    background: var(--primary-teal);
    transform: rotate(45deg);
    top: 80%;
    right: 10%;
    animation-delay: 9s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Enhanced Hero Title Styles */
.hero-badge {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(13, 148, 136, 0.1));
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: badgeGlow 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.badge-text {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(30, 58, 138, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(30, 58, 138, 0.2);
    }
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.title-line-1 {
    color: var(--dark-gray);
    animation: titleSlideIn 1s ease-out 0.2s both;
}

.title-line-2 {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease-out 0.4s both;
}

.title-line-3 {
    color: var(--primary-orange);
    animation: titleSlideIn 1s ease-out 0.6s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title-underline {
    position: relative;
    height: 4px;
    margin-bottom: 25px;
    overflow: hidden;
}

.underline-animated {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-pink), var(--primary-blue));
    animation: underlineExpand 2s ease-out 0.8s both;
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

/* Enhanced Action Buttons */
.hero-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    padding: 14px 30px;
    border-radius: 12px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover .btn-shine {
    left: 100%;
}

/* Animated Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Enhanced Cards Header */
.hero-cards-header {
    text-align: center;
    padding: 30px 20px 20px;
    position: relative;
    z-index: 2;
}

.cards-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Service Cards */
.card-hover-effect {
    perspective: 1000px;
}

.card-glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-teal), var(--primary-green), var(--primary-orange));
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: gradientRotate 3s linear infinite;
}

.hero-service-card:hover .card-glow-effect {
    opacity: 0.7;
}

.featured-glow {
    background: linear-gradient(45deg, var(--accent-pink), var(--primary-orange), var(--warning-orange), var(--accent-pink));
    opacity: 0.5;
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced Overlay Content */
.overlay-icon-container {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.overlay-icon {
    font-size: 2rem;
    color: white;
}

.overlay-title {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.overlay-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1rem;
}

.overlay-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.overlay-button:hover {
    background: white;
    color: var(--primary-blue);
    transform: scale(1.05);
}

.featured-overlay {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(255, 107, 53, 0.95));
}

.featured-icon {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.featured-button {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Enhanced Card Features */
.card-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.feature-tag {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.feature-tag.featured {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-pink);
    border-color: rgba(236, 72, 153, 0.2);
}

/* Enhanced Pulse Animation */
.pulse-animation {
    animation: cardPulse 2s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

.featured-badge {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-orange));
    animation: featuredGlow 2s ease-in-out infinite alternate;
}

@keyframes featuredGlow {
    from {
        box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
    }
    to {
        box-shadow: 0 0 25px rgba(236, 72, 153, 0.8);
    }
}

/* Enhanced Info Items */
.enhanced-info {
    position: relative;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.enhanced-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-icon-container {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-container i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.enhanced-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.enhanced-info p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Additional Bootstrap-compatible responsive utilities */

/* Mobile-first responsive improvements */
@media (max-width: 575.98px) {
    /* Extra small devices (phones) */
    .navbar-brand img {
        max-height: 40px !important;
    }
    
    .hero-main-heading {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .card-body {
        padding: 1rem !important;
    }
    
    .btn-hero-explore,
    .btn-hero-learn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .hero-welcome-badge span {
        font-size: 0.85rem !important;
    }
    
    /* Make forms more mobile-friendly */
    .form-control,
    .form-select {
        font-size: 1rem !important;
    }
    
    /* Improve card spacing on mobile */
    .card h6 {
        font-size: 0.9rem !important;
    }
    
    .card-text {
        font-size: 0.8rem !important;
    }
    
    /* Better mobile navigation */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .navbar-nav .nav-link {
        color: var(--dark-gray) !important;
        text-shadow: none !important;
        padding: 0.75rem 1rem !important;
        border-radius: 0.375rem;
        margin: 0.25rem 0 !important;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(var(--primary-blue), 0.1) !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    /* Small devices (landscape phones) */
    .hero-main-heading {
        font-size: 2.5rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    /* Medium devices (tablets) */
    .hero-main-heading {
        font-size: 3rem !important;
    }
    
    .section-title {
        font-size: 2.25rem !important;
    }
}

/* Enhanced hover effects for touch devices */
@media (hover: hover) {
    .card-hover-effect:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
        transition: all 0.3s ease;
    }
    
    .btn:hover {
        transform: translateY(-2px);
        transition: all 0.2s ease;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 767.98px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .form-check-input {
        width: 1.25em;
        height: 1.25em;
    }
    
    .form-check-label {
        padding-left: 0.5rem;
    }
}

/* Improve video responsiveness */
.hero-background-video {
    min-width: 100%;
    min-height: 100%;
}

@media (max-width: 767.98px) {
    .hero-background-video {
        object-position: center center;
    }
}

/* Better responsive spacing */
.section-rings {
    position: relative;
}

@media (max-width: 991.98px) {
    .multi-ring {
        display: none !important;
    }
}

/* Responsive container improvements */
@media (max-width: 575.98px) {
    .container-fluid.container-xxl {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Improve form layout on mobile */
@media (max-width: 767.98px) {
    .hero-cta-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .form-check {
        margin-bottom: 1rem;
    }
    
    .input-group-lg > .form-control,
    .input-group-lg > .form-select {
        font-size: 1rem;
    }
}

/* Enhanced accessibility for mobile */
@media (max-width: 767.98px) {
    /* Increase text contrast */
    .text-muted {
        color: #666 !important;
    }
    
    /* Better focus indicators */
    .form-control:focus,
    .form-select:focus {
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        border-color: #86b7fe;
    }
    
    /* Improve button visibility */
    .btn-outline-secondary {
        border-width: 2px;
    }
}

/* Utility classes for responsive display */
.object-fit-cover {
    object-fit: cover !important;
}

.object-fit-contain {
    object-fit: contain !important;
}

.object-fit-fill {
    object-fit: fill !important;
}

/* Responsive text utilities */
@media (max-width: 575.98px) {
    .fs-md-5 {
        font-size: 1rem !important;
    }
    
    .fs-md-4 {
        font-size: 1.125rem !important;
    }
    
    .display-md-4 {
        font-size: 2rem !important;
    }
    
    .display-md-3 {
        font-size: 2.5rem !important;
    }
}

/* Replace white with a softer tone */
body {
    background-color: #F8F9FA;
}

.bg-light-section {
    background-color: #F5F5F5 !important;
}

.text-white {
    color: #F8F9FA !important;
}

.bg-white {
    background-color: #F8F9FA !important;
}

/* Adjust form and card styles */
.form-control {
    background-color: #FFFFFF;
    border-color: #E9ECEF;
}

.card {
    background-color: #F8F9FA;
    border-color: #E9ECEF;
}

/* Adjust text colors for readability */
.text-light {
    color: #495057 !important;
}

.text-white {
    color: #F8F9FA !important;
}

