/* 
* SpineExpert Main Stylesheet
* Colors:
* - Blue: #1B78BD
* - Accent Blue: #184F76
* - Dark Blue: #072E4D
* - Orange: #EF4B25
* - Yellow: #FDB016
* - Light Gray: #B9B7B8
*/

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Top Header (Contact Strip) Styles */
.top-header {
    background: linear-gradient(to right, #184F76, #072E4D);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.top-header a {
    color: white;
    margin-right: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.top-header a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.contact-info {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.social-icons a {
    margin-left: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Main Navigation Bar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    padding: 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.navbar .container {
    position: relative;
    padding-top: 2px;
    padding-bottom: 2px;
    z-index: 1031;
}

.navbar-scrolled {
    padding: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
}

/* Logo optimization for taller logos */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 5px;
    margin-right: 2rem;
    height: 100px;
    margin-top: -15px;
    margin-bottom: -15px;
    position: relative;
    z-index: 5;
}

.logo {
    max-height: 80px;
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    padding: 5px;
}

.navbar-scrolled .navbar-brand {
    height: 80px;
    margin-top: -10px;
    margin-bottom: -10px;
}

.navbar-scrolled .logo {
    max-height: 70px;
}

.navbar-nav {
    margin-left: 30px;
}

.navbar-nav .nav-item {
    margin: 0 5px;
    position: relative;
}

.navbar-nav .nav-link {
    color: #072E4D;
    font-weight: 600;
    padding: 8px 16px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
    color: #1B78BD;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link.active {
    color: #1B78BD;
    background-color: transparent !important;
}

/* Override Bootstrap hover styles */
.navbar-nav .nav-item:hover,
.navbar-nav .nav-item:focus,
.navbar-nav .nav-item:active {
    background-color: transparent !important;
}

.dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: 0.15em;
}

/* Active item underline effect */
.navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #1B78BD;
    transition: width 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.navbar-nav .nav-item:has(.nav-link.active)::after {
    width: 60%;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 8px;
    border-radius: 12px;
    min-width: 220px;
    margin-top: 18px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-top: 3px solid #1B78BD;
    overflow: hidden;
}

.dropdown-menu:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 25px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #1B78BD;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    color: #072E4D;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    margin: 2px 0;
    border-radius: 8px;
    display: block;
    width: 100%;
    font-size: 0.9rem
}

.dropdown-item:hover {
    background-color: rgba(27, 120, 189, 0.08);
    color: #1B78BD;
    padding-left: 28px;
}

.dropdown-item:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 0;
    height: 2px;
    background-color: #1B78BD;
    transition: all 0.25s ease;
    transform: translateY(-50%);
}

.dropdown-item:hover:before {
    width: 8px;
}

/* Register Button */
.register-btn {
    background-color: #EF4B25;
    color: white;
    border-radius: 30px;
    padding: 8px 24px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(239, 75, 37, 0.2);
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.register-btn:hover {
    background-color: #d13e1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 75, 37, 0.3);
}

.register-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(239, 75, 37, 0.2);
}

/* Navbar Collapse Animation */
.navbar-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
        transform-origin: top;
        opacity: 0;
        display: block;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1030;
    }
    
    .navbar-collapse.collapsing {
        opacity: 0;
        transform: scaleY(0);
        height: auto;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
    }
    
    .navbar-collapse.show {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
        transition: transform 0.3s ease, opacity 0.3s ease;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
    }

    .logo {
        max-height: 70px;
        max-width: 220px;
    }

    .navbar-nav {
        margin-left: 0;
    }
    
    /* Set consistent spacing for all nav items */
    .navbar-nav .nav-item {
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
        display: block;
        width: 100%;
    }
    
    .navbar-nav .nav-item::after {
        display: none;
    }
    
    /* Fix dropdown menu in mobile view */
    .dropdown-menu {
        margin: 0;
        padding: 0;
        box-shadow: none;
        border: none;
        border-left: 3px solid #1B78BD;
        border-radius: 0;
        background-color: rgba(27, 120, 189, 0.03);
        position: static !important;
        float: none;
        width: 100%;
        min-width: auto;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        pointer-events: auto !important;
    }
    
    .dropdown-menu:before {
        display: none !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 5px 0 5px 15px;
    }
    
    /* Make dropdown toggle more clickable */
    .dropdown-toggle {
        cursor: pointer !important;
        user-select: none !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }
    
    .dropdown-item {
        color: #072E4D;
        font-weight: 500;
        padding: 8px 15px;
        margin: 0;
        border-radius: 0;
    }

    .dropdown-item:hover {
        background-color: rgba(27, 120, 189, 0.1);
        color: #1B78BD;
        padding-left: 20px;
    }
    
    /* Fix spacing for dropdowns */
    .navbar-nav .nav-item.dropdown {
        margin-bottom: 0;
    }
    
    .navbar-nav .nav-item:not(:last-child) {
        margin-bottom: 0;
    }
    
    /* Adjust spacing for all navigation items */
    .navbar-nav .nav-item + .nav-item {
        margin-top: 0;
    }
    
    /* Make dropdown toggle work like other nav items */
    .dropdown-toggle {
        display: block;
        width: 100%;
    }
    
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
    
    .register-btn {
        margin-top: 10px;
        display: inline-block;
        width: auto;
        text-align: center;
    }
    
    .contact-info, .social-icons {
        justify-content: center;
        margin: 8px 0;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .top-header {
        padding: 10px 0;
    }
    
    .top-header .row > div {
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info a {
        margin: 5px 0;
    }
    
    /* Logo adjustment for mobile */
    .navbar-brand {
        height: 85px;
        margin-top: -10px;
        margin-bottom: -10px;
        margin-right: 0;
        padding: 5px;
    }
    
    .logo {
        max-height: 60px;
        max-width: 200px;
        padding: 4px;
    }
    
    /* Further compact mobile menu */
    .navbar-collapse {
        padding: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 12px;
    }
    
    .register-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .countdown-timer {
        gap: 0;
    }
    
    .countdown-separator {
        margin: 0 -4px;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: visible;
    margin-bottom: 100px;
    padding-bottom: 0;
    z-index: 10;
}

/* Add pattern background behind countdown */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23184f76' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
}

/* Carousel Slide Height */
.hero-slide {
    height: 650px;
    max-height: 100%;
    min-height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Content adjustments */
.hero-content {
    margin-bottom: 200px;
}

/* Hero Background Images */
.hero-slide-1 {
    background-image: url('../assets/hero-section/1.webp');
}

.hero-slide-2 {
    background-image: url('../assets/hero-section/2.webp');
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
    padding: 25px;
    color: white;
    background-color: rgba(7, 46, 77, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

/* Hero CTA Button */
.hero-cta-btn {
    background-color: #EF4B25;
    color: white;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(239, 75, 37, 0.3);
    transition: all 0.4s ease;
    border: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.hero-cta-btn:hover {
    background-color: #d13e1a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 75, 37, 0.4);
}

.hero-cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(239, 75, 37, 0.3);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background-size: 50%;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid white;
    opacity: 0.8;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: white;
    transform: scale(1.2);
}

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-slide {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-content {
        max-width: 650px;
    }
}

@media (max-width: 991.98px) {
    .hero-slide {
        height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content {
        max-width: 600px;
        padding: 20px;
    }
    
    .hero-cta-btn {
        padding: 8px 25px;
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: 550px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero-slide {
        height: 500px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-cta-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Countdown Timer Styles */
.countdown-wrapper {
    background: linear-gradient(45deg, #EF4B25, #FDB016);
    max-width: 550px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
}

.countdown-header {
    margin-bottom: 1.5rem;
}

.countdown-header h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.countdown-item {
    flex: 1;
    padding: 0.5rem;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    margin-top: -1rem;
}

@media (max-width: 767px) {
    .countdown-wrapper {
        padding: 1.5rem;
        bottom: -100px;
    }
    
    .countdown-header h2 {
        font-size: 1.2rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-wrapper {
        padding: 1rem;
        bottom: -90px;
    }
    
    .countdown-header h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .countdown-header {
        margin-bottom: 1rem;
    }
    
    .countdown-number {
        font-size: 1.7rem;
        margin-bottom: 0.3rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-separator {
        font-size: 1.3rem;
        margin-top: -0.5rem;
    }
}

/* Section Header */
.section-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #072E4D;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: #e94e1b;
}

.section-divider {
    height: 4px;
    width: 60px;
    background-color: #1B78BD;
    margin: 0 auto;
    border-radius: 2px;
}

/* Optimized Logo Container Styles */
.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 40px 0 60px;
    flex-wrap: wrap;
    contain: layout style; /* Optimize rendering */
}

.logo-card {
    width: 200px;
    height: 200px;
    transform: translateZ(0); /* Force GPU acceleration */
    will-change: transform; /* Hint to browser to optimize */
}

.logo-card-inner {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    contain: content; /* Optimize rendering */
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block; /* Prevent layout shifts */
    transform: translateZ(0); /* Force GPU acceleration */
}

/* Remove animations from logo cards for better performance */
.logo-card:hover .logo-card-inner {
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Welcome Card */
.welcome-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: visible;
    margin-bottom: 60px;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.welcome-content {
    padding: 3rem;
    will-change: auto;
    backface-visibility: visible;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.welcome-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.welcome-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #1B78BD, #EF4B25);
}

.welcome-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #072E4D;
    margin-bottom: 1rem;
}

.event-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1B78BD;
    margin-bottom: 1rem;
}

.host-text {
    font-size: 1.2rem;
    color: #072E4D;
}

.text-primary {
    color: #EF4B25 !important;
    font-weight: 600;
}

.welcome-body {
    color: #576777;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.welcome-body p {
    margin-bottom: 1.5rem;
}

.welcome-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.team-signature {
    color: #1B78BD;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .logos-container {
        gap: 2rem;
    }
    
    .logo-card {
        width: 180px;
        height: 180px;
    }
    
    .welcome-content {
        padding: 2.5rem;
    }
    
    .event-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-bottom: 60px;
    }
    
    .hero-section::after {
        bottom: -150px;
        height: 150px;
    }
    
    .hero-content {
        margin-bottom: 160px;
    }
    
    .countdown-wrapper {
        bottom: -80px;
    }
    
    .about-section {
        margin-top: -110px;
        padding: 80px 0 60px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .logos-container {
        margin: 20px 0 40px;
    }
    
    .countdown-wrapper {
        bottom: -80px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin-bottom: 50px;
    }
    
    .hero-section::after {
        bottom: 0px;
        height: 120px;
    }
    
    .hero-content {
        margin-bottom: 140px;
    }
    
    .countdown-wrapper {
        bottom: -70px;
    }
    
    .about-section {
        margin-top: -90px;
        padding: 70px 0 50px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .logos-container {
        margin: 15px 0 30px;
    }
    
    .countdown-wrapper {
        bottom: -70px;
    }
}

/* Fix AOS animation issues */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    transition: none !important;
}

/* Media queries for countdown timer */
@media (max-width: 991.98px) {
    .countdown-wrapper {
        max-width: 700px;
        padding: 1.8rem;
        bottom: -130px;
    }
    
    .countdown-item {
        min-width: 90px;
        padding: 1rem 0.8rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-separator {
        font-size: 2.5rem;
    }
    
    .countdown-header h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .countdown-wrapper {
        max-width: 90%;
        padding: 1.5rem;
        bottom: -120px;
    }
    
    .countdown-timer {
        gap: 0;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 0.3rem;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .countdown-separator {
        font-size: 2.2rem;
        padding-bottom: 1rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 575.98px) {
    .countdown-wrapper {
        padding: 1.2rem;
        bottom: -140px;
    }
    
    .countdown-timer {
        gap: 0;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.6rem 0.2rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .countdown-separator {
        font-size: 1.8rem;
        padding: 0 0.1rem 0.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .countdown-header h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 390px) {
    .countdown-wrapper {
        padding: 1rem;
    }
    
    .countdown-timer {
        gap: 0;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 0.5rem 0.1rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        padding: 0;
        margin: 0 -6px;
    }
    
    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 0;
    }
}

/* About Section Styles - Redesigned */
.about-section {
    padding: 63px 0 80px;
    position: relative;
    background-color: #f9f9f9;
    overflow: visible;
    margin-top: 0 !important;
    z-index: 5;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23184f76' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 1;
}

/* Committee Section Styles */
.committee-section {
    background-color: #f9f9f9;
}

.committee-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.committee-icon {
    margin-bottom: 15px;
    color: #e94e1b;
}

.committee-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.committee-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.committee-preview {
    margin-top: 15px;
}

.committee-images {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.committee-img-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e94e1b;
    margin: 0 -5px;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    position: relative;
    text-align: center;
}

.more-members {
    display: none !important;
    visibility: hidden !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #EF4B25;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.more-members:hover {
    display: none !important;
    visibility: hidden !important;
    transform: scale(1.1);
    background-color: #1B78BD;
}

.view-all-btn {
    background-color: #e94e1b;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: #d03b0a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 78, 27, 0.3);
}

/* Page Header Styles - Enhanced */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/about/1.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0 70px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 78, 27, 0.3) 0%, rgba(27, 120, 189, 0.3) 100%);
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: #e94e1b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/* Tab Transition Animations - Fixed */
.tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: none !important;
}

.tab-pane.active.show {
    opacity: 1;
    transform: translateY(0);
    display: block !important;
}

.tab-content {
    min-height: 300px; /* Ensure there's space for content to appear */
    position: relative;
    margin-top: 30px;
}

/* Enhanced tab design */
.nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.nav-pills .nav-link {
    color: #333;
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    z-index: 5;
}

.nav-pills .nav-link.active {
    background-color: #e94e1b;
    color: white;
    box-shadow: 0 5px 15px rgba(233, 78, 27, 0.3);
    transform: translateY(-3px);
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: #fff;
    transform: translateY(-2px);
    border-color: #e94e1b;
    color: #e94e1b;
}

/* Make sure image container is proper square */
.member-img {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* Perfect 1:1 Aspect Ratio */
    background-color: #f5f5f5;
}

/* Committee section background enhancement */
.committee-full-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.committee-full-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23184f76' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 0;
}

/* Committee Member Cards - Modern Redesign */
.member-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    max-width: 220px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.03);
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.member-img {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* Perfect 1:1 Aspect Ratio */
    background-color: #f8f8f8;
    /* Create subtle pattern background for images */
    background-image: linear-gradient(45deg, #f5f5f5 25%, transparent 25%), 
                      linear-gradient(-45deg, #f5f5f5 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f5f5f5 75%), 
                      linear-gradient(-45deg, transparent 75%, #f5f5f5 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.member-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.member-card:hover .member-img img {
    transform: scale(1.08);
}

.member-info {
    padding: 18px 15px;
    text-align: center;
    position: relative;
    background: #fff;
}

.member-info::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #e94e1b;
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-card:hover .member-info::before {
    opacity: 1;
}

.member-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    transition: all 0.3s ease;
}

.member-card:hover .member-info h3 {
    color: #e94e1b;
}

.member-info .location {
    font-size: 0.85rem;
    color: #777;
    letter-spacing: 0.3px;
}

/* Image size recommendation: 400x400px square images work best */

@media (max-width: 767px) {
    .member-card {
        max-width: 180px;
    }
    
    .member-info {
        padding: 15px 12px;
    }
    
    .member-info h3 {
        font-size: 0.95rem;
    }
    
    .member-info .location {
        font-size: 0.8rem;
    }
}

/* Make the About section title more prominent */
.about-section .section-header {
    padding-bottom: 1.5rem;
    z-index: 5;
    position: relative;
}

.about-section .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10;
    position: relative;
}

/* Host Faculty Styles - Simplified */
.host-faculty-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #072E4D;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.host-faculty-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 4px;
    background: linear-gradient(90deg, #e94e1b, #1B78BD);
    width: 60px;
    margin: 0 auto;
    border-radius: 2px;
}

.host-faculty-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #184F76;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faculty-card {
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.faculty-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding: 5px;
}

.faculty-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27, 120, 189, 0.4), rgba(233, 78, 27, 0.4));
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.faculty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 0;
}

.faculty-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #072E4D;
    transition: all 0.3s ease;
}

.faculty-card:hover .faculty-img {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(27, 120, 189, 0.2);
}

.faculty-card:hover .faculty-img::before {
    opacity: 0.3;
}

.faculty-card:hover h4 {
    color: #1B78BD;
}

/* Media queries for faculty cards */
@media (max-width: 991px) {
    .faculty-img {
        width: 130px;
        height: 130px;
    }
    
    .host-faculty-title {
        font-size: 2.8rem;
    }
    
    .host-faculty-subtitle {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 767px) {
    .faculty-img {
        width: 110px;
        height: 110px;
    }
    
    .faculty-card h4 {
        font-size: 1rem;
    }
    
    .host-faculty-title {
        font-size: 2.2rem;
    }
    
    .host-faculty-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .faculty-img {
        width: 90px;
        height: 90px;
    }
    
    .faculty-card h4 {
        font-size: 0.85rem;
    }
    
    .host-faculty-title {
        font-size: 1.8rem;
    }
    
    .host-faculty-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .faculty-card {
        margin-bottom: 1.5rem;
    }
}

/* Faculty container with modern styling */
.faculty-container {
    position: relative;
    padding: 0px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23184f76' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faculty-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e94e1b, #1B78BD);
    border-radius: 16px 16px 0 0;
}

@media (max-width: 767px) {
    .faculty-container {
        padding: 25px 0;
        border-radius: 12px;
    }
}

/* Host title without divider */
.host-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #072E4D;
    margin-bottom: 0;
    position: relative;
}

.host-title span {
    color: #e94e1b;
}

/* Conference Secretariat Styles */
.contact-number {
    color: #1B78BD;
    font-weight: 500;
    margin-top: 5px;
}

.email-contact {
    font-size: 1.2rem;
    color: #072E4D;
    margin-top: 20px;
}

.venue-details {
    background-color: rgba(231, 241, 250, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    border-left: 4px solid #1B78BD;
}

.venue-name {
    color: #072E4D;
    font-weight: 600;
    margin-bottom: 10px;
}

.venue-address {
    color: #555;
    line-height: 1.6;
}

.registration-section h2 {
    color: #072E4D;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.registration-section h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e94e1b, #1B78BD);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.bank-details {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 auto;
    max-width: 550px;
}

.bank-details h5 {
    color: #072E4D;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #e94e1b;
    padding-bottom: 10px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.bank-details table td {
    padding: 8px 5px;
    border-color: #eee;
}

.bank-details table td:first-child {
    font-weight: 500;
    color: #072E4D;
}

.online-registration .register-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1B78BD, #e94e1b);
    border: none;
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(233, 78, 27, 0.2);
}

.online-registration .register-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(233, 78, 27, 0.3);
}

@media (max-width: 767px) {
    .email-contact {
        font-size: 1rem;
    }
    
    .venue-details {
        padding: 15px;
    }
    
    .bank-details {
        padding: 15px !important;
        margin-bottom: 20px;
    }
    
    .online-registration .register-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Registration Section Styles */
.registration-section {
    position: relative;
    background-color: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    /* background: linear-gradient(to bottom right, rgba(7, 46, 77, 0.05), rgba(27, 120, 189, 0.05)); */
    z-index: 0;
}

.registration-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.bank-details-col {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #072E4D 0%, #1B78BD 100%);
    color: white;
}

.bank-details-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.bank-details-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #EF4B25;
    border-radius: 2px;
}

.bank-detail-item {
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
}

.detail-label {
    font-weight: 600;
    min-width: 120px;
    color: rgba(255, 255, 255, 0.8);
}

.detail-value {
    font-weight: 500;
    color: white;
    flex: 1;
}

.online-reg-col {
    background-color: white;
    padding: 40px;
}

.online-reg-content {
    padding: 20px;
}

.online-reg-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #072E4D;
    margin-bottom: 10px;
}

.online-reg-subtitle {
    font-size: 1.4rem;
    color: #1B78BD;
    margin-bottom: 30px;
}

.reg-button-container {
    margin-top: 30px;
}

.registration-btn {
    background: linear-gradient(135deg, #EF4B25 0%, #FDB016 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(239, 75, 37, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.registration-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 75, 37, 0.4);
    color: white;
}

.registration-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(239, 75, 37, 0.4);
}

.registration-info {
    margin-top: 30px;
}

.reg-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.reg-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #1B78BD, #EF4B25);
    z-index: 2;
}

.reg-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reg-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(27, 120, 189, 0.1) 0%, rgba(239, 75, 37, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.reg-info-icon i {
    font-size: 24px;
    color: #1B78BD;
}

.reg-info-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #072E4D;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.reg-info-card h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #EF4B25;
    border-radius: 1.5px;
}

.event-info {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.event-info a {
    color: #1B78BD;
    font-weight: 500;
    transition: color 0.2s ease;
}

.event-info a:hover {
    color: #EF4B25;
}

.reg-info-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #072E4D;
    margin-bottom: 15px;
}

.includes-list, .registration-fields {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.includes-list li, .registration-fields li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

.includes-list li:before, .registration-fields li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #1B78BD;
    font-size: 14px;
}

.note-text {
    font-size: 14px;
    color: #666;
    background-color: rgba(253, 176, 22, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid #FDB016;
}

.payment-details {
    margin-top: 10px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.payment-label {
    font-weight: 500;
    color: #555;
}

.payment-value {
    font-weight: 700;
    color: #072E4D;
    font-size: 1.2rem;
}

.registration-note {
    font-size: 15px;
    color: #555;
    margin-top: 15px;
}

/* Media Queries for Registration Section */
@media (max-width: 991px) {
    .bank-details-col, .online-reg-col {
        padding: 30px;
    }
    
    .bank-details-title, .online-reg-title {
        font-size: 1.3rem;
    }
    
    .online-reg-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .bank-details-col, .online-reg-col {
        padding: 25px;
    }
    
    .registration-card .row {
        flex-direction: column;
    }
    
    .bank-details-title {
        font-size: 1.2rem;
    }
    
    .online-reg-title {
        font-size: 2rem;
    }
    
    .online-reg-subtitle {
        font-size: 1rem;
    }
    
    .reg-info-card {
        margin-bottom: 20px;
    }
    
    .reg-info-icon {
        width: 50px;
        height: 50px;
    }
    
    .reg-info-icon i {
        font-size: 20px;
    }
    
    .reg-info-card h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .registration-section {
        padding: 60px 0;
    }
    
    .bank-details-col, .online-reg-col {
        padding: 20px;
    }
    
    .registration-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .reg-info-card {
        padding: 20px;
    }
    
    .payment-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .payment-value {
        margin-top: 5px;
    }
}

/* Add styles for Venue Section */

/* Venue Section */
.venue-section {
    background-color: #ffffff;
    position: relative;
}

.venue-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(7, 46, 77, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.map-container {
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}

.map-container iframe {
    height: 100%;
    width: 100%;
}

.venue-details-col {
    background: linear-gradient(135deg, #072E4D 0%, #0A4270 100%);
    color: #fff;
    padding: 30px;
    height: 100%;
}

.venue-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #EF4B25;
    padding-bottom: 10px;
    display: inline-block;
}

.venue-address, 
.venue-contact {
    display: flex;
    margin-bottom: 15px;
}

.venue-address i, 
.venue-contact i {
    color: #EF4B25;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
}

.venue-address p, 
.venue-contact p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.95;
    font-weight: 500;
}

.venue-directions h4, 
.venue-facilities h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}

.directions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.directions-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.directions-list li i {
    color: #EF4B25;
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.facilities-icons {
    display: flex;
    flex-wrap: wrap;
}

.facility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 25px;
    margin-bottom: 15px;
}

.facility-item i {
    font-size: 24px;
    color: #EF4B25;
    margin-bottom: 5px;
}

.facility-item span {
    font-size: 14px;
}

.venue-btn {
    background-color: #EF4B25;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.venue-btn:hover {
    background-color: #d43b17;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 75, 37, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .map-container {
        border-radius: 8px 8px 0 0;
        min-height: 350px;
    }
    
    .venue-details-col {
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 767.98px) {
    .venue-name {
        font-size: 24px;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .facility-item {
        margin-right: 15px;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #072E4D 0%, #0A4270 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.footer-logo {
    margin-bottom: 20px;
    background-color: white;
    display: inline-block;
    padding: 10px;
    border-radius: 8px;
}

.footer-logo-img {
    max-width: 160px;
    filter: none !important;
    opacity: 1 !important;
}

.footer-logo img {
    max-width: 160px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    filter: none;
    opacity: 1;
}

.footer-about {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #EF4B25;
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #EF4B25;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    cursor: pointer;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.footer-links a i {
    color: #EF4B25;
    margin-right: 8px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #EF4B25;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: #EF4B25;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 16px;
}

.footer-contact li span {
    flex: 1;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact li a:hover {
    color: #EF4B25;
}

.newsletter-text {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-subscribe .input-group {
    border-radius: 50px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3px;
}

.footer-subscribe .form-control {
    border: none;
    background-color: transparent;
    box-shadow: none;
    color: #fff;
    padding: 10px 15px;
    height: auto;
}

.footer-subscribe .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe .subscribe-btn {
    background-color: #EF4B25;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.footer-subscribe .subscribe-btn:hover {
    background-color: #d43b17;
    transform: translateX(3px);
}

.copyright-bar {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 50px;
    font-size: 14px;
}

.copyright-bar p {
    color: rgba(255, 255, 255, 0.7);
}

.copyright-bar a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright-bar a:hover {
    color: #EF4B25;
}

/* Responsive Adjustments for Footer */
@media (max-width: 991.98px) {
    .footer-section {
        padding: 50px 0 0;
    }
    
    .footer-heading {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links a i,
    .footer-contact li i {
        margin-right: 5px;
    }
    
    .footer-contact li {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact li i {
        margin-bottom: 5px;
    }
    
    .copyright-bar {
        text-align: center;
    }
    
    .copyright-bar .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

/* Remove Wave Design Elements */
.wave-container,
.section-wave,
.wave-top,
.wave-bottom,
.wave-container svg,
.section-wave svg {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    animation: none !important;
}

@keyframes wave-animation {
    0%, 100% {
        transform: none;
    }
} 

/* Faculty Section Styles */
.faculty-section-bg {
    background-color: #f4f8fb !important; 
    position: relative !important;
    overflow: hidden !important;
    border-top: 3px solid #e9ecef !important;
    border-bottom: 3px solid #e9ecef !important;
}

.faculty-section-bg::before {
    content: none;
    display: none;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.preloader-spinner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    width: 150px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(233, 78, 27, 0.2);
    border-top: 4px solid #e94e1b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader.fade-out {
    opacity: 0;
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}