/* General */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&family=Montserrat:wght@700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    /* Matches the public CoMSAR index page. */
    --primary: #e85d14;
    --primary-blue: #0b5fa5;
    --dark-blue: #061a33;
    --accent-gold: #f47a20;
    --dark: #061a33;
    --text: #23395d;
    --muted: #6b7a95;
    --bg: #f7fbff;
    --border: #e5ecf8;
    --white: #ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    width:100%;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}

body{
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    overflow-x:auto;
    overflow-y:auto;
    color: var(--text);
    line-height: 1.5;
}

.container,
.container-fluid {
    margin-left:auto !important;
    margin-right:auto !important;
}

/* Navbar */

.navbar{
    background: rgba(7, 22, 47, 0.95);
    backdrop-filter:blur(10px);
    padding: 0.5rem 0;
    padding: 1rem 0;
    transition: all 0.3s ease;
   
}

.navbar-brand{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
}

.nav-link{
    color:white !important;
    margin-left:15px;
}

.nav-link:hover{
    color: var(--accent-gold) !important;
}

/* Hero */

.hero{
    padding: 140px 0 100px;

    background:
    linear-gradient(
    rgba(7, 22, 47, 0.70),
    rgba(18, 52, 95, 0.88)
    ),

    url('https://jadavpuruniversity.in/storage/2021/05/WhatsApp-Image-2021-05-03-at-5.31.34-PM.jpg');
    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
}

.hero-content{
    max-width: 850px;
    padding: 0 20px;
}

.hero h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    letter-spacing: -0.02em;
}

.hero p{
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Buttons */

.btn-main{
    background: var(--primary-blue);
    color:white;
    font-weight: 700;
    padding: 15px 40px;
    border-radius:30px;
    border:none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 87, 211, 0.3);
}

.btn-main:hover{
    background: var(--dark-blue);
    color:white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 87, 211, 0.4);
}

/* Sections */

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
    font-weight: 800;
    color: var(--dark);
    font-size: 2rem;
}

/* Cards */

.card{
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: none;
    background: var(--white);
}

.card-body{
    padding:24px;
}

/* Speaker Cards */

.speaker-avatar{
    width:120px;
    height:120px;
    border-radius:50%;
    display:grid;
    place-items:center;
    margin:0 auto 15px;
    background: var(--gray-light);
    color: var(--primary);
    font-size:2rem;
    font-weight:800;
}

.speaker-card img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

/* Countdown */

.countdown{
    text-align:center;
}

.countdown-box{
    background: var(--white);
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.countdown-number{
    font-size:2rem;
    font-weight:bold;
    color: var(--primary-blue);
}

/* Footer */

footer{
    background:#0a1c1e;
    color:white;
    padding:30px;
    text-align:center;
}

footer a{
    color: var(--accent-gold);
    text-decoration:none;
}

/* Dashboard */

.dashboard-card{
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

body.dashboard-page {
    margin:0;
    background:#f8fafc;
}

body.dashboard-page .layout {
    min-height:100vh;
    display: flex;
}

body.dashboard-page .sidebar {
    background: var(--white);
    color: var(--dark);
    border-right: 1px solid var(--border);
    padding-bottom:24px;
    position:fixed;
    top:0;
    left:0;
    width:280px;
    height:100vh;
    overflow-y:auto;
    transform:translateX(0);
    transition:transform .3s ease;
    z-index:1100;
}

body.dashboard-page .layout {
    min-height:100vh;
    display:grid;
    grid-template-columns:280px 1fr;
    gap:24px;
    padding-left:280px;
}

body.dashboard-page.sidebar-open .sidebar {
    transform:translateX(0);
}

body.dashboard-page .sidebar-toggle {
    display:none;
    background:#0d57d3;
    color:#fff;
    border:none;
    width:44px;
    height:44px;
    border-radius:12px;
    align-items:center;
    justify-content:center;
}

body.dashboard-page .sidebar-toggle i {
    font-size:1.1rem;
}

@media (max-width: 991px) {
    body.dashboard-page .layout {
        padding-left:0;
        grid-template-columns:1fr;
    }

    body.dashboard-page .sidebar {
        width:260px;
        transform:translateX(-115%);
        box-shadow:0 20px 60px rgba(0,0,0,.25);
    }

    body.dashboard-page.sidebar-open .sidebar {
        transform:translateX(0);
    }

    body.dashboard-page .sidebar-toggle {
        display:flex;
    }

    body.dashboard-page .topbar {
        margin-bottom:18px;
    }
}

body.dashboard-page .logo {
    padding: 30px 24px;
    border-bottom: 1px solid var(--border);
}

body.dashboard-page .logo h3 {
    margin:0;
    font-weight:700;
}

body.dashboard-page .logo p {
    margin:6px 0 0;
    opacity:.9;
    font-size:14px;
}

body.dashboard-page .sidebar a {
    display:block;
    color:#fff;
    padding:16px 24px;
    text-decoration:none;
    transition:background .2s ease, color .2s ease;
}

body.dashboard-page .sidebar a:hover {
    background:rgba(255,255,255,.14);
}

body.dashboard-page .topbar {
    background:#fff;
    padding:26px 28px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    border-radius:22px;
}

body.dashboard-page .content {
    padding:24px 20px;
}

body.dashboard-page .panel,
body.dashboard-page .status-card,
body.dashboard-page .module-card {
    border:0;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

body.dashboard-page .status-card .card-body,
body.dashboard-page .module-card .card-body {
    min-height:170px;
    display:grid;
    align-content:center;
    text-align:center;
    padding:28px;
}

body.dashboard-page .card-icon,
body.dashboard-page .module-icon {
    font-size:38px;
    margin-bottom:14px;
}

/* Responsive dashboard cards: ensure centering on small screens and proper widths */
body.dashboard-page .content .row {
    display:flex;
    flex-wrap:wrap;
    gap:24px;
}

body.dashboard-page .content .row > [class*="col-"] {
    display:flex;
    flex-direction:column;
}

@media (max-width: 991px) {
    body.dashboard-page .content .row {
        justify-content:center;
    }

    body.dashboard-page .content .col-md-3,
    body.dashboard-page .content .col-md-4,
    body.dashboard-page .content .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

@media (min-width: 992px) {
    body.dashboard-page .content .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    body.dashboard-page .content .col-md-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

body.dashboard-page .card-title {
    color:#374a72;
    font-weight:700;
}

body.dashboard-page .card-value {
    font-size:20px;
    font-weight:700;
    overflow-wrap:anywhere;
    color:#0b4ccf;
}

body.dashboard-page .footer-box {
    background:#fff;
    padding:26px;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.06);
    height:100%;
}

@media(max-width:992px) {
    body.dashboard-page .layout { grid-template-columns:1fr; }
    body.dashboard-page .sidebar { position:relative; width:100%; }
    body.dashboard-page .topbar { margin-bottom:18px; }
}

@media(max-width:768px) {
    body.dashboard-page .sidebar a { padding:14px 18px; }
    body.dashboard-page .topbar { padding:20px 20px; }
    body.dashboard-page .status-card .card-body,
    body.dashboard-page .module-card .card-body { min-height:auto; padding:22px; }
}

/* Forms */

.form-control{
    border-radius:10px;
}

.btn-success,
.btn-primary,
.btn-warning{
    border-radius:10px;
}

/* Page-specific styles */

body.login-page,
body.register-page,
body.forgot-page,
body.reset-page,
body.profile-page,
body.participant-registration-page {
    min-height:100vh;
    background:#ecf2f7;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 0;
}

.login-card,
.register-box .card,
.forgot-page .reset-box .card,
.reset-card,
.profile-card,
.registration-card {
    width:100%;
    max-width:560px;
    border:none;
    border-radius:24px;
    box-shadow:0 22px 50px rgba(15,38,74,.08);
    overflow:hidden;
    background:#fff;
}

.login-card {
    max-width:480px;
}

.login-header,
.register-box .card .card-header,
.forgot-page .reset-box .card .card-header,
.reset-card .card-header,
.profile-card .card-header,
.registration-card .card-header {
    background:#0b63d7;
    color:#fff;
    text-align:center;
    padding:26px 24px;
}

.login-body,
.register-box .card-body,
.forgot-page .reset-box .card-body,
.reset-card .card-body,
.profile-card .card-body,
.registration-card .card-body {
    padding:34px;
}

.login-header h2,
.register-box h2,
.forgot-page h2,
.reset-card h2,
.profile-card h2,
.registration-card h2 {
    margin:0;
    font-size:1.8rem;
    letter-spacing:.02em;
}

.btn-login,
.btn-register,
.btn-primary,
.btn-danger,
.btn-success,
.btn-warning {
    border-radius:12px;
    transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn-login:hover,
.btn-register:hover,
.btn-primary:hover,
.btn-danger:hover,
.btn-success:hover,
.btn-warning:hover {
    transform:translateY(-1px);
}

.form-control {
    border-radius:14px;
    border:1px solid #d9e2ec;
    padding:14px 16px;
    box-shadow:none;
}

.form-control:focus {
    border-color:#0b63d7;
    box-shadow:0 0 0 0.2rem rgba(11,99,215,.16);
}

label {
    font-weight:600;
    color:#243b53;
}

.text-muted {
    color:#5f6d7a !important;
}

.login-card,
.register-box .card,
.forgot-page .reset-box .card,
.reset-card,
.profile-card,
.registration-card {
    background:#ffffff;
}

.footer-links {
    text-align:center;
    margin-top:18px;
}

.footer-links a {
    color:#0b63d7;
    text-decoration:none;
}

.footer-links a:hover {
    text-decoration:underline;
}

.password-box {
    position:relative;
}

.toggle-password {
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#6c7a8a;
}

body.register-page .register-box,
body.forgot-page .reset-box,
body.reset-page .reset-card,
body.profile-page .profile-card,
body.participant-registration-page .registration-card {
    width:100%;
    max-width:620px;
}

body.register-page,
body.forgot-page,
body.reset-page,
body.profile-page,
body.participant-registration-page {
    background:#e7eef7;
}

.section-title,
.page-title {
    color:#0b63d7;
    font-weight:700;
    letter-spacing:.01em;
}

.card h5,
.card h4 {
    color:#102a43;
}

.card {
    border:none;
    border-radius:24px;
    box-shadow:0 14px 36px rgba(15,38,74,.06);
}

.btn-main {
    background:#0b63d7;
    color:white;
    font-weight:700;
    padding:14px 100px;
    border-radius:30px;
    border:none;
}

.btn-main:hover {
    background:#094f9d;
}

body.home-page {
    background:#e7eef7;
}

body.home-page .navbar {
    background:rgba(255, 255, 255, 0.96);
    box-shadow:0 18px 40px rgba(15, 43, 98, 0.08);
    transition: background .3s ease, box-shadow .3s ease;
}

body.home-page .navbar-brand img {
    max-height: 40px;
    max-height: 56px;
}

body.home-page .nav-link {
    color:var(--dark) !important;
    font-weight: 600;
}

body.home-page .nav-link:hover {
    color:var(--primary) !important;
}

body.home-page .hero {
    min-height: 60vh;
    padding: 0;
    background-color: #030509;
    background-image: url('https://jadavpuruniversity.in/storage/2021/05/WhatsApp-Image-2021-05-03-at-5.31.34-PM.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    position:relative;
    overflow:hidden;
}

body.home-page .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.72));
    pointer-events: none;
}

body.home-page .hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(3, 5, 9, 0) 0%, rgba(3, 5, 9, 0.90) 100%);
    pointer-events: none;
}

body.home-page .hero-content {
    position: relative;
    z-index: 3;
}

body.home-page .hero > .position-absolute {
    top:0;
    left:0;
    right:0;
    bottom:0;
    position:absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 2rem;
    z-index:2;
}

body.home-page .hero .container {
    width:100%;
    max-width:100%;
    padding-left:0;
    padding-right:0;
}

body.home-page .hero-content {
    max-width: 100%;
    width:100%;
    padding: 36px 28px 32px;
    text-align: center;
    color: #f8fafc;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 30px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.30);
}

body.home-page .hero h1 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size:3.8rem;
    line-height:1.02;
    letter-spacing: -0.04em;
    text-shadow: 0 20px 60px rgba(0,0,0,0.45);
    margin-bottom: 1rem;
    max-width: 100%;
    width: 100%;
    color: #ffffff;
}

.hero-label {
    
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .03em;
    z-index: 2000;
    background: rgba(255,255,255,0.96);
    color: var(--dark);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(15,38,74,0.06);
    box-shadow: 0 8px 20px rgba(15,38,74,0.08);
    display: inline-block;
}

@media (max-width: 768px) {
    .hero-label {
        /* place label in normal flow and center it on small screens to avoid overlap */
        position: static;
        top: auto;
        left: auto;
        transform: none;
        margin: 10px auto 8px;
        font-size: 1rem;
        text-align: center;
        display: inline-block;
        width: auto;
        z-index: 2000;
        background: rgba(255,255,255,0.98);
        color: var(--dark);
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid rgba(15,38,74,0.06);
        box-shadow: 0 8px 18px rgba(15,38,74,0.06);
    }

    /* add some top spacing so the heading doesn't collide with the label */
    body.home-page .hero-content {
        padding-top: 8px;
    }
}

@media (max-width: 420px) {
    .hero-label {
        font-size: 0.95rem;
        margin: 8px 0 6px;
    }
    body.home-page .hero h1 {
        font-size: 1.9rem;
    }
}

.hero-label > span {
    background: linear-gradient(90deg, #071024 0%, #16489b 45%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

body.home-page .hero h1 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size:3.8rem;
    line-height:1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: transparent;
    background: linear-gradient(90deg, #70a7ff 0%, #ffffff 45%, #d2c6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media(min-width: 992px) {
    body.home-page .hero > .position-absolute {
        justify-content:flex-start;
        padding: 5rem 4rem;
    }
    body.home-page .hero-content {
        padding: 32px 0 16px;
    }
    body.home-page .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}

body.home-page .hero p {
    font-size:1.1rem;
    margin-top:1rem;
    max-width:720px;
    margin-left:auto;
    margin-right:auto;
    color: rgba(255,255,255,0.90);
}

.hero-meta {
    display: inline-block;
    text-align: center;
}

.hero-meta p {
    margin-bottom: 0.4rem;
}

body.home-page .hero .btn-main {
    background:#0b63d7;
    color:#fff;
    padding:14px 32px;
    border-radius:30px;
    text-transform:uppercase;
    letter-spacing:.05em;
    box-shadow:0 18px 35px rgba(11, 99, 215, 0.24);
}

body.home-page .hero .btn-main:hover {
    background:#094f9d;
}

body.home-page .hero .btn-outline-light {
    color:#fff;
    border-color: rgba(255,255,255,0.95);
    border-width: 2px;
    border-radius:30px;
    padding:13px 30px;
}

@media(max-width: 992px) {
    body.home-page .hero {
        min-height: 88vh;
    }

    body.home-page .hero h1 {
        font-size:2.8rem;
    }

    body.home-page .hero-content {
        padding: 36px 24px 34px;
    }
}

@media(max-width:768px) {
    body.home-page .hero {
        min-height: auto;
    }
    body.home-page .hero h1 {
        font-size:2.2rem;
    }
    body.home-page .hero p {
        font-size:1rem;
    }
}

/* Page-specific styles */

body.login-page,
body.register-page,
body.forgot-page,
body.reset-page,
body.profile-page,
body.participant-registration-page {
    min-height:100vh;
    background:linear-gradient(180deg, rgba(224, 166, 166, 0.1), rgba(83, 86, 88, 0.02));
    display:block;
    padding:80px 16px 60px;
    position:relative;
}

body.profile-page {
    background:linear-gradient(180deg, rgba(216, 145, 145, 0.08), rgba(95, 82, 82, 0.02)), url('https://jadavpuruniversity.in/storage/2021/05/WhatsApp-Image-2021-05-03-at-5.31.34-PM.jpg');
    background-size:cover;
    background-position:center;
}

body.home-page {
    padding-top:0;
}

body.home-page .navbar.fixed-top {
    top:0;
}

.site-header {
    width:100%;
    background:rgba(13, 86, 211, 0.95);
    color:#fff;
    padding:18px 0;
    position:fixed;
    top:0;
    left:0;
    z-index:1050;
    box-shadow:0 8px 24px rgba(13,86,211,.18);
}

.site-header-title {
    font-size:1.2rem;
    font-weight:700;
    letter-spacing:.05em;
    text-align:center;
}

body.login-page,
body.register-page,
body.forgot-page,
body.reset-page,
body.profile-page,
body.participant-registration-page {
    padding-top:90px;
}

body.login-page::before,
body.register-page::before {
    content:'';
    position:absolute;
    inset:0;
    background-image:url('../images/logo.png');
    background-position:center center;
    background-size:contain;
    background-repeat:no-repeat;
    opacity:.07;
    pointer-events:none;
    z-index:0;
}

body.login-page,
body.register-page {
    background-color:transparent;
}

.login-card,
.register-box .card,
.forgot-page .reset-box .card,
.reset-card,
.profile-card,
.registration-card {
    width:100%;
    max-width:640px;
    border:none;
    border-radius:26px;
    box-shadow:0 26px 70px rgba(15,38,74,.12);
    overflow:hidden;
    background:rgba(255,255,255,0.18);
    position:relative;
    backdrop-filter:blur(18px);
    z-index:1;
}

.brand-logo {
    width:120px;
    height:auto;
    display:block;
    margin:0 auto 18px;
    position:relative;
    z-index:1;
}

.login-card,
.register-box .card {
    padding:0;
}

.login-card .login-header,
.register-box .card-body {
    background:rgba(255,255,255,0.96);
    position:relative;
    z-index:1;
}

.login-card {
    max-width:520px;
}

.login-header,
.register-box .card .card-header,
.forgot-page .reset-box .card .card-header,
.reset-card .card-header,
.profile-card .card-header,
.registration-card .card-header {
    background:#0d57d3;
    color:#fff;
    text-align:center;
    padding:28px 24px;
}

.login-body,
.register-box .card-body,
.forgot-page .reset-box .card-body,
.reset-card .card-body,
.profile-card .card-body,
.registration-card .card-body {
    padding:36px 32px;
}

.login-header h2,
.register-box h2,
.forgot-page h2,
.reset-card h2,
.profile-card h2,
.registration-card h2 {
    margin:0;
    font-size:2rem;
    letter-spacing:.01em;
}

.btn-login,
.btn-register,
.btn-primary,
.btn-danger,
.btn-success,
.btn-warning {
    border-radius:999px;
    font-weight:700;
    padding:14px 22px;
    transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn-login {
    display:block;
    margin:0 auto 20px;
    min-width:180px;
}

.btn-login:hover,
.btn-register:hover,
.btn-primary:hover,
.btn-danger:hover,
.btn-success:hover,
.btn-warning:hover {
    transform:translateY(-2px);
    box-shadow:0 16px 32px rgba(15,38,74,.14);
}

.form-control {
    border-radius:16px;
    border:1px solid #d8e2ef;
    padding:14px 16px;
    box-shadow:none;
}

.form-control:focus {
    outline:0;
    border-color:#0d57d3;
    box-shadow:0 0 0 .2rem rgba(13,87,211,.16);
}

label {
    font-weight:700;
    color:#203d6a;
}

.text-muted {
    color:#65758b !important;
}

.footer-links {
    text-align:center;
    margin-top:18px;
}

.footer-links a {
    color:#0d57d3;
    text-decoration:none;
}

.footer-links a:hover {
    text-decoration:underline;
}

.password-box {
    position:relative;
}

.toggle-password {
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#667a8c;
}

body.register-page .register-box,
body.forgot-page .reset-box,
body.reset-page .reset-card,
body.profile-page .profile-card,
body.participant-registration-page .registration-card {
    width:100%;
    max-width:820px;
    margin:0 auto;
}

body.register-page,
body.forgot-page,
body.reset-page,
body.participant-registration-page {
    background:transparent;
}

body.profile-page {
    background:linear-gradient(rgba(9,41,80,.72), rgba(9,41,80,.40)), url('https://jadavpuruniversity.in/storage/2021/05/WhatsApp-Image-2021-05-03-at-5.31.34-PM.jpg');
    background-size:cover;
    background-position:center;
    min-height:100vh;
    padding-top:120px;
}

.profile-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:32px;
    flex-wrap:wrap;
}

.profile-avatar {
    width:96px;
    height:96px;
    border-radius:50%;
    background:#0d57d3;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:2.4rem;
    font-weight:800;
    box-shadow:0 18px 40px rgba(13,43,98,.16);
}

.profile-summary-card,
.profile-detail-card {
    border-radius:22px;
    box-shadow:0 18px 42px rgba(15,38,74,.08);
    border:none;
}

.profile-summary-card .list-group-item {
    border:none;
    padding:18px 20px;
}

.profile-summary-card .list-group-item:not(:last-child) {
    border-bottom:1px solid #eef3fb;
}

.profile-status-badge {
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.55rem 1rem;
    border-radius:999px;
    background:#e8f1ff;
    color:#0d57d3;
    font-weight:700;
    margin-bottom:1.5rem;
}

.profile-field-label {
    font-weight:700;
    color:#2d4068;
}

.profile-action-row {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.profile-action-row .btn {
    min-width:150px;
}

.section-title,
.page-title {
    color:#0d57d3;
    font-weight:700;
    letter-spacing:.01em;
}

.card h5,
.card h4 {
    color:#122e57;
}

.card {
    border:none;
    border-radius:26px;
    box-shadow:0 16px 42px rgba(15,38,74,.08);
}

.btn-main {
    background:#0d57d3;
    color:white;
    font-weight:700;
    padding:14px 32px;
    border-radius:30px;
    border:none;
}

.btn-main:hover {
    background:#0b49a8;
}

/* New Homepage Styles for ICAMCoMP - 2026 */
body.home-page {
    padding-top: 70px; /* Adjust for fixed navbar */
    background-color: #f8f9fa;
}

.home-page .navbar {
    /* Start transparent and transition smoothly */
    background: transparent !important;
    transition: background-color 0.4s ease-out;
}

.home-page .navbar.navbar-scrolled {
    /* Add solid background and shadow on scroll */
    background: rgba(10, 25, 47, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.home-page .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-section-new {
    position: relative;
    padding: 120px 0;
    background: url('https://jadavpuruniversity.in/storage/2021/05/WhatsApp-Image-2021-05-03-at-5.31.34-PM.jpg') no-repeat center center;
    background-size: cover;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.7); /* Dark blue overlay */
}

.hero-section-new .container {
    position: relative;
    z-index: 2;
}

.hero-section-new h1 {
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.home-section {
    padding: 80px 0;
}

.section-title-new {
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #0a192f; /* Dark blue from admin theme */
    position: relative;
}

.section-title-new::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #f8d71c; /* Gold from admin theme */
    margin: 15px auto 0;
}

.date-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #0a192f;
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.date-card-icon {
    font-size: 2.5rem;
    color: #0a192f;
    margin-bottom: 15px;
}

.date-card-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.date-card-date {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
}

.speaker-card-new {
    text-align: center;
}

.speaker-card-new img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.speaker-name { font-weight: 700; color: #0a192f; }
.speaker-affiliation { font-style: italic; color: #666; }

.theme-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.theme-list li {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
    border-left: 4px solid #f8d71c;
}

.theme-list i {
    color: #0a192f;
    margin-right: 10px;
}

@media(max-width:768px) {
    body.login-page,
    body.register-page,
    body.forgot-page,
    body.reset-page,
    body.profile-page,
    body.participant-registration-page {
        padding:22px 12px;
    }
    .login-body,
    .register-box .card-body,
    .forgot-page .reset-box .card-body,
    .reset-card .card-body,
    .profile-card .card-body,
    .registration-card .card-body {
        padding:24px 18px;
    }
    .btn-login,
    .btn-register,
    .btn-primary,
    .btn-danger,
    .btn-success,
    .btn-warning {
        width:100%;
    }
}

/* New Split Hero Section Styles */
.hero-section-split {
    position: relative;
    padding: 80px 0;
    background: url('https://jadavpuruniversity.in/storage/2021/05/WhatsApp-Image-2021-05-03-at-5.31.34-PM.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
}

/* Subtle dark overlay for better text readability */
.hero-section-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.75); /* Dark blue overlay */
    z-index: 1;
}

/* Ensure content is above the overlay */
.hero-section-split .container {
    position: relative;
    z-index: 2;
}

.hero-section-split h1 {
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.min-vh-75 {
    min-height: 75vh;
}

/* Important Dates Card Styling */
.dates-card-split {
    border: none;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background-color: rgba(13, 87, 211, 0.8) !important; /* Bootstrap primary with transparency */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dates-card-split .list-group-item {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    padding: 1rem 0;
}

.dates-card-split .list-group-item:first-child {
    padding-top: 0;
}

.dates-card-split .list-group-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dates-card-split .list-group-item h6 {
    font-weight: 600;
}

.dates-card-split .list-group-item small {
    opacity: 0.8;
}

/* === New Styles from User Request === */

/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 15px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    //display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 600px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/
