 :root {
            --primary: #0a5c5a;
            --primary-dark: #063c3a;
            --accent: #e65f5c;
            --light-bg: #f8fafb;
            --text-dark: #1e293b;
            --text-muted: #64748b;
        }
	
/* Global Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}
	
		html, body {
			margin: 0;
			padding: 0;
			overflow-x: hidden;
			width: 100%;
		}

	
			.row {
				margin-left: 0;
				margin-right: 0;
			}
	
        /* Smooth Scrolling Native Behavior */
        html {
            scroll-behavior: smooth;
			margin: 0;
			padding: 0;
            overflow-x: hidden;
			
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
			margin: 0;
			padding: 0;
            overflow-x: hidden;

        }

        h1, h2, h3, .font-serif {
            font-family: 'Playfair Display', serif;
        }

        /* Premium Glassmorphism Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(10, 92, 90, 0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand img {
            height: 50px;
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--accent) !important;
        }
		
		/* Animated Background Hero Container */
        .hero-section {
            position: relative;
            padding: 80px 0 140px 0;
            color: #ffffff;
            overflow: hidden;
            min-height: 80vh;
            display: flex;
            align-items: center;
			
        }
		

        /* The moving background layer (Ken Burns Effect) */
        .hero-bg-animated {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/hearo-bg.jpg');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            animation: kenBurnsZoom 20s infinite alternate ease-in-out;
			transform: scale(1.15);
            z-index: 1;
        }
		
		/* Dark Premium Color Overlay */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 92, 90, 0.96) 0%, rgba(6, 60, 58, 0.88) 100%);
            z-index: 2;
        }

        /* Keeps text sharp and on top of animated layers */
        .hero-content-wrapper {
            position: relative;
            z-index: 3;
        }

        @keyframes kenBurnsZoom {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.15);
            }
        }

       
		/* Premium Ultra-White Header Style */
        .premium-header-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.5px;
            text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.25), 
                         0px 0px 1px rgba(0, 0, 0, 0.3);
        }

        .hero-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 25px;
        }

        .btn-premium-accent {
            background-color: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            border: none;
            box-shadow: 0 4px 15px rgba(230, 95, 92, 0.3);
        }

        .btn-premium-accent:hover {
            background-color: #d44f4c;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 95, 92, 0.4);
        }
		
		.btn-premium-primary {
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            border: none;
            box-shadow: 0 4px 15px rgba(230, 95, 92, 0.3);
        }

        .btn-premium-primary:hover {
            background-color: #00ba79;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 95, 92, 0.4);
        }

        .btn-premium-outline {
            border: 2px solid #ffffff;
            color: #ffffff;
            padding: 10px 28px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-premium-outline:hover {
            background: #ffffff;
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Section Header Styles */
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            color: var(--primary);
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }

        .section-title-center::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Floating Info Cards */
        .info-card {
            background: #ffffff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-top: 4px solid var(--primary);
            transition: transform 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        /* Topic Badge Cards */
        .topic-box {
            background: var(--light-bg);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            height: 100%;
            transition: all 0.3s ease;
        }

        .topic-box:hover {
            background: #ffffff;
            box-shadow: 0 8px 25px rgba(10, 92, 90, 0.08);
            transform: scale(1.02);
        }

        /* Faculty Circular Profiles */
        .faculty-card {
            text-align: center;
            margin-bottom: 30px;
        }

        .faculty-img-wrapper {
            width: 130px;
            height: 130px;
            margin: 0 auto 15px auto;
            border-radius: 50%;
            padding: 5px;
            border: 2px dashed var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .faculty-avatar {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2rem;
        }

        /* Pricing Grid Cards */
        .price-card {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 40px 30px;
            background: #ffffff;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        .price-card.featured {
            border: 2px solid var(--primary);
            box-shadow: 0 15px 35px rgba(10, 92, 90, 0.1);
        }

        .price-card.featured::before {
            content: 'EARLY BIRD';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--accent);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 40px;
            transform: rotate(45deg);
        }
		.price-card.featured-expired {
            border: 2px ;
            box-shadow: 0 15px 35px rgba(10, 92, 90, 0.1);
        }

        .price-card.featured-expired::before {
            content: 'EARLY BIRD';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--accent);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 40px;
            transform: rotate(45deg);
        }
		.price-card.spot {
            border: 2px ;
            box-shadow: 0 15px 35px rgba(10, 92, 90, 0.1);
        }

        .price-card.spot::before {
            content: 'SPOT';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--accent);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 40px;
            transform: rotate(45deg);
        }
 
		.price-card.standard {
            border: 2px solid var(--primary);
            box-shadow: 0 15px 35px rgba(10, 92, 90, 0.1);
        }

        .price-card.standard::before {
            content: 'STANDARD';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--accent);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 40px;
            transform: rotate(45deg);
        }

        /* Venue Showcase Overlay */
        .venue-showcase {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/62b99007d095b1656328199.jpg') center center/cover;
            color: white;
            border-radius: 12px;
            padding: 60px;
        }

        footer {
            background-color: #031b1a;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        footer h5 {
            color: #ffffff;
            margin-bottom: 20px;
        }

        /* Premium Back To Top Button */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--accent);
            color: #ffffff;
            border: none;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(230, 95, 92, 0.4);
            cursor: pointer;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        #backToTop.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #backToTop:hover {
            background-color: var(--primary);
            box-shadow: 0 6px 20px rgba(10, 92, 90, 0.4);
            transform: translateY(-4px);
        }
		
		/* Secure Communications block panel layout */
        .contact-pane {
            background: #0a2540;
            color: #ffffff;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 15px 35px rgba(10,37,64,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .contact-pane h2, .contact-pane h4 {
            color: #ffffff;
        }
        .text-yellow-contrast {
            color: var(--brand-warning) !important;
            font-weight: 700;
        }



/* --- 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;
}


/* Organizing Team Section Global Styling */
.team-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
    padding: 80px 0;
}

.category-badge {
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Premium Card View Styling */
.executive-card {
    background: #ffffff;
    border: 1px solid rgba(10, 92, 90, 0.08);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.executive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 92, 90, 0.06);
    border-color: rgba(10, 92, 90, 0.2);
}

/* Committee Internal Role Grid */
.role-group {
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.role-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.role-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 2px;
}

.officer-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Patrons Panel Styling */
.patrons-panel {
    background: rgba(10, 92, 90, 0.03);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 24px 30px;
}


/* Registration Module Typography & Containers */
.reg-section-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #031b1a 100%);
    position: relative;
    overflow: hidden;
}

.form-card-wrapper {
    background: #ffffff;
    border: 1px solid rgba(10, 92, 90, 0.06);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.reg-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.2px;
}

/* Premium Form Field Resets */
.premium-input-style {
    border: 1px solid #cbd5e1;
    padding: 10px 14px;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.premium-input-style:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 92, 90, 0.1);
    color: #0f172a;
}

/* Sticky Payment Sidebar Card */
.sticky-payment-sidebar {
    position: sticky;
    top: 100px;
}

.billing-breakdown-card {
    background: #f8fafb;
    border: 1px solid rgba(10, 92, 90, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

.billing-accent-strip {
    background-color: rgba(10, 92, 90, 0.04);
    border-bottom: 1px dashed rgba(10, 92, 90, 0.15);
}

/* Step Badges */
.step-indicator-badge {
    background: rgba(10, 92, 90, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
}


/* Organizing Partners Section */
.partners-section {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
}

.partners-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Premium Card Track for JPG Image Files */
.partner-logo-card {
    background: #ffffff;
    border: 1px solid rgba(10, 92, 90, 0.08);
    border-radius: 12px;
    padding: 20px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 92, 90, 0.06);
    border-color: rgba(10, 92, 90, 0.15);
}

/* Strict Image Scaling Controls */
.partner-logo-img {
    max-width: 100%;
    max-height: 90px; /* Restricts heights to keep varying JPG dimensions uniform */
    object-fit: contain; /* Ensures logos maintain proper aspect ratios without distortion */
    filter: grayscale(10%) contrast(100%);
    transition: filter 0.3s ease;
}

.partner-logo-card:hover .partner-logo-img {
    filter: grayscale(0%) contrast(105%);
}