:root {
            --medical-emerald: #0a3d2e;
            --premium-gold: #d4af37;
            --glass-white: rgba(255, 255, 255, 0.98);
        }

        body { font-family: 'Montserrat', sans-serif; background-color: #fff; color: #2d2d2d; scroll-behavior: smooth; }
        h1, h2, h3, .navbar-brand { font-family: 'Cormorant Garamond', serif; letter-spacing: 1px; }

/* Prevent horizontal overflow strictly */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;

	
}

/* --- Navbar Base --- */
.navbar {
    background: var(--glass-white) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--premium-gold);
    padding: 0.6rem 0;
}

/* --- Logo & Text --- */
.navbar-logo-img {
    height: 45px; /* Consistent height */
    width: auto;
    margin-right: 10px;
}

.logo-text-main {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(45deg, var(--medical-emerald), var(--premium-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    display: block;
}

.logo-text-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Mobile Specific Styles --- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff; /* Solid background for mobile readability */
        margin-top: 15px;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .nav-item {
        border-bottom: 1px solid #f1f1f1; /* Separation lines for links */
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        color: var(--medical-emerald) !important;
        font-size: 1rem;
        padding-left: 0 !important; /* Forces text to flush left */
    }

    .btn-premium {
        margin-top: 10px;
        text-align: center; /* Keep button text centered even if link is left */
    }
    
    /* Shrink logo further on very small screens */
    @media (max-width: 400px) {
        .logo-text-main { font-size: 1.1rem; }
        .navbar-logo-img { height: 35px; }
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem 1.5rem;
        border-radius: 0 0 15px 15px; /* Rounded bottom corners */
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .nav-link {
        padding: 15px 0 !important;
        display: block;
    }
}

       
          /* --- Hero Section with Ken Burns --- */
 .hero-wrap {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden; /* hides scrollbar caused by animation */
}

  .hero-bg {
    position: absolute;
    inset: 0;
    background-color: #0a3d2e;
    background-image: linear-gradient(rgba(10,61,46,0.75), rgba(10,61,46,0.4)),
                      url('../img/hearobg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;

    animation: kenburns 20s infinite alternate ease-in-out;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0,0);
    }
    100% {
        transform: scale(1.08) translate(-2%, -2%);
    }
}

/* Ensure the text container stays above the background image */
.hero-wrap .container {
    position: relative;
    z-index: 2; /* Higher than hero-bg which is -1 */
}

/* Responsive Hero Text */

.hero-wrap h1{
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 1.1;
}

.hero-wrap h6{
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.hero-wrap p{
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}

/* Responsive spacing */

.hero-wrap{
    padding: 80px 0;
}

/* Mobile layout adjustments */

@media (max-width:768px){

.hero-wrap{
    height:auto;
    padding:120px 20px 80px;
}

.hero-wrap .container{
    text-align:left;
}

.hero-wrap .border-start{
    border-left-width:3px !important;
    padding-left:15px !important;
}

}

/* Custom styling for the Premium Button */
.btn-premium {
    background: linear-gradient(45deg, #d4af37, #b38e44); /* Gold Gradient */
    color: #ffffff !important;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block; /* Ensures it honors padding/margins */
}

.btn-premium:hover {
    background: linear-gradient(45deg, #b38e44, #0a3d2e);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important;
}
        /* --- Highlights Grid --- */
        .highlight-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: 0.4s;
            background: #fdfaf5;
        }
        .highlight-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .icon-box { 
            width: 60px; height: 60px; background: var(--medical-emerald); 
            color: var(--premium-gold); display: flex; align-items: center; 
            justify-content: center; border-radius: 50%; margin-bottom: 20px;
        }
		
		 /* --- Photo Gallery --- */
        /* --- Gallery Hover Effects --- */
    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        cursor: pointer;
    }
    .gallery-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(10, 61, 46, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.4s ease;
        color: white;
        font-size: 2rem;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-item:hover img { transform: scale(1.1); transition: 0.6s ease; }

    /* --- Lightbox Styles --- */
    .lightbox {
        display: none;
        position: fixed;
        z-index: 9999;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.95);
        align-items: center;
        justify-content: center;
    }
    .lightbox img {
        max-width: 85%;
        max-height: 80%;
        border: 3px solid var(--premium-gold);
        border-radius: 10px;
    }
    .close-lightbox {
        position: absolute;
        top: 30px; right: 40px;
        color: white; font-size: 50px; cursor: pointer;
    }
    .prev-btn, .next-btn {
        position: absolute;
        top: 50%;
        background: rgba(255,255,255,0.1);
        border: none; color: white;
        padding: 20px; cursor: pointer;
        font-size: 30px; transform: translateY(-50%);
        transition: 0.3s;
    }
    .prev-btn:hover, .next-btn:hover { background: var(--premium-gold); }
    .prev-btn { left: 20px; }
    .next-btn { right: 20px; }
	
	/* Custom Image Size and Aspect Ratio */
.gallery-img {
    width: 100%;
    height: 300px; /* Fixed height for all gallery images */
    object-fit: cover; /* Ensures image fills the area without stretching */
    border-radius: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    position: relative;
    overflow: hidden; /* Clips the zoom effect within the border */
    border-radius: 12px;
    background-color: #000;
}

/* Hover Zoom Effect */
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .gallery-img {
        height: 200px;
    }
}
		
		

        /* --- Registration Table --- */
        .table-premium { border-collapse: separate; border-spacing: 0 8px; }
        .table-premium thead th { background: var(--medical-emerald); color: var(--premium-gold); padding: 15px; border: none; text-transform: uppercase; font-size: 0.75rem; }
        .table-premium tbody tr { background: #f9f9f9; transition: 0.3s; }
        .table-premium td { padding: 15px; border: none; font-size: 0.9rem; }
        .category-header { color: var(--medical-emerald); font-weight: 700; background: none !important; }

        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }
		
		

/* --- Footer --- */
/* --- Footer Credit Styling --- */
.bg-yellow-logo {
    background-color: #ffff00; /* Matching the yellow from the Evenso image */
    display: inline-block;
}

.fw-black {
    font-weight: 900;
    letter-spacing: -1px;
}

.text-primary-light {
    color: #4dabf5 !important; /* Medical blue for Medicon Edge */
}

.credit-item {
    transition: transform 0.3s ease;
}

.credit-item:hover {
    transform: translateY(-3px);
}

/* Ensure footer text remains readable on dark blue */
footer p {
    font-size: 0.9rem;
}

/* Responsive divider fix */
@media (max-width: 767px) {
    .credit-item {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* --- Partner Logo Branding --- */

.partner-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

/* Evenso: Fixed height to maintain brand ratio */
.logo-evenso {
    height: 35px;
    width: auto;
    filter: brightness(1.1); /* Ensures the yellow pops against dark bg */
    transition: var(--transition);
}

/* Medicon Edge: Usually wider, needs slightly more height for the sub-text */
.logo-medicon {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.partner-logo-wrapper:hover img {
    transform: scale(1.08);
    filter: brightness(1.2);
}

/* Responsive Logo Handling */
@media (max-width: 768px) {
    .logo-evenso {
        height: 35px;
    }
    .logo-medicon {
        height: 45px;
    }
    .gap-4 {
        gap: 2rem !important;
    }
}

/* Styling for Partner Links */
.partner-link {
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

/* Removes default underline and color changes for Medicon text */
.partner-link.text-decoration-none:hover {
    color: #fff !important; 
}

/* Hover Animation: Slight scale and brightness boost */
.partner-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Ensure images behave within the link */
.partner-link img {
    display: block;
}


/*registrationpage start */

/* STEP BOX */
.step-box{
background:#fff;
padding:25px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
margin-bottom:20px;
}

/* CARDS */
.selectable,.price-card{
cursor:pointer;
border-radius:12px;
transition:0.3s;
}

.selectable{
background:#e6f6f7;
padding:20px;
font-weight:600;
text-align:center;
}

.selectable:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(13,110,253,0.15);
}

.selected{
border:2px solid #0d6efd !important;
background:linear-gradient(135deg,#e7f0ff,#dbe8ff);
}

.price-card{
border:2px solid #eee;
padding:20px;
background:linear-gradient(135deg,#ffffff,#f8f9ff);
}

.price-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 30px rgba(0,0,0,0.1);
}

.price-card p{
font-size:20px;
color:#0d6efd;
}


/* BREAKDOWN */
.breakdown{
background:linear-gradient(135deg,#f8fbff,#eef4ff);
padding:20px;
border-radius:12px;
border:1px solid #e0e8ff;
}

#totalFee{
font-size:22px;
color:#198754;
}

/* BUTTONS */
.btn-primary{
background:linear-gradient(135deg,#0d6efd,#3a8bfd);
border:none;
border-radius:10px;
}

.btn-success{
background:linear-gradient(135deg,#198754,#34c38f);
border:none;
border-radius:10px;
}

/* HEADER */
h3{
background:linear-gradient(90deg,#0d6efd,#6610f2);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
font-weight:800;
}

/* QR */
#step4 img{
border:8px solid #fff;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.form-control,.form-select{
border-radius:10px;
}
/*registrationpage e */
