
.container {
    max-width: 100% !important;
    padding-left: 40px;
    padding-right: 40px;
}

@media (min-width: 1920px) {
    .container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 2560px) {
    .container {
        padding-left: 120px;
        padding-right: 120px;
    }
}



/* Expand container for large screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1700px;
    }
}

/* Ultra wide (TV / 4K) */
@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
}

/* Improve spacing for large screens */
@media (min-width: 1920px) {
    body {
        font-size: 17px;
    }

    .navbar-nav .nav-link {
        font-size: 17px;
        margin: 0 18px;
    }

    .carousel-caption h1 {
        font-size: 4rem;
    }

    .carousel-caption p {
        font-size: 1.5rem;
    }
}





    /* 1. Remove Blank Space & Global Fixes */
    :root {
        --premium-purple: #5A2D82;
        --hover-purple: #472266;
        --soft-purple: #f3ecfa;
    }

body {
    overflow-x: hidden;
}

    
	/* UNIVERSAL FONT SYSTEM */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
}

/* Apply everywhere (force consistency) */
* {
    font-family: 'Poppins', sans-serif;
}

/* Headings hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Paragraph */
p {
    font-size: 15px;
    line-height: 1.6;
}

/* Small text */
small, .small {
    font-size: 16px;
}



h1, h2, h3 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

.navbar-nav .nav-link {
    font-weight: 500;
}
	
	
    .bg-purple { background: #5A2D82; }
    .text-purple { color: #5A2D82; }

    .btn-purple {
        background: #5A2D82;
        color: #fff;
        border-radius: 30px;
        padding: 10px 25px;
    }

    .btn-purple:hover {
        background: #472066;
        color: #fff;
    }

    .navbar-nav .nav-link {
        font-weight: 500;
        margin-right: 15px;
    }

    .hero {
        height: 90vh;
    }

    .card-hover:hover {
        transform: translateY(-8px);
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .section-title {
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cta-section {
        background: linear-gradient(45deg, #5A2D82, #7B4DB2);
        color: white;
    }

	
	
/* 1. Navbar Adjustments */
.navbar-brand {
    padding-left: 0; /* Ensures it stays to the far left */
}

.brand-text {
    font-size: 20px;
    line-height: 1.1;
    color: #5a2d82;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: left; /* Shift text alignment to left */
}

/* 2. Slider Logo Styling */
.logo-on-slider {
    position: absolute;
    top: 10px; /* Adjust based on where you want it on the slider */
    left: 20px;
    z-index: 10;
}

.logo-container {
    background: #ffffff; /* White background */
    padding: 8px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: inline-block;
}

.logo-container img {
    height: 150px; /* Adjust size as needed */
    width: auto;
    display: block;
}

/* Clean up your old logo CSS to prevent conflicts */
.navbar-brand img {
    display: none; /* Hide the logo inside the navbar since it's now on the slider */
}



    /* 3. Navigation Links Fix */
    .navbar-nav .nav-link {
        font-size: 15px;
        font-weight: 500;
        color: #333 !important;
        margin: 0 12px;
        /* Adjusted padding to make room for the arrow */
        padding: 25px 15px 25px 0 !important; 
        position: relative;
        display: flex;
        align-items: center;
    }

    /* 4. PREMIUM ARROW (FIX) */
    /* This replaces the default bootstrap arrow with a cleaner version */
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 8px;
        vertical-align: middle;
        content: "";
        /* Custom Chevron Shape */
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-bottom: 0;
        border-left: 0.35em solid transparent;
        transition: transform 0.3s ease;
        color: var(--premium-purple);
    }

    /* Rotate arrow when open */
    .show.dropdown-toggle::after {
        transform: rotate(180deg);
    }

 
    
    /* Underline effect adjustment to not clash with arrow */
    .navbar-nav .nav-link::after {
        content: "";
        width: 0;
        height: 2px;
        background: var(--premium-purple);
        position: absolute;
        bottom: 20px;
        left: 0;
        transition: width 0.3s ease;
    }

  /* ===== PREMIUM SMOOTH DROPDOWN ===== */

/* Dropdown base */
.dropdown-menu {
    display: block !important;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
        height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;

    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 0 10px;
}

/* Active state */
.dropdown-menu.active {
    opacity: 1;
    padding: 10px;
}


.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    margin-top: 0;
}

.dropdown-menu {
    transform: translateY(5px);
}

.dropdown-menu.active {
    transform: translateY(0);
}

    @keyframes slideUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .dropdown-item {
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 500;
        color: #444;
    }

    .dropdown-item:hover {
        background: var(--soft-purple);
        color: var(--premium-purple);
        padding-left: 25px; /* Slight slide effect on hover */
    }
	
	
	/* Hide the default Bootstrap triangle */
.dropdown-toggle::after {
    display: none !important;
}

/* Add FontAwesome Chevron */
.dropdown-toggle::before {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078"; /* Chevron Down */
    font-size: 10px;
    margin-left: 8px;
    color: #5A2D82;
    transition: transform 0.3s;
    order: 2; /* Ensures it stays after the text */
}

.dropdown-toggle.show::before {
    transform: rotate(180deg);
}

.dropdown-toggle {
    display: flex !important;
    align-items: center;
}


/* ===== LIFEFORCE STYLE MENU ===== */

.lifeforce-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;

    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);

    display: block !important;

    height: 0;
    overflow: hidden;

    opacity: 0;

    transition: 
        height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;

    padding: 0;
}

/* Header */
.dropdown-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

/* Items */
.lifeforce-menu .dropdown-item {
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
    transition: 
    height 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

.lifeforce-menu .dropdown-item:last-child {
    border-bottom: none;
}

.lifeforce-menu .dropdown-item:hover {
    background: #f7f3ff;
    padding-left: 22px;
}

/* Active */
.lifeforce-menu.active {
    opacity: 1;
    padding-bottom: 10px;
}



/* Soft blinking glow */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(90,45,130,0.4); }
    50% { box-shadow: 0 0 20px rgba(123,77,178,0.8); }
    100% { box-shadow: 0 0 0 rgba(90,45,130,0.4); }
}

.btn-purple {
    animation: pulseGlow 2s infinite;
}


/* SAFFRON PULSE BUTTON WITH LIGHTNING EFFECT */
.btn-purple, .btn-cta-slider {
    background: linear-gradient(45deg, #FF9933, #FFB366);
    color: #040404 !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden; /* Vital for the lightning effect */
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
    display: inline-block;
    text-decoration: none;
}

/* Lightning/Shine Streak Animation */
.btn-purple::after, .btn-cta-slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: lightningShine 3s infinite;
}

@keyframes lightningShine {
    0% { left: -100%; }
    20% { left: 130%; } /* Fast sweep */
    100% { left: 130%; } /* Pause before next sweep */
}

/* Continuous Pulse Glow */
@keyframes saffronPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 153, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0); }
}

.btn-purple, .btn-cta-slider {
    animation: saffronPulse 2s infinite;
}

.btn-purple:hover, .btn-cta-slider:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, #ff8c1a, #FF9933);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.6);
}



/* --- PREMIUM HERO SLIDER EFFECTS --- */
.hero {
    height: 65vh; /* Forced Height */
    overflow: hidden;
    position: relative;
}

.hero .carousel-inner, 
.hero .carousel-item {
    height: 65vh;
}

.hero .carousel-item img {
    height: 65vh;
    width: 100%;
    object-fit: cover; /* Prevents image stretching */
  
}



/* Caption Positioning & Premium Box */
.carousel-caption {
    top: 50% !important;
    bottom: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    z-index: 10;
}

.caption-content {
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(-30px);
    transition: 0.8s ease-out 0.3s;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease-out 0.5s;
}

.btn-cta-slider {
    background: #5A2D82;
    color: #fff !important;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    opacity: 0;
    transition: 0.8s ease-out 0.7s, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Trigger Animations when slide is active */
.active .carousel-caption h1,
.active .carousel-caption p,
.active .btn-cta-slider {
    opacity: 1;
    transform: translateY(0);
}

.btn-cta-slider:hover {
    transform: translateY(-3px) scale(1.05);
    background: #472066;
    box-shadow: 0 15px 30px rgba(90, 45, 130, 0.4);
}


.bg-purple {
    background: #5A2D82;
}


/* 

COUNTER

*/

/* COMPACT COUNTER SECTION */
.counter-section {
    padding: 50px 0; /* Reduced from 90px */
    background: #fdfdfd; 
    color: #333;
    overflow: hidden;
}

.counter-box {
    padding: 20px 15px; /* Reduced vertical padding from 40px to 20px */
    border-radius: 15px;
    background: #ffffff; 
    transition: all 0.4s ease;
    
    /* Saffron inner shadow effect */
    box-shadow: 
        inset 0 0 12px rgba(255, 153, 51, 0.12), 
        0 5px 20px rgba(0, 0, 0, 0.05); 
    
    border: 1px solid rgba(255, 153, 51, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px; /* Ensures all cards stay uniform even with shorter height */
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 
        inset 0 0 20px rgba(255, 153, 51, 0.25), 
        0 10px 25px rgba(255, 153, 51, 0.1);
}

/* Adjusted sizes for smaller height */
.counter-box i {
    font-size: 30px; /* Reduced from 40px */
    margin-bottom: 10px;
    color: #FF9933; 
}

.counter {
    font-size: 50px; /* Reduced from 44px */
    font-weight: 700;
    color: #5A2D82; 
    line-height: 1.2;
}

.counter-box p {
    color: #666;
    font-size: 13px; /* Slightly smaller text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
    margin-bottom: 0;
}

/* Animations remain the same but cleaner */
.counter-box.active-glow .counter {
    animation: glowPulse 1.5s infinite;
}

@keyframes glowPulse {
    0% { color: #5A2D82; }
    50% { color: #FF9933; }
    100% { color: #5A2D82; }
}

/*
DISEAS
*/


/* ULTRA PREMIUM DISEASE SECTION */
.disease-section {
    /* Extra light orange shade background */
    background: #FFD580; 
    padding: 10px 0;
}

.disease-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.disease-card-premium {
    /* Off-white background */
    background: #fdfdfd; 
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 15px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.disease-card-premium i {
    font-size: 32px;
    color: #5A2D82; /* Imperial Purple */
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.disease-card-premium h5 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

/* Button style (Hidden by default) */
.view-details-btn {
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #FF9933;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Hover State */
.disease-card-premium:hover {
    transform: translateY(-8px);
    /* Change box background color on hover */
    background: #ffffff; 
    border-color: rgba(255, 153, 51, 0.4);
    box-shadow: 0 12px 30px rgba(255, 153, 51, 0.15);
}

.disease-card-premium:hover i {
    color: #FF9933; /* Shifts to Saffron on hover */
    transform: scale(1.1);
}

.disease-card-premium:hover .view-details-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect for the button itself */
.view-details-btn:hover {
    background-color: #e68a2e;
    color: #fff;
}

/* Section Subtitle Decoration */
.title-underline {
    width: 60px;
    height: 3px;
    background: #FF9933;
    margin: 15px auto;
    border-radius: 2px;
}



/*
VIDEO
*/

/* TESTIMONIAL CAROUSEL CONTROLS */
#testimonialCarousel {
    position: relative;
    padding-bottom: 20px;
}

.testimonial-arrow {
    background: #ffffff;
    color: #5A2D82; /* Purple Icon */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    font-size: 18px;
}

.testimonial-arrow:hover {
    background: #FF9933; /* Saffron on Hover */
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

/* Positioning the arrows outside the video grid slightly */
.carousel-control-prev {
    left: -20px;
    opacity: 1;
}

.carousel-control-next {
    right: -20px;
    opacity: 1;
}

.video-box {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.video-box:hover {
    transform: scale(1.02);
}

.video-box iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
}

/* Ensure controls are visible on light background */
.carousel-control-prev-icon, .carousel-control-next-icon {
    display: none; /* We are using FontAwesome instead */
}



/* SUBSCRIBE BUTTON WITH LIGHTNING & PULSE */
.btn-subscribe {
    background: linear-gradient(45deg, #FF0000, #FF9933); /* YouTube Red to Saffron */
    color: #040404 !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: saffronPulse 2s infinite; /* Reusing your pulse animation */
}

/* Lightning Streak for Subscribe Button */
.btn-subscribe::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: lightningShine 2.5s infinite;
}

.btn-subscribe:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #cc0000, #ff8c1a);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.btn-subscribe i {
    font-size: 16px;
}


/*
CTA

*/

.cta-big {
    padding: 100px 0;
    background: linear-gradient(135deg, #7B4DB2, #5A2D82);
}



@media (min-width: 1920px) {

    /* Base body text */
    body {
        font-size: 18px;
    }

    /* Headings */
    h1 { font-size: 4.2rem; }
    h2 { font-size: 3.2rem; }
    h3 { font-size: 2.6rem; }
    h4 { font-size: 2.2rem; }
    h5 { font-size: 1.8rem; }
    h6 { font-size: 1.5rem; }

    /* Paragraphs */
    p {
        font-size: 18px;
        line-height: 1.8;
    }

    /* Navbar */
    .navbar-nav .nav-link {
        font-size: 18px;
    }

    /* Buttons */
    .btn, .btn-purple {
        font-size: 16px;
        padding: 12px 30px;
    }

    /* Hero text */
    .carousel-caption h1 {
        font-size: 4.5rem;
    }

    .carousel-caption p {
        font-size: 1.6rem;
    }

    /* Counter */
    .counter {
        font-size: 56px;
    }

    .counter-box p {
        font-size: 18px;
    }

    /* Section spacing */
    section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.navbar-nav .nav-link {
    font-size: clamp(16px, 0.8vw, 22px);
	font-weight:700;
}



.process-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #FFF9F2, #fff);
    position: relative;
    overflow: hidden;
}

/* Heading */
.process-section .section-title {
    font-size: 40px;
    font-weight: 800;
    color: #5A2D82;
}

.process-section .subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Premium Connecting Line */
@media (min-width: 768px) {
    .process-row {
        position: relative;
    }
    .process-row::before {
        content: '';
        position: absolute;
        top: 38%;
        left: 8%;
        right: 8%;
        height: 3px;
        background: linear-gradient(90deg, transparent, #ffaa52, transparent);
        z-index: 1;
    }
}

/* Card */
.process-box {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 170, 82, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    padding: 35px 25px;
    border-radius: 22px;
    transition: all 0.4s ease;
}

/* Hover Premium Effect */
.process-box:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #ffaa52;
    box-shadow: 0 20px 50px rgba(255, 170, 82, 0.2);
}

/* Icon */
.process-icon-circle {
    width: 75px;
    height: 75px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #5A2D82;
    font-size: 28px;
    transition: all 0.5s ease;
    border: 1px solid #eee;
}

.process-box:hover .process-icon-circle {
    background: linear-gradient(135deg, #ffaa52, #ff8c42);
    color: #fff;
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(255,170,82,0.4);
}

/* Step Tag */
.process-step-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffaa52, #ff8c42);
    color: #fff;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Text */
.process-box h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

.process-btn {
    position: relative;
    display: inline-block;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    color: #ffaa52;
    text-decoration: none;
    border: 1px solid rgba(255,170,82,0.5);
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Smooth background fill effect */
.process-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #ffaa52, #ff8c42);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 30px;
}

/* Hover effect */
.process-btn:hover::before {
    width: 100%;
}

.process-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,170,82,0.35);
}

/* Click (active) feedback */
.process-btn:active {
    transform: scale(0.96);
    box-shadow: 0 4px 10px rgba(255,170,82,0.2);
}


.process-btn i {
    transition: transform 0.3s ease;
}

.process-btn:hover i {
    transform: translateX(4px);
}


/* Ultra smooth feel */
.process-btn,
.process-btn::before {
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Large Screens Optimization */
@media (min-width: 1920px) {
    .process-section {
        padding: 140px 0;
    }
    .process-box {
        padding: 45px 30px;
    }
    .process-section .section-title {
        font-size: 50px;
    }
}




* Base icon sizing */
.top-bar-icon {
    font-size: 1.1rem; /* Slightly larger than text */
    vertical-align: middle;
}

.social-icon {
    font-size: 1.3rem; /* Noticeably larger icons */
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Specific scaling for 1920px resolution and above */
@media (min-width: 1920px) {
    .top-bar-icon {
        font-size: 1.3rem;
    }
    .social-icon {
        font-size: 1.6rem;
    }
    /* Optional: slightly increase the text size for ultra-wide screens */
    .py-2 {
        font-size: 17px !important;
    }
}

/* Mobile adjustments to prevent crowding */
@media (max-width: 768px) {
    .social-icon {
        font-size: 1.1rem;
    }
    .top-bar-icon {
        font-size: 1rem;
    }
}


.cta-premium {
    position: relative;
    padding: 60px 0; /* Reduced from 120px to remove unwanted vertical space */
    background: url('./images/cta-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(225 160 95) 0%, rgb(36 46 10 / 70%) 100%);
    z-index: 1;
}

/* 2. Optimized Content Card Padding */
.cta-content-card {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 30px; /* Tightened internal padding */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px; /* Slightly sharper for premium feel */
}

/* 3. Typography Margin Reset */
.premium-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 15px; /* Reduced margin */
    letter-spacing: -1px;
}

.premium-headline span {
    color: #ffaa52;
}

.premium-subheading {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 300;
    /* Margin controlled via Bootstrap 'mb-4' in HTML */
}

/* 4. Button Refinements */
.cta-button-group {
    display: flex;
    gap: 15px; /* Tightened gap between buttons */
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: #ffaa52;
    color: #fff;
    padding: 14px 30px; /* Slightly more compact padding */
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-premium-outline {
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* 5. Scalability for 1920px+ */
@media (min-width: 1920px) {
    .cta-premium { padding: 80px 0; }
    .premium-headline { font-size: 4rem; }
    .cta-content-card { max-width: 1000px; padding: 60px; }
}

@media (max-width: 768px) {
    .cta-premium { padding: 40px 15px; }
    .premium-headline { font-size: 2rem; }
    .cta-button-group { flex-direction: column; width: 100%; }
    .btn-premium-primary, .btn-premium-outline { width: 100%; text-align: center; }
}




.premium-footer {
    background: linear-gradient(135deg, #2c1a47, #5A2D82);
    color: rgba(255,255,255,0.85);
    padding: 80px 0 30px;
    position: relative;
}

/* Subtle Glow Overlay */
.premium-footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,170,82,0.15), transparent);
    filter: blur(80px);
}

/* Headings */
.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Text */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-contact {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

/* Premium hover underline */
.footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #ffaa52;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social Icons */
.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: all 0.4s ease;
}

/* Smooth hover */
.footer-social-icons a:hover {
    background: linear-gradient(135deg, #ffaa52, #ff8c42);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255,170,82,0.3);
}

/* Divider */
.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

/* Bottom */
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffaa52;
}

/* Large Screens */
@media (min-width: 1920px) {
    .premium-footer {
        padding: 120px 0 40px;
    }
    .footer-heading {
        font-size: 18px;
    }
}





/* Hover Effect for all Nav Links */
.navbar-nav .nav-link {
    padding: 8px 10px !important; /* Adds space for the background box */
    border-radius: 5px; /* Smooth rounded corners */
    transition: all 0.3s ease;
    color: #5a2d82; /* Your theme purple */
    font-weight: 500;
}

/* Mouse Over (Hover) Effect */
.navbar-nav .nav-link:hover {
    background-color: #5a2d82; /* Purple background */
    color: #ffffff !important; /* White text on hover */
}

/* Active Menu Selection */
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link.active {
    background-color: #5a2d82;
    color: #ffffff !important;
}

/* Ensure Dropdown items also have a hover effect */
.lifeforce-menu .dropdown-item:hover {
    background-color: #5a2d82;
    color: #fff;
}

/* Adjust dropdown toggle arrow color on hover */
.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
    border-top-color: #fff;
}




.container {
    max-width: 100% !important;
    padding-left: 40px;
    padding-right: 40px;
}

@media (min-width: 1920px) {
    .container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 2560px) {
    .container {
        padding-left: 120px;
        padding-right: 120px;
    }
}



/* Expand container for large screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1700px;
    }
}

/* Ultra wide (TV / 4K) */
@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
}

/* Improve spacing for large screens */
@media (min-width: 1920px) {
    body {
        font-size: 17px;
    }

    .navbar-nav .nav-link {
        font-size: 17px;
        margin: 0 18px;
    }

    .carousel-caption h1 {
        font-size: 4rem;
    }

    .carousel-caption p {
        font-size: 1.5rem;
    }
}





    /* 1. Remove Blank Space & Global Fixes */
    :root {
        --premium-purple: #5A2D82;
        --hover-purple: #472266;
        --soft-purple: #f3ecfa;
    }

body {
    overflow-x: hidden;
}

    
	/* UNIVERSAL FONT SYSTEM */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
}

/* Apply everywhere (force consistency) */
* {
    font-family: 'Poppins', sans-serif;
}

/* Headings hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Paragraph */
p {
    font-size: 15px;
    line-height: 1.6;
}

/* Small text */
small, .small {
    font-size: 16px;
}



h1, h2, h3 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

.navbar-nav .nav-link {
    font-weight: 500;
}
	
	
    .bg-purple { background: #5A2D82; }
    .text-purple { color: #5A2D82; }

    .btn-purple {
        background: #5A2D82;
        color: #fff;
        border-radius: 30px;
        padding: 10px 25px;
    }

    .btn-purple:hover {
        background: #472066;
        color: #fff;
    }

    .navbar-nav .nav-link {
        font-weight: 500;
        margin-right: 15px;
    }

    .hero {
        height: 90vh;
    }

    .card-hover:hover {
        transform: translateY(-8px);
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .section-title {
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cta-section {
        background: linear-gradient(45deg, #5A2D82, #7B4DB2);
        color: white;
    }

	
	
/* 1. Navbar Adjustments */
.navbar-brand {
    padding-left: 0; /* Ensures it stays to the far left */
}

.brand-text {
    font-size: 20px;
    line-height: 1.1;
    color: #5a2d82;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: left; /* Shift text alignment to left */
}

/* 2. Slider Logo Styling */
.logo-on-slider {
    position: absolute;
    top: 10px; /* Adjust based on where you want it on the slider */
    left: 20px;
    z-index: 10;
}

.logo-container {
    background: #ffffff; /* White background */
    padding: 8px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: inline-block;
}

.logo-container img {
    height: 150px; /* Adjust size as needed */
    width: auto;
    display: block;
}

/* Clean up your old logo CSS to prevent conflicts */
.navbar-brand img {
    display: none; /* Hide the logo inside the navbar since it's now on the slider */
}



    /* 3. Navigation Links Fix */
    .navbar-nav .nav-link {
        font-size: 15px;
        font-weight: 500;
        color: #333 !important;
        margin: 0 12px;
        /* Adjusted padding to make room for the arrow */
        padding: 25px 15px 25px 0 !important; 
        position: relative;
        display: flex;
        align-items: center;
    }

    /* 4. PREMIUM ARROW (FIX) */
    /* This replaces the default bootstrap arrow with a cleaner version */
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 8px;
        vertical-align: middle;
        content: "";
        /* Custom Chevron Shape */
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-bottom: 0;
        border-left: 0.35em solid transparent;
        transition: transform 0.3s ease;
        color: var(--premium-purple);
    }

    /* Rotate arrow when open */
    .show.dropdown-toggle::after {
        transform: rotate(180deg);
    }

 
    
    /* Underline effect adjustment to not clash with arrow */
    .navbar-nav .nav-link::after {
        content: "";
        width: 0;
        height: 2px;
        background: var(--premium-purple);
        position: absolute;
        bottom: 20px;
        left: 0;
        transition: width 0.3s ease;
    }

  /* ===== PREMIUM SMOOTH DROPDOWN ===== */

/* Dropdown base */
.dropdown-menu {
    display: block !important;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
        height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;

    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 0 10px;
}

/* Active state */
.dropdown-menu.active {
    opacity: 1;
    padding: 10px;
}


.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    margin-top: 0;
}

.dropdown-menu {
    transform: translateY(5px);
}

.dropdown-menu.active {
    transform: translateY(0);
}

    @keyframes slideUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .dropdown-item {
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 500;
        color: #444;
    }

    .dropdown-item:hover {
        background: var(--soft-purple);
        color: var(--premium-purple);
        padding-left: 25px; /* Slight slide effect on hover */
    }
	
	
	/* Hide the default Bootstrap triangle */
.dropdown-toggle::after {
    display: none !important;
}

/* Add FontAwesome Chevron */
.dropdown-toggle::before {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078"; /* Chevron Down */
    font-size: 10px;
    margin-left: 8px;
    color: #5A2D82;
    transition: transform 0.3s;
    order: 2; /* Ensures it stays after the text */
}

.dropdown-toggle.show::before {
    transform: rotate(180deg);
}

.dropdown-toggle {
    display: flex !important;
    align-items: center;
}


/* ===== LIFEFORCE STYLE MENU ===== */

.lifeforce-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;

    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);

    display: block !important;

    height: 0;
    overflow: hidden;

    opacity: 0;

    transition: 
        height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;

    padding: 0;
}

/* Header */
.dropdown-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

/* Items */
.lifeforce-menu .dropdown-item {
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
    transition: 
    height 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

.lifeforce-menu .dropdown-item:last-child {
    border-bottom: none;
}

.lifeforce-menu .dropdown-item:hover {
    background: #f7f3ff;
    padding-left: 22px;
}

/* Active */
.lifeforce-menu.active {
    opacity: 1;
    padding-bottom: 10px;
}



/* Soft blinking glow */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(90,45,130,0.4); }
    50% { box-shadow: 0 0 20px rgba(123,77,178,0.8); }
    100% { box-shadow: 0 0 0 rgba(90,45,130,0.4); }
}

.btn-purple {
    animation: pulseGlow 2s infinite;
}


/* SAFFRON PULSE BUTTON WITH LIGHTNING EFFECT */
.btn-purple, .btn-cta-slider {
    background: linear-gradient(45deg, #FF9933, #FFB366);
    color: #040404 !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden; /* Vital for the lightning effect */
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
    display: inline-block;
    text-decoration: none;
}

/* Lightning/Shine Streak Animation */
.btn-purple::after, .btn-cta-slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: lightningShine 3s infinite;
}

@keyframes lightningShine {
    0% { left: -100%; }
    20% { left: 130%; } /* Fast sweep */
    100% { left: 130%; } /* Pause before next sweep */
}

/* Continuous Pulse Glow */
@keyframes saffronPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 153, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0); }
}

.btn-purple, .btn-cta-slider {
    animation: saffronPulse 2s infinite;
}

.btn-purple:hover, .btn-cta-slider:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, #ff8c1a, #FF9933);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.6);
}



/* --- PREMIUM HERO SLIDER EFFECTS --- */
.hero {
    height: 65vh; /* Forced Height */
    overflow: hidden;
    position: relative;
}




/* Caption Positioning & Premium Box */
.carousel-caption {
    top: 50% !important;
    bottom: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    z-index: 10;
}

.caption-content {
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(-30px);
    transition: 0.8s ease-out 0.3s;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease-out 0.5s;
}

.btn-cta-slider {
    background: #5A2D82;
    color: #fff !important;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    opacity: 0;
    transition: 0.8s ease-out 0.7s, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Trigger Animations when slide is active */
.active .carousel-caption h1,
.active .carousel-caption p,
.active .btn-cta-slider {
    opacity: 1;
    transform: translateY(0);
}

.btn-cta-slider:hover {
    transform: translateY(-3px) scale(1.05);
    background: #472066;
    box-shadow: 0 15px 30px rgba(90, 45, 130, 0.4);
}


.bg-purple {
    background: #5A2D82;
}




/*
VIDEO
*/

/* TESTIMONIAL CAROUSEL CONTROLS */
#testimonialCarousel {
    position: relative;
    padding-bottom: 20px;
}

.testimonial-arrow {
    background: #ffffff;
    color: #5A2D82; /* Purple Icon */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    font-size: 18px;
}

.testimonial-arrow:hover {
    background: #FF9933; /* Saffron on Hover */
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

/* Positioning the arrows outside the video grid slightly */
.carousel-control-prev {
    left: -20px;
    opacity: 1;
}

.carousel-control-next {
    right: -20px;
    opacity: 1;
}

.video-box {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.video-box:hover {
    transform: scale(1.02);
}

.video-box iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
}

/* Ensure controls are visible on light background */
.carousel-control-prev-icon, .carousel-control-next-icon {
    display: none; /* We are using FontAwesome instead */
}



/* SUBSCRIBE BUTTON WITH LIGHTNING & PULSE */
.btn-subscribe {
    background: linear-gradient(45deg, #FF0000, #FF9933); /* YouTube Red to Saffron */
    color: #040404 !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: saffronPulse 2s infinite; /* Reusing your pulse animation */
}

/* Lightning Streak for Subscribe Button */
.btn-subscribe::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: lightningShine 2.5s infinite;
}

.btn-subscribe:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #cc0000, #ff8c1a);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.btn-subscribe i {
    font-size: 16px;
}


/*
CTA

*/

.cta-big {
    padding: 100px 0;
    background: linear-gradient(135deg, #7B4DB2, #5A2D82);
}



@media (min-width: 1920px) {

    /* Base body text */
    body {
        font-size: 18px;
    }

    /* Headings */
    h1 { font-size: 4.2rem; }
    h2 { font-size: 3.2rem; }
    h3 { font-size: 2.6rem; }
    h4 { font-size: 2.2rem; }
    h5 { font-size: 1.8rem; }
    h6 { font-size: 1.5rem; }

    /* Paragraphs */
    p {
        font-size: 18px;
        line-height: 1.8;
    }

    /* Navbar */
    .navbar-nav .nav-link {
        font-size: 18px;
    }

    /* Buttons */
    .btn, .btn-purple {
        font-size: 16px;
        padding: 12px 30px;
    }

    /* Hero text */
    .carousel-caption h1 {
        font-size: 4.5rem;
    }

    .carousel-caption p {
        font-size: 1.6rem;
    }

    /* Counter */
    .counter {
        font-size: 56px;
    }

    .counter-box p {
        font-size: 18px;
    }

    /* Section spacing */
    section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.navbar-nav .nav-link {
    font-size: clamp(16px, 0.8vw, 22px);
	font-weight:700;
}




* Base icon sizing */
.top-bar-icon {
    font-size: 1.1rem; /* Slightly larger than text */
    vertical-align: middle;
}

.social-icon {
    font-size: 1.3rem; /* Noticeably larger icons */
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Specific scaling for 1920px resolution and above */
@media (min-width: 1920px) {
    .top-bar-icon {
        font-size: 1.3rem;
    }
    .social-icon {
        font-size: 1.6rem;
    }
    /* Optional: slightly increase the text size for ultra-wide screens */
    .py-2 {
        font-size: 17px !important;
    }
}

/* Mobile adjustments to prevent crowding */
@media (max-width: 768px) {
    .social-icon {
        font-size: 1.1rem;
    }
    .top-bar-icon {
        font-size: 1rem;
    }
}


.cta-premium {
    position: relative;
    padding: 60px 0; /* Reduced from 120px to remove unwanted vertical space */
    background: url('./images/cta-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(225 160 95) 0%, rgb(36 46 10 / 70%) 100%);
    z-index: 1;
}

/* 2. Optimized Content Card Padding */
.cta-content-card {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 30px; /* Tightened internal padding */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px; /* Slightly sharper for premium feel */
}

/* 3. Typography Margin Reset */
.premium-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 15px; /* Reduced margin */
    letter-spacing: -1px;
}

.premium-headline span {
    color: #ffaa52;
}

.premium-subheading {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 300;
    /* Margin controlled via Bootstrap 'mb-4' in HTML */
}

/* 4. Button Refinements */
.cta-button-group {
    display: flex;
    gap: 15px; /* Tightened gap between buttons */
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: #ffaa52;
    color: #fff;
    padding: 14px 30px; /* Slightly more compact padding */
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-premium-outline {
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* 5. Scalability for 1920px+ */
@media (min-width: 1920px) {
    .cta-premium { padding: 80px 0; }
    .premium-headline { font-size: 4rem; }
    .cta-content-card { max-width: 1000px; padding: 60px; }
}

@media (max-width: 768px) {
    .cta-premium { padding: 40px 15px; }
    .premium-headline { font-size: 2rem; }
    .cta-button-group { flex-direction: column; width: 100%; }
    .btn-premium-primary, .btn-premium-outline { width: 100%; text-align: center; }
}




.premium-footer {
    background: linear-gradient(135deg, #2c1a47, #5A2D82);
    color: rgba(255,255,255,0.85);
    padding: 80px 0 30px;
    position: relative;
}

/* Subtle Glow Overlay */
.premium-footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,170,82,0.15), transparent);
    filter: blur(80px);
}

/* Headings */
.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Text */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-contact {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

/* Premium hover underline */
.footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #ffaa52;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social Icons */
.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: all 0.4s ease;
}

/* Smooth hover */
.footer-social-icons a:hover {
    background: linear-gradient(135deg, #ffaa52, #ff8c42);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255,170,82,0.3);
}

/* Divider */
.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

/* Bottom */
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffaa52;
}

/* Large Screens */
@media (min-width: 1920px) {
    .premium-footer {
        padding: 120px 0 40px;
    }
    .footer-heading {
        font-size: 18px;
    }
}





/* Hover Effect for all Nav Links */
.navbar-nav .nav-link {
    padding: 8px 10px !important; /* Adds space for the background box */
    border-radius: 5px; /* Smooth rounded corners */
    transition: all 0.3s ease;
    color: #5a2d82; /* Your theme purple */
    font-weight: 500;
}

/* Mouse Over (Hover) Effect */
.navbar-nav .nav-link:hover {
    background-color: #5a2d82; /* Purple background */
    color: #ffffff !important; /* White text on hover */
}

/* Active Menu Selection */
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link.active {
    background-color: #5a2d82;
    color: #ffffff !important;
}

/* Ensure Dropdown items also have a hover effect */
.lifeforce-menu .dropdown-item:hover {
    background-color: #5a2d82;
    color: #fff;
}

/* Adjust dropdown toggle arrow color on hover */
.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
    border-top-color: #fff;
}




/* =====================================
HEADER IMAGE
===================================== */

.disease-hero {
    height: 60vh;
    min-height: 450px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: slowZoom 12s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.75) 10%,
            rgba(0,0,0,0.3) 60%,
            rgba(0,0,0,0.1) 100%
        );
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
    z-index: 3;
}

.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ffaa52;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.premium-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* =====================================
CORNS SECTION
===================================== */

.corns-section {
    background:
        linear-gradient(to bottom, #f9f7fc, #ffffff);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.floating-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.glow1 {
    width: 350px;
    height: 350px;
    background: rgba(123,77,178,0.15);
    top: 100px;
    left: -100px;
}

.glow2 {
    width: 300px;
    height: 300px;
    background: rgba(255,170,82,0.2);
    right: -80px;
    bottom: 100px;
}

.premium-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.4);
    position: relative;
    z-index: 2;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5A2D82, #7B4DB2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.mini-title {
    color: #7B4DB2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disease-title {
    font-size: 3rem;
    font-weight: 800;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
}

.content-box {
    padding: 35px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.content-box h3 {
    margin-bottom: 25px;
    color: #5A2D82;
    font-weight: 700;
}

.premium-alert {
    background: linear-gradient(135deg, #fff2df, #fff8ef);
    padding: 18px;
    border-radius: 15px;
    margin-top: 20px;
    color: #d17a00;
    font-weight: 600;
}

.type-card {
    background: linear-gradient(135deg, #ffffff, #faf7ff);
    border-radius: 25px;
    padding: 30px;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid #eee;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(90,45,130,0.12);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: #f4ebff;
    color: #5A2D82;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.premium-list {
    display: grid;
    gap: 16px;
}

.premium-list div {
    background: #faf7ff;
    padding: 16px 18px;
    border-radius: 15px;
    transition: 0.3s;
	color: #000;
}

.premium-list div:hover {
    transform: translateX(5px);
    background: #f3ebff;
}

.premium-list i {
    color: #5A2D82;
    margin-right: 10px;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.symptom-box {
    background: linear-gradient(135deg,#fff,#faf5ff);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
}

.symptom-box:hover {
    transform: scale(1.04);
}

.symptom-box i {
    font-size: 35px;
    color: #5A2D82;
    margin-bottom: 15px;
}

.tip-box {
    background: linear-gradient(135deg,#fff,#f7f1ff);
    padding: 20px;
    border-radius: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.tip-box:hover {
    transform: translateY(-5px);
}

.tip-box i {
    color: #ffaa52;
    margin-right: 10px;
}

.treatment-box {
    background:
        linear-gradient(
            135deg,
            #5A2D82,
            #7B4DB2
        );
    border-radius: 30px;
    padding: 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.treatment-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.treatment-icon {
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    backdrop-filter: blur(10px);
}

.treatment-icon i {
    font-size: 70px;
    color: #ffaa52;
}

/* =====================================
SIDEBAR
===================================== */

.sidebar-sticky {
    position: sticky;
    top: 10px;
}

.treatment-form-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.form-top-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: rgba(123,77,178,0.15);
    border-radius: 50%;
    filter: blur(50px);
}

.treatment-form-card h3 {
    font-weight: 800;
    margin-bottom: 10px;
}

.premium-input {
    border-radius: 16px;
    border: 1px solid #eee;
    padding: 15px;
    background: #fafafa;
    transition: 0.3s;
}

.premium-input:focus {
    border-color: #7B4DB2;
    box-shadow: 0 0 0 4px rgba(123,77,178,0.12);
    background: #fff;
}

.btn-submit-premium {
    background: linear-gradient(135deg,#FF9933,#ffb366);
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.4s;
}

.btn-submit-premium:hover {
    transform: translateY(-4px);
}

.benefit-card {
    background: linear-gradient(135deg,#fff,#faf6ff);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-card h4 {
    margin-bottom: 25px;
    font-weight: 700;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 15px;
    background: #fff;
}

.benefit-item i {
    width: 45px;
    height: 45px;
    background: #f3ebff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5A2D82;
}

/* =====================================
RESPONSIVE
===================================== */

@media(max-width:991px){

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .premium-card {
        padding: 30px;
    }

    .symptom-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: relative;
        top: 0;
    }

    .treatment-box {
        padding: 35px;
    }
}

@media(max-width:768px){

    .disease-hero {
        min-height: 550px;
    }

    .hero-btn-group {
        flex-direction: column;
    }

    .hero-btn-group a {
        width: 100%;
        text-align: center;
    }

    .disease-title {
        font-size: 2.2rem;
    }

    .content-box {
        padding: 25px;
    }
}





/* =========================================
ULTRA PREMIUM DISEASE DIRECTORY
========================================= */

.disease-directory-section {
    position: relative;
    padding: 100px 0;
    background:
        linear-gradient(
            180deg,
            #f7f4fc 0%,
            #ffffff 100%
        );
    overflow: hidden;
}

/* GLOW EFFECTS */

.directory-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.glow-left {
    width: 350px;
    height: 350px;
    background: rgba(123,77,178,0.18);
    left: -120px;
    top: 120px;
}

.glow-right {
    width: 300px;
    height: 300px;
    background: rgba(255,170,82,0.2);
    right: -100px;
    bottom: 50px;
}

/* HEADER */

.directory-header {
    max-width: 850px;
    margin: auto;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.premium-label {
    display: inline-flex;
    align-items: center;
    background: rgba(90,45,130,0.08);
    color: #5A2D82;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(90,45,130,0.08);
    backdrop-filter: blur(10px);
}

.directory-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.1;
}

.directory-title span {
    background: linear-gradient(135deg,#5A2D82,#a15bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.directory-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666;
}

/* ALPHABET NAVIGATION */

.alphabet-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.alphabet-item {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(90,45,130,0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #5A2D82;
    text-decoration: none;
    font-weight: 700;

    transition: all 0.35s ease;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.04);
}

.alphabet-item:hover {
    transform: translateY(-6px) scale(1.08);
    background: linear-gradient(135deg,#5A2D82,#7B4DB2);
    color: #fff;
    box-shadow:
        0 15px 30px rgba(90,45,130,0.25);
}

.alphabet-item.active {
    background: linear-gradient(135deg,#5A2D82,#7B4DB2);
    color: #fff;
    transform: scale(1.1);
    box-shadow:
        0 15px 35px rgba(90,45,130,0.3);
}

/* DISEASE CARD */

.disease-card {
    position: relative;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);

    border-radius: 28px;
    padding: 28px;

    display: flex;
    align-items: center;
    gap: 20px;

    text-decoration: none;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.5);

    transition: all 0.45s ease;

    min-height: 130px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.05);
}

/* CARD HOVER */

.disease-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(90,45,130,0.12);
}

.disease-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(123,77,178,0.05),
            rgba(255,170,82,0.08)
        );

    opacity: 0;
    transition: 0.4s;
}

.disease-card:hover::before {
    opacity: 1;
}

/* ICON */

.disease-icon {
    min-width: 72px;
    width: 72px;
    height: 72px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #5A2D82,
            #7B4DB2
        );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 28px;

    position: relative;
    z-index: 2;

    box-shadow:
        0 12px 25px rgba(90,45,130,0.25);
}

/* CONTENT */

.disease-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.disease-content h4 {
    color: #222;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.disease-content span {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* HOVER ARROW */

.hover-arrow {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: rgba(90,45,130,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #5A2D82;

    transition: 0.4s ease;

    position: relative;
    z-index: 2;
}

.disease-card:hover .hover-arrow {
    background: linear-gradient(135deg,#ffaa52,#ff8f2c);
    color: #fff;
    transform: rotate(-45deg) scale(1.08);
}

/* CTA */

.directory-cta {
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.btn-directory-premium {
    display: inline-flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #ffaa52,
            #ff8f2c
        );

    color: #fff;
    text-decoration: none;

    padding: 18px 36px;
    border-radius: 60px;

    font-weight: 700;
    letter-spacing: 0.4px;

    transition: all 0.4s ease;

    box-shadow:
        0 15px 35px rgba(255,170,82,0.3);
}

.btn-directory-premium:hover {
    transform: translateY(-5px) scale(1.03);
    color: #fff;

    box-shadow:
        0 20px 40px rgba(255,170,82,0.4);
}

/* ===========================
RESPONSIVE
=========================== */

@media (max-width: 991px){

    .directory-title {
        font-size: 2.7rem;
    }

    .disease-card {
        padding: 24px;
    }
}

@media (max-width: 768px){

    .disease-directory-section {
        padding: 70px 0;
    }

    .directory-title {
        font-size: 2.2rem;
    }

    .directory-subtitle {
        font-size: 1rem;
    }

    .alphabet-wrapper {
        gap: 10px;
    }

    .alphabet-item {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .disease-card {
        min-height: auto;
    }
}

@media (min-width: 1920px){

    .directory-title {
        font-size: 5rem;
    }

    .directory-subtitle {
        font-size: 1.35rem;
    }

    .disease-card {
        min-height: 150px;
    }

    .disease-content h4 {
        font-size: 1.35rem;
    }
}



/* ================= ALPHABETS ================= */

.alphabet-wrapper{
    overflow:hidden;
    padding-bottom:0;
}

.alphabet-scroll{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
    padding:5px 0;
}

/* Hide scrollbar completely */
.alphabet-wrapper::-webkit-scrollbar{
    display:none;
}

.alphabet-wrapper{
    -ms-overflow-style:none;
    scrollbar-width:none;
}

.alphabet-btn{
    min-width:58px;
    height:48px;
    border-radius:14px;
    border:none;
    background:#ffe9d1;
    color:#d97706;
    font-weight:700;
    transition:all 0.3s ease;
    box-shadow:0 4px 15px rgba(255,153,51,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.alphabet-btn:hover{
    background:#ffb15e;
    color:#fff;
    transform:translateY(-3px);
}

.alphabet-btn.active{
    background:linear-gradient(135deg,#ff9933,#ffb866);
    color:#fff;
    box-shadow:
    0 10px 25px rgba(255,153,51,0.35);
}

/* ================= DISEASE CARDS ================= */

.disease-card{
    background:#fff8f2; /* Light premium orange background */
    border-radius:24px;
    padding:28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    border:1px solid #ffe0c2;

    transition:all 0.4s ease;

    box-shadow:
    0 10px 30px rgba(255,153,51,0.05);
}

.disease-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent);
    transition:0.7s;
}

.disease-card:hover::before{
    left:100%;
}

.disease-card:hover{
    transform:translateY(-8px);
    background:#ffffff;
    box-shadow:
    0 20px 40px rgba(255,153,51,0.18);
    border-color:#ffb866;
}

.disease-card h5{
    margin-bottom:8px;
    color:#2f184b;
    font-size:22px;
    font-weight:700;
}

.disease-card p{
    margin:0;
    color:#888;
    font-size:14px;
}

.disease-card span{
    width:50px;
    height:50px;
    border-radius:14px;
    background:#ffe9d1;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff9933;
    transition:0.3s ease;
}

.disease-card:hover span{
    background:#ff9933;
    color:#fff;
    transform:rotate(-45deg);
}




/* INTERACTIVE TREATMENT TOOL */
.treatment-tool-section {
    padding: 20px 0;
    background: #FFD580;
}

.tool-container {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    min-height: 360px;
    border: 1px solid #eee;
}

/* Left Sidebar */
.tool-sidebar {
    width: 30%;
    background: #fff8f1; /* Very light saffron tint */
    padding: 20px 0;
    border-right: 1px solid #f1e0d0;
}

.tool-sidebar .search-box {
    padding: 0 30px 20px;
}

.tool-sidebar .search-box input {
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    border: 1px solid #ddd;
}

.disease-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 230px;
    overflow-y: auto;
}

.disease-item {
    padding: 12px 40px;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.disease-item.active {
    color: #333;
    font-weight: 600;
    background: #fff;
}

.disease-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #FF9933; /* Saffron Indicator */
}

/* Right Content Area */
.tool-content {
    width: 70%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.step-number {
    font-size: 18px;
    color: #FF9933;
    font-weight: 700;
    margin-bottom: 10px;
}

.question-title {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.option-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-item {
    border: 1px solid #eee;
    padding: 8px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.option-item:hover {
    border-color: #FF9933;
    background: #fffcf9;
}

.option-item input {
    margin-right: 15px;
    accent-color: #FF9933;
}

.tool-footer {
    margin-top: auto;
    padding-top: 30px;
    display: flex;
    justify-content: flex-end;
}

/* Lead Form Specifics */
.lead-form input {
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.hidden-step {
    display: none;
}



.container {
    max-width: 100% !important;
    padding-left: 40px;
    padding-right: 40px;
}

@media (min-width: 1920px) {
    .container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 2560px) {
    .container {
        padding-left: 120px;
        padding-right: 120px;
    }
}



/* Expand container for large screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1700px;
    }
}

/* Ultra wide (TV / 4K) */
@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
}

/* Improve spacing for large screens */
@media (min-width: 1920px) {
    body {
        font-size: 17px;
    }

    .navbar-nav .nav-link {
        font-size: 17px;
        margin: 0 18px;
    }

    .carousel-caption h1 {
        font-size: 4rem;
    }

    .carousel-caption p {
        font-size: 1.5rem;
    }
}





    /* 1. Remove Blank Space & Global Fixes */
    :root {
        --premium-purple: #5A2D82;
        --hover-purple: #472266;
        --soft-purple: #f3ecfa;
    }

body {
    overflow-x: hidden;
}

    
	/* UNIVERSAL FONT SYSTEM */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
}

/* Apply everywhere (force consistency) */
* {
    font-family: 'Poppins', sans-serif;
}

/* Headings hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Paragraph */
p {
    font-size: 15px;
    line-height: 1.6;
}

/* Small text */
small, .small {
    font-size: 16px;
}



h1, h2, h3 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

.navbar-nav .nav-link {
    font-weight: 500;
}
	
	
    .bg-purple { background: #5A2D82; }
    .text-purple { color: #5A2D82; }

    .btn-purple {
        background: #5A2D82;
        color: #fff;
        border-radius: 30px;
        padding: 10px 25px;
    }

    .btn-purple:hover {
        background: #472066;
        color: #fff;
    }

    .navbar-nav .nav-link {
        font-weight: 500;
        margin-right: 15px;
    }

    .hero {
        height: 64vh;
    }

    .card-hover:hover {
        transform: translateY(-8px);
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .section-title {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .cta-section {
        background: linear-gradient(45deg, #5A2D82, #7B4DB2);
        color: white;
    }

	
	
/* 1. Navbar Adjustments */
.navbar-brand {
    padding-left: 0; /* Ensures it stays to the far left */
}

.brand-text {
    font-size: 20px;
    line-height: 1.1;
    color: #5a2d82;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: left; /* Shift text alignment to left */
}

/* 2. Slider Logo Styling */
.logo-on-slider {
    position: absolute;
    top: 10px; /* Adjust based on where you want it on the slider */
    left: 20px;
    z-index: 10;
}

.logo-container {
    background: #ffffff; /* White background */
    padding: 8px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: inline-block;
}

.logo-container img {
    height: 150px; /* Adjust size as needed */
    width: auto;
    display: block;
}

/* Clean up your old logo CSS to prevent conflicts */
.navbar-brand img {
    display: none; /* Hide the logo inside the navbar since it's now on the slider */
}



    /* 3. Navigation Links Fix */
    .navbar-nav .nav-link {
        font-size: 15px;
        font-weight: 500;
        color: #333 !important;
        margin: 0 12px;
        /* Adjusted padding to make room for the arrow */
        padding: 25px 15px 25px 0 !important; 
        position: relative;
        display: flex;
        align-items: center;
    }

    /* 4. PREMIUM ARROW (FIX) */
    /* This replaces the default bootstrap arrow with a cleaner version */
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 8px;
        vertical-align: middle;
        content: "";
        /* Custom Chevron Shape */
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-bottom: 0;
        border-left: 0.35em solid transparent;
        transition: transform 0.3s ease;
        color: var(--premium-purple);
    }

    /* Rotate arrow when open */
    .show.dropdown-toggle::after {
        transform: rotate(180deg);
    }

 
    
    /* Underline effect adjustment to not clash with arrow */
    .navbar-nav .nav-link::after {
        content: "";
        width: 0;
        height: 2px;
        background: var(--premium-purple);
        position: absolute;
        bottom: 20px;
        left: 0;
        transition: width 0.3s ease;
    }

  /* ===== PREMIUM SMOOTH DROPDOWN ===== */

/* Dropdown base */
.dropdown-menu {
    display: block !important;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
        height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;

    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 0 10px;
}

/* Active state */
.dropdown-menu.active {
    opacity: 1;
    padding: 10px;
}


.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    margin-top: 0;
}

.dropdown-menu {
    transform: translateY(5px);
}

.dropdown-menu.active {
    transform: translateY(0);
}

    @keyframes slideUp {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .dropdown-item {
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 500;
        color: #444;
    }

    .dropdown-item:hover {
        background: var(--soft-purple);
        color: var(--premium-purple);
        padding-left: 25px; /* Slight slide effect on hover */
    }
	
	
	/* Hide the default Bootstrap triangle */
.dropdown-toggle::after {
    display: none !important;
}

/* Add FontAwesome Chevron */
.dropdown-toggle::before {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078"; /* Chevron Down */
    font-size: 10px;
    margin-left: 8px;
    color: #5A2D82;
    transition: transform 0.3s;
    order: 2; /* Ensures it stays after the text */
}

.dropdown-toggle.show::before {
    transform: rotate(180deg);
}

.dropdown-toggle {
    display: flex !important;
    align-items: center;
}


/* ===== LIFEFORCE STYLE MENU ===== */

.lifeforce-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 340px;

    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);

    display: block !important;

    height: 0;
    overflow: hidden;

    opacity: 0;

    transition: 
        height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;

    padding: 0;
}

/* Header */
.dropdown-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

/* Items */
.lifeforce-menu .dropdown-item {
    padding: 12px 8px;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
    transition: 
    height 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

.lifeforce-menu .dropdown-item:last-child {
    border-bottom: none;
}

.lifeforce-menu .dropdown-item:hover {
    background: #f7f3ff;
    padding-left: 22px;
}

/* Active */
.lifeforce-menu.active {
    opacity: 1;
    padding-bottom: 10px;
}



/* Soft blinking glow */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(90,45,130,0.4); }
    50% { box-shadow: 0 0 20px rgba(123,77,178,0.8); }
    100% { box-shadow: 0 0 0 rgba(90,45,130,0.4); }
}

.btn-purple {
    animation: pulseGlow 2s infinite;
}


/* SAFFRON PULSE BUTTON WITH LIGHTNING EFFECT */
.btn-purple, .btn-cta-slider {
    background: linear-gradient(45deg, #FF9933, #FFB366);
    color: #040404 !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden; /* Vital for the lightning effect */
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
    display: inline-block;
    text-decoration: none;
}

/* Lightning/Shine Streak Animation */
.btn-purple::after, .btn-cta-slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: lightningShine 3s infinite;
}

@keyframes lightningShine {
    0% { left: -100%; }
    20% { left: 130%; } /* Fast sweep */
    100% { left: 130%; } /* Pause before next sweep */
}

/* Continuous Pulse Glow */
@keyframes saffronPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 153, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0); }
}

.btn-purple, .btn-cta-slider {
    animation: saffronPulse 2s infinite;
}

.btn-purple:hover, .btn-cta-slider:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, #ff8c1a, #FF9933);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.6);
}



/*
VIDEO
*/

/* TESTIMONIAL CAROUSEL CONTROLS */
#testimonialCarousel {
    position: relative;
    padding-bottom: 20px;
}

.testimonial-arrow {
    background: #ffffff;
    color: #5A2D82; /* Purple Icon */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    font-size: 18px;
}

.testimonial-arrow:hover {
    background: #FF9933; /* Saffron on Hover */
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

/* Positioning the arrows outside the video grid slightly */
.carousel-control-prev {
    left: -20px;
    opacity: 1;
}

.carousel-control-next {
    right: -20px;
    opacity: 1;
}

.video-box {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.video-box:hover {
    transform: scale(1.02);
}

.video-box iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
}

/* Ensure controls are visible on light background */
.carousel-control-prev-icon, .carousel-control-next-icon {
    display: none; /* We are using FontAwesome instead */
}



/* SUBSCRIBE BUTTON WITH LIGHTNING & PULSE */
.btn-subscribe {
    background: linear-gradient(45deg, #FF0000, #FF9933); /* YouTube Red to Saffron */
    color: #040404 !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: saffronPulse 2s infinite; /* Reusing your pulse animation */
}

/* Lightning Streak for Subscribe Button */
.btn-subscribe::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: lightningShine 2.5s infinite;
}

.btn-subscribe:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #cc0000, #ff8c1a);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.btn-subscribe i {
    font-size: 16px;
}


/*
CTA

*/

.cta-big {
    padding: 100px 0;
    background: linear-gradient(135deg, #7B4DB2, #5A2D82);
}



@media (min-width: 1920px) {

    /* Base body text */
    body {
        font-size: 18px;
    }

    /* Headings */
    h1 { font-size: 4.2rem; }
    h2 { font-size: 3.2rem; }
    h3 { font-size: 2.6rem; }
    h4 { font-size: 2.2rem; }
    h5 { font-size: 1.8rem; }
    h6 { font-size: 1.5rem; }

    /* Paragraphs */
    p {
        font-size: 18px;
        line-height: 1.8;
    }

    /* Navbar */
    .navbar-nav .nav-link {
        font-size: 18px;
    }

    /* Buttons */
    .btn, .btn-purple {
        font-size: 16px;
        padding: 12px 30px;
    }

    /* Hero text */
    .carousel-caption h1 {
        font-size: 4.5rem;
    }

    .carousel-caption p {
        font-size: 1.6rem;
    }

    /* Counter */
    .counter {
        font-size: 56px;
    }

    .counter-box p {
        font-size: 18px;
    }

    /* Section spacing */
    section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.navbar-nav .nav-link {
    font-size: clamp(16px, 0.8vw, 22px);
	font-weight:700;
}




* Base icon sizing */
.top-bar-icon {
    font-size: 1.1rem; /* Slightly larger than text */
    vertical-align: middle;
}

.social-icon {
    font-size: 1.3rem; /* Noticeably larger icons */
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Specific scaling for 1920px resolution and above */
@media (min-width: 1920px) {
    .top-bar-icon {
        font-size: 1.3rem;
    }
    .social-icon {
        font-size: 1.6rem;
    }
    /* Optional: slightly increase the text size for ultra-wide screens */
    .py-2 {
        font-size: 17px !important;
    }
}

/* Mobile adjustments to prevent crowding */
@media (max-width: 768px) {
    .social-icon {
        font-size: 1.1rem;
    }
    .top-bar-icon {
        font-size: 1rem;
    }
}


.cta-premium {
    position: relative;
    padding: 20px 0; /* Reduced from 120px to remove unwanted vertical space */
    background: url('./images/cta-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(225 160 95) 0%, rgb(36 46 10 / 70%) 100%);
    z-index: 1;
}

/* 2. Optimized Content Card Padding */
.cta-content-card {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 30px; /* Tightened internal padding */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px; /* Slightly sharper for premium feel */
}

/* 3. Typography Margin Reset */
.premium-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 15px; /* Reduced margin */
    letter-spacing: -1px;
}

.premium-headline span {
    color: #ffaa52;
}

.premium-subheading {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 300;
    /* Margin controlled via Bootstrap 'mb-4' in HTML */
}

/* 4. Button Refinements */
.cta-button-group {
    display: flex;
    gap: 15px; /* Tightened gap between buttons */
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: #ffaa52;
    color: #fff;
    padding: 14px 30px; /* Slightly more compact padding */
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-premium-outline {
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* 5. Scalability for 1920px+ */
@media (min-width: 1920px) {
    .cta-premium { padding: 80px 0; }
    .premium-headline { font-size: 4rem; }
    .cta-content-card { max-width: 1000px; padding: 60px; }
}

@media (max-width: 768px) {
    .cta-premium { padding: 40px 15px; }
    .premium-headline { font-size: 2rem; }
    .cta-button-group { flex-direction: column; width: 100%; }
    .btn-premium-primary, .btn-premium-outline { width: 100%; text-align: center; }
}




.premium-footer {
    background: linear-gradient(135deg, #2c1a47, #5A2D82);
    color: rgba(255,255,255,0.85);
    padding: 30px 0 10px;
    position: relative;
}

/* Subtle Glow Overlay */
.premium-footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,170,82,0.15), transparent);
    filter: blur(80px);
}

/* Headings */
.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Text */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-contact {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

/* Premium hover underline */
.footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #ffaa52;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social Icons */
.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: all 0.4s ease;
}

/* Smooth hover */
.footer-social-icons a:hover {
    background: linear-gradient(135deg, #ffaa52, #ff8c42);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255,170,82,0.3);
}

/* Divider */
.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

/* Bottom */
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffaa52;
}

/* Large Screens */
@media (min-width: 1920px) {
    .premium-footer {
        padding: 120px 0 40px;
    }
    .footer-heading {
        font-size: 18px;
    }
}





/* Hover Effect for all Nav Links */
.navbar-nav .nav-link {
    padding: 8px 10px !important; /* Adds space for the background box */
    border-radius: 5px; /* Smooth rounded corners */
    transition: all 0.3s ease;
    color: #5a2d82; /* Your theme purple */
    
}

/* Mouse Over (Hover) Effect */
.navbar-nav .nav-link:hover {
    background-color: #5a2d82; /* Purple background */
    color: #ffffff !important; /* White text on hover */
}

/* Active Menu Selection */
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link.active {
    background-color: #5a2d82;
    color: #ffffff !important;
}

/* Ensure Dropdown items also have a hover effect */
.lifeforce-menu .dropdown-item:hover {
    background-color: #5a2d82;
    color: #fff;
}

/* Adjust dropdown toggle arrow color on hover */
.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
    border-top-color: #fff;
}




/* =====================================
HEADER IMAGE
===================================== */

.disease-hero {
    height: 60vh;
    min-height: 450px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: slowZoom 12s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.75) 10%,
            rgba(0,0,0,0.3) 60%,
            rgba(0,0,0,0.1) 100%
        );
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
    z-index: 3;
}

.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ffaa52;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.premium-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}



/* =====================================
RESPONSIVE
===================================== */

@media(max-width:991px){

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .premium-card {
        padding: 30px;
    }

    .symptom-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: relative;
        top: 0;
    }

    .treatment-box {
        padding: 35px;
    }
}

@media(max-width:768px){

    .disease-hero {
        min-height: 550px;
    }

    .hero-btn-group {
        flex-direction: column;
    }

    .hero-btn-group a {
        width: 100%;
        text-align: center;
    }

    .disease-title {
        font-size: 2.2rem;
    }

    .content-box {
        padding: 25px;
    }
}


/* =========================================
ULTRA PREMIUM ABOUT DOCTOR SECTION
========================================= */

.doctor-about-section{
    position:relative;
    padding:100px 0;
    background:
    linear-gradient(180deg,#fff8f2 0%,#ffffff 100%);
    overflow:hidden;
}

/* GLOW EFFECTS */

.doctor-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.doctor-glow-left{
    width:400px;
    height:400px;
    background:rgba(255,153,51,0.15);
    top:-100px;
    left:-100px;
}

.doctor-glow-right{
    width:350px;
    height:350px;
    background:rgba(123,77,178,0.15);
    bottom:-100px;
    right:-100px;
}

/* HERO CARD */

.doctor-hero-card{
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(18px);

    border-radius:40px;
    padding:60px;

    border:1px solid rgba(255,255,255,0.6);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.06);

    position:relative;
    overflow:hidden;
}

.doctor-hero-card::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:
    radial-gradient(circle,
    rgba(255,170,82,0.12),
    transparent 70%);

    top:-200px;
    right:-100px;
}

/* IMAGE */

.doctor-image-wrapper{
    position:relative;
    text-align:center;
}

.doctor-image{
    position:relative;
    z-index:2;
    border-radius:35px;
    box-shadow:
    0 25px 50px rgba(0,0,0,0.12);
    transition:0.5s ease;
}

.doctor-image:hover{
    transform:translateY(-10px) scale(1.02);
}

.doctor-image-shape{
    position:absolute;
    width:100%;
    height:100%;
    background:
    linear-gradient(135deg,#ff9933,#7B4DB2);

    border-radius:35px;
    transform:rotate(-5deg);
    z-index:1;
}

/* EXPERIENCE */

.experience-badge{
    position:absolute;
    bottom:20px;
    right:-10px;

    background:#fff;
    padding:18px 25px;

    border-radius:20px;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.12);

    z-index:3;

    font-weight:600;
    color:#444;
}

.experience-badge span{
    display:block;
    font-size:34px;
    color:#ff9933;
    font-weight:800;
    line-height:1;
}

/* CONTENT */

.premium-tag{
    display:inline-flex;
    align-items:center;
    background:#fff1e2;
    color:#ff8c1a;

    padding:10px 22px;
    border-radius:50px;

    font-weight:700;
    margin-bottom:20px;
}

.doctor-title{
    font-size:4rem;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    color:#2d1946;
}

.doctor-title span{
    color:#ff9933;
}

.doctor-subtitle{
    font-size:1.15rem;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

/* HIGHLIGHTS */

.doctor-highlights{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.highlight-box{
    flex:1;
    min-width:160px;

    background:#fff7f0;
    border:1px solid #ffe3c3;

    border-radius:24px;
    padding:25px;

    text-align:center;

    transition:0.4s ease;
}

.highlight-box:hover{
    transform:translateY(-8px);
    background:#fff;
    box-shadow:
    0 20px 40px rgba(255,153,51,0.15);
}

.highlight-box h3{
    font-size:2rem;
    font-weight:800;
    color:#ff9933;
}

.highlight-box span{
    color:#666;
    font-size:15px;
}

/* BUTTONS */

.doctor-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-doctor-primary{
    background:
    linear-gradient(135deg,#ff9933,#ffb866);

    color:#fff;
    padding:15px 32px;

    border-radius:50px;
    text-decoration:none;

    font-weight:700;

    transition:0.4s ease;
}

.btn-doctor-primary:hover{
    transform:translateY(-5px);
    color:#fff;
}

.btn-doctor-outline{
    background:#fff;
    color:#5A2D82;

    padding:15px 32px;

    border-radius:50px;
    text-decoration:none;

    font-weight:700;

    border:1px solid #eee;

    transition:0.4s ease;
}

.btn-doctor-outline:hover{
    background:#5A2D82;
    color:#fff;
}

/* INFO CARD */

.premium-info-card,
.doctor-sidebar-card,
.premium-approach-card,
.achievement-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(15px);

    border-radius:35px;
    padding:40px;

    border:1px solid rgba(255,255,255,0.5);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.05);

    transition:0.4s ease;
}

.premium-info-card:hover,
.doctor-sidebar-card:hover,
.premium-approach-card:hover,
.achievement-card:hover{
    transform:translateY(-10px);
}

/* HEADINGS */

.section-mini-title{
    color:#ff9933;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-heading{
    font-size:2.5rem;
    font-weight:800;
    line-height:1.2;
    color:#2d1946;
    margin-bottom:25px;
}

/* SIDEBAR */

.sidebar-icon{
    width:80px;
    height:80px;

    border-radius:24px;

    background:
    linear-gradient(135deg,#ff9933,#ffb866);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:32px;

    margin-bottom:25px;
}

.country-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:25px;
}

.country-tags span{
    background:#fff3e4;
    color:#ff8c1a;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;
}

/* APPROACH */

.premium-approach-card{
    margin-top:40px;
}

.approach-benefits{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.benefit-item{
    background:#fff8f2;
    border:1px solid #ffe5c7;

    padding:22px 25px;

    border-radius:22px;

    font-weight:600;

    transition:0.4s ease;
}

.benefit-item:hover{
    transform:translateX(10px);
    background:#fff;
}

.benefit-item i{
    color:#ff9933;
    margin-right:12px;
}

/* ACHIEVEMENTS */

.achievement-icon{
    width:85px;
    height:85px;

    border-radius:25px;

    background:
    linear-gradient(135deg,#5A2D82,#7B4DB2);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    margin-bottom:25px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .doctor-title{
        font-size:2.8rem;
    }

    .section-heading{
        font-size:2rem;
    }

    .doctor-hero-card{
        padding:35px;
    }

}

@media(max-width:768px){

    .doctor-about-section{
        padding:70px 0;
    }

    .doctor-title{
        font-size:2.2rem;
    }

    .section-heading{
        font-size:1.7rem;
    }

    .doctor-buttons{
        flex-direction:column;
    }

    .btn-doctor-primary,
    .btn-doctor-outline{
        width:100%;
        text-align:center;
    }

    .doctor-highlights{
        flex-direction:column;
    }

}
