/* CLEANED CSS - duplicate selectors merged */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background: #fff6f1;
    font-size: 15px;
    line-height: 1.6;
}

.navbar .dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
}





.hero-section{
    position: relative;
    background: url("../images/banner-background.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.hero-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.40); /* image visible rahe */
    z-index: 1;
}

.hero-section > .container-fluid{
    position: relative;
    z-index: 2;
}
.custom-navbar {
    position: relative;
    z-index: 5;
    padding: 8px 0;
}

.logo-img {
    width: auto;
    height: 120px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: #081f75;
    font-size: 15px;
    font-weight: 700;
    margin: 0 5px;
    transition: .3s;
}

.navbar-nav .nav-link:hover {
    color: #ff6d3b;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.main-title {
    font-family: "Cinzel", serif;
    color: #0d46a3;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 2px;
    font-weight: 500;
}

.main-title sup {
    font-size: 22px;
    top: -1.2em;
}

.aogd-title {
    font-family: "Oswald", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    color: #ff6d1c;
    text-shadow: 0 5px 10px rgba(0, 0, 0, .12), 0 2px 0 #d74f00;
    margin-bottom: 5px;
}

.theme-line {
    font-size: 19px;
    font-weight: 700;
    color: #061f70;
    line-height: 1.4;
}

.theme-line span {
    color: #ff6666;
}

.organized-text {
    margin-top: 10px;
    color: #0a2f88;
    font-size: 18px;
    font-weight: 600;
    font-family: "Cinzel", serif;
}

.women-banner {
    margin-top: 10px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.women-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .45), rgba(255, 255, 255, 0));
    transform: skewX(-20deg);
    transition: 1s;
}

.women-banner:hover::after {
    left: 130%;
}

.main-banner {
    width: 100%;
    max-width: auto;
    display: block;
    margin: auto;
    object-fit: contain;
    transition: 1s ease;
    animation: floatBanner 5s ease-in-out infinite;
}

.women-banner:hover .main-banner {
    filter: grayscale(100%) contrast(1.1) brightness(.95);
    transform: scale(1.03);
}

.countdown-section {
    margin-top: 18px;
    position: relative;
    z-index: 5;
}

.countdown-box {
    max-width: 760px;
    margin: auto;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(90deg, #ff7a1a, #ff4f7b, #a927d8);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    box-shadow: 0 18px 45px rgba(255, 94, 97, .28);
}

.count-item {
    background: rgba(255, 255, 255, .95);
    border-radius: 16px;
    padding: 14px 8px;
    text-align: center;
}

.count-item h2 {
    font-family: "Oswald", sans-serif;
    font-size: 34px;
    color: #ff641f;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.count-item span {
    display: block;
    margin-top: 4px;
    color: #09266f;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bottom-area {
    margin-top: 18px;
    padding-bottom: 28px;
    position: relative;
    z-index: 5;
}

.register-btn {
    display: inline-block;
    position: relative;
    padding: 12px 25px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 14px;
    background: linear-gradient(#e974b0, #db4f96);
    box-shadow: 0 5px 0 #9e4c78, 0 10px 20px rgba(0, 0, 0, .25);
    font-family: "Montserrat", sans-serif;
    transition: .3s ease;
}

.register-btn:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 0 #9e4c78, 0 18px 30px rgba(219, 79, 150, .35);
}

.venue-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
}

.venue-icon {
    font-size: 24px;
    color: #0b46a3;
    margin-top: 3px;
}

.venue-text {
    font-family: "Cinzel", serif;
    color: #082878;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.welcome-section {
    position: relative;
    padding: 55px 0;
    overflow: hidden;
    background: linear-gradient(rgba(255, 248, 243, .65), rgba(255, 230, 220, .65)),
        url("../images/welcome-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.welcome-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(255, 255, 255, .55), transparent 35%),
        radial-gradient(circle at right, rgba(255, 180, 140, .22), transparent 40%);
    z-index: 0;
}

.welcome-content,
.venue-image-wrap {
    position: relative;
    z-index: 2;
}

.welcome-content {
    max-width: 760px;
}

.welcome-content h2 {
    font-family: "Oswald", sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #041c73;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #111;
    margin-bottom: 18px;
    text-align: justify;
    font-weight: 400;
}

.read-more-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 28px;
    border-radius: 60px;
    background: linear-gradient(90deg, #ff974d, #ff7c45);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(255, 136, 72, .35);
    transition: .3s;
}

.read-more-btn:hover {
    color: #fff;
    transform: translateY(-4px);
}

.venue-image-wrap {
    width: 390px;
    height: 390px;
    margin: auto;
    border-radius: 50%;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 0 18px rgba(255, 165, 120, .20), 0 22px 42px rgba(0, 0, 0, .12);
    overflow: hidden;
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: .6s ease;
}

.venue-image-wrap:hover .venue-image {
    transform: scale(1.06) rotate(1deg);
    filter: saturate(1.1);
}

/* =========================
ORGANIZING SECTION FINAL
========================= */

.organizing-section{
    position:relative;
    overflow:hidden;
    padding:90px 0 70px;

    background:
    linear-gradient(rgba(255,255,255,.20),rgba(255,255,255,.20)),
    url('../images/committee-bg.png') center center/cover no-repeat;
}

.organizing-section .container-fluid{
    position:relative;
    z-index:2;
}

/* HEADING */
.organizing-section .heading-wrap{
    text-align:center;
    margin-bottom:55px;
}

.organizing-section .heading{
    display:inline-block;
    min-width:620px;
    padding:12px 80px;

    background:linear-gradient(90deg,#efbfd8,#ef69a9,#efbfd8);

    color:#fff;
    font-size:42px;
    font-family:'Playfair Display', serif;
    font-style:italic;
    font-weight:700;

    clip-path:polygon(8% 0,100% 0,92% 100%,0 100%);
    box-shadow:0 10px 25px rgba(238,83,160,.18);
}

/* GRID */
.committee-grid{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:90px;
    flex-wrap:wrap;
}

/* FLOWER IMAGE */
.flower-line{
    position:absolute;
    left:50%;
    top:-198px;
    transform:translateX(-50%);

    width:100%;
    max-width:1650px;

    z-index:1;
    pointer-events:none;
}

/* MEMBER */
.member-box{
    width:320px;
    text-align:center;
    position:relative;
    z-index:5;
}

/* IMAGE */
.member-image{
    width:260px;
    height:260px;
    margin:0 auto 18px;

    border-radius:50%;
    overflow:hidden;
    border:4px solid #000;
    background:#fff;

    position:relative;
    z-index:10;

    box-shadow:0 12px 35px rgba(0,0,0,.15);
}

.member-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* NAME */
.member-name{
    position:relative;
    z-index:10;

    font-size:24px;
    line-height:1.2;

    color:#081b78;
    font-weight:800;
    font-style:italic;
}

/* DESIGNATION */
.member-designation{
    position:relative;
    z-index:10;

    margin-top:4px;
    font-size:21px;

    color:#ff6d00;
    font-style:italic;
}

/* BUTTONS */
.bottom-links{
    position:relative;
    z-index:10;

    margin-top:65px;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:28px;
    flex-wrap:wrap;
}

.link-btn{
    transition:.3s ease;
}

.link-btn img{
    width:100%;
    max-width:210px;
    transition:.3s ease;
}

.link-btn:hover{
    transform:translateY(-8px);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px){

    .committee-grid{
        gap:45px;
    }

    .member-box{
        width:260px;
    }

    .member-image{
        width:220px;
        height:220px;
    }

    .member-name{
        font-size:22px;
    }

    .member-designation{
        font-size:18px;
    }

    .flower-line{
        top:105px;
        max-width:1350px;
    }

}

@media(max-width:991px){

    .flower-line{
        display:none;
    }

    .organizing-section .heading{
        min-width:auto;
        width:100%;
        font-size:32px;
        padding:12px 20px;
    }

}

@media(max-width:767px){

    .organizing-section{
        padding:60px 15px;
    }

    .member-box{
        width:100%;
    }

    .member-image{
        width:200px;
        height:200px;
    }

    .member-name{
        font-size:20px;
    }

    .member-designation{
        font-size:17px;
    }

    .bottom-links{
        gap:20px;
    }

    .link-btn img{
        max-width:165px;
    }

}
.container {
    position: relative;
    z-index: 2;
    max-width: 1780px;
    margin: auto;
}

.heading-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.heading {
    display: inline-block;
    min-width: 620px;
    padding: 9px 75px 13px;
    background: linear-gradient(90deg, #eab9d7, #ef5ea6, #eab9d7);
    color: #fff;
    font-size: 38px;
    font-family: "Playfair Display", serif;
    font-style: italic;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    box-shadow: 0 8px 20px rgba(238, 83, 160, .20);
}

.top-text {
    font-size: 17px;
    line-height: 1.7;
    color: #111;
    margin-bottom: 18px;
    text-align: justify;
    font-weight: 400;
}

.committee-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
    text-align: center;
    flex-wrap: wrap;
}

.member-box {
    width: 290px;
}

.member-image {
    width: 205px;
    height: 205px;
    margin: auto;
    border-radius: 50%;
    border: 3px solid #111;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    transition: .3s ease;
}

.member-image:hover {
    transform: translateY(-4px);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    margin-top: 13px;
    font-style: italic;
    font-size: 20px;
    font-weight: 800;
    color: #082878;
    margin-bottom: 6px;
}

.member-designation {
    margin-top: 4px;
    font-size: 18px;
    color: #ff6600;
    font-style: italic;
    font-weight: 500;
}

.bottom-links {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.link-btn {
    position: relative;
    transition: .28s ease;
}

.link-btn a {
    display: block;
    text-decoration: none;
}

.link-btn img {
    width: 100%;
    max-width: 200px;
    display: block;
    transition: .28s ease;
    filter: none;
}

.link-btn:hover {
    transform: translateY(-5px);
}

.link-btn:hover img {
    transform: scale(1.025);
    filter: drop-shadow(0 8px 14px rgba(238, 83, 160, .22)) brightness(1.02);
}

.link-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 35%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);
    transform: skewX(-25deg);
    transition: .7s;
    z-index: 2;
    pointer-events: none;
}

.link-btn:hover::before {
    left: 130%;
}

.registration-section{
    position: relative;
    background: url("../images/registration-background.jpg") center center/cover no-repeat;
    padding: 80px 0 0 0;
    overflow: hidden;
}

.registration-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.60); /* table clear dikhe */
    z-index: 1;
}

.registration-section .container{
    position: relative;
    z-index: 2;
}

.title-wrap {
    text-align: center;
    margin-bottom: 28px;
}

.title {
    display: inline-block;
    padding: 12px 95px 15px;
    color: #fff;
    font-size: 46px;
    letter-spacing: 2px;
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
    background: linear-gradient(90deg, transparent, #b85b84, #7a3254, #b85b84, transparent);
    text-shadow: 2px 3px 4px rgba(0, 0, 0, .35);
}

.table-wrap {
    background: #fff;
    border: 2px solid #111;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

th,
td {
    border: 2px solid #111;
    padding: 18px 8px;
    font-size: 18px;
    color: #000;
    vertical-align: middle;
    text-align: left;
}

thead tr:first-child th {
    background: #fb8b2d;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

thead tr:nth-child(2) th {
    background: #fff;
    font-size: 17px;
    font-weight: 500;
}

.category-head {
    width: 17%;
}

.category-cell {
    font-weight: 800;
    font-size: 20px;
}

.total {
    font-weight: 800;
}

tbody tr td {
    height: 76px;
}

.complimentary td {
    height: 100px;
}

.comp-text {
    text-align: center;
    font-size: 17px;
    line-height: 1.45;
}

.comp-text strong {
    display: block;
    font-size: 23px;
}

.btn-wrap {
    text-align: center;
    margin-top: 28px;
}

.register-btn:after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -18px;
    width: 55px;
    height: 55px;
    background: url("images/cursor.png") center/contain no-repeat;
}

.animate-up,
.animate-left,
.animate-right,
.animate-fade,
.animate-zoom {
    opacity: 0;
    transition: opacity .9s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.animate-up {
    transform: translateY(60px);
}

.animate-left {
    transform: translateX(-70px);
}

.animate-right {
    transform: translateX(70px);
}

.animate-fade {
    transform: translateY(20px);
}

.animate-zoom {
    transform: scale(.9);
}

.animate-up.show,
.animate-left.show,
.animate-right.show,
.animate-fade.show,
.animate-zoom.show {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .24s;
}

.delay-3 {
    transition-delay: .36s;
}

.delay-4 {
    transition-delay: .48s;
}

.delay-5 {
    transition-delay: .60s;
}



/* =========================================================
   FINAL FOOTER CSS - Screenshot Design Implemented
========================================================= */

.professional-footer{
    position:relative;
    overflow:hidden;
    padding:52px 0 22px;
    color:#fff;
    background:
        linear-gradient(
            90deg,
            rgba(44,18,78,0.88),
            rgba(141,41,108,0.78),
            rgba(14,45,86,0.88)
        ),
        url("../images/aiims-building.png") center center/cover no-repeat;
}

.professional-footer::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top left, rgba(255,120,190,0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(0,180,255,0.14), transparent 35%);
    pointer-events:none;
}

.footer-container{
    position:relative;
    z-index:2;
    width:100%;
}

.footer-main{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:55px;
    padding:0 55px 28px;
    border-bottom:1px solid rgba(255,255,255,0.13);
}

.footer-col{
    width:100%;
    max-width:600px;
    min-height:138px;
    display:flex;
    align-items:center;
    gap:26px;
    padding:26px 32px;
    border-radius:14px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.14);
    border-left:4px solid #6ddcff;
    box-shadow:0 18px 45px rgba(0,0,0,0.18);
    backdrop-filter:blur(7px);
}

.footer-logo{
    width:72px;
    height:72px;
    object-fit:contain;
    border-radius:50%;
    background:#fff;
    padding:8px;
    flex:0 0 auto;
    box-shadow:none;
}

.footer-col h3{
    margin:0 0 4px;
    font-size:24px;
    font-weight:800;
    color:#fff;
}

.footer-col h4{
    margin:0 0 12px;
    font-size:16px;
    font-weight:600;
    color:#e7d7ff;
}

.footer-col p{
    margin:0 0 8px;
    font-size:15px;
    line-height:1.45;
    color:#fff;
}

.footer-col p:last-child{
    margin-bottom:0;
}

.footer-col i{
    color:#69dfff;
    margin-right:10px;
}

.footer-col a{
    color:#fff;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-col a:hover{
    color:#ffd6f3;
}

.footer-bottom-line{
    text-align:center;
    padding-top:24px;
    font-size:14px;
    color:#fff;
}

@media(max-width:991px){
    .professional-footer{
        padding:42px 0 22px;
    }

    .footer-main{
        flex-direction:column;
        padding:0 20px 24px;
        gap:25px;
    }

    .footer-col{
        max-width:100%;
        min-height:auto;
    }
}

@media(max-width:575px){
    .professional-footer{
        padding:35px 0 20px;
    }

    .footer-main{
        padding:0 15px 22px;
    }

    .footer-col{
        flex-direction:column;
        text-align:center;
        padding:24px 18px;
        gap:16px;
    }

    .footer-logo{
        width:62px;
        height:62px;
    }

    .footer-col h3{
        font-size:21px;
    }

    .footer-col h4{
        font-size:14px;
    }

    .footer-col p{
        font-size:14px;
        line-height:1.6;
    }

    .footer-bottom-line{
        font-size:12px;
        padding-top:16px;
    }
}


.inner-header {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(255, 199, 160, .45), transparent 32%), radial-gradient(circle at bottom right, rgba(255, 177, 215, .35), transparent 34%), linear-gradient(135deg, #fff8f3 0%, #ffe6dc 48%, #fff2f7 100%);
}

.inner-header:before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .22) 2px, transparent 2px, transparent 14px);
    opacity: .45;
    pointer-events: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ff6d3b;
}

.inner-banner {
    position: relative;
    z-index: 2;
    padding: 34px 0 42px;
    text-align: center;
}

.page-title {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    color: #082878;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.breadcrumb-text {
    font-size: 16px;
    color: #ff641f;
    font-weight: 700;
}

.breadcrumb-text a {
    color: #082878;
}

.title-divider {
    width: 95px;
    height: 5px;
    border-radius: 20px;
    background: linear-gradient(90deg, #a61dd6, #ff4d7c, #ff8748);
    margin: 16px auto 0;
}

.venue-section {
    position: relative;
    padding: 55px 0;
    background: linear-gradient(180deg, #fffaf7, #fff0ea);
}

.section-title {
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #041c73;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px;
    text-align: center;
}

.lead-text {
    font-size: 17px;
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 20px;
    color: #222;
}

.venue-photo-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .14);
    border: 8px solid #fff;
    background: #fff;
}

.venue-photo-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}

.venue-photo-card:hover img {
    transform: scale(1.04);
}

.venue-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 14px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.venue-badge h4 {
    font-size: 20px;
    font-weight: 800;
    color: #082878;
    margin: 0;
}

.venue-badge span {
    display: block;
    color: #ff641f;
    font-size: 14px;
    font-weight: 700;
    margin-top: 3px;
}

.info-card {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 26px 22px;
    box-shadow: 0 14px 35px rgba(255, 102, 120, .13);
    border: 1px solid rgba(255, 120, 120, .16);
    transition: .3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(255, 102, 120, .20);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(135deg, #a61dd6, #ff4d7c, #ff8748);
    box-shadow: 0 12px 25px rgba(255, 94, 120, .28);
    margin-bottom: 16px;
}

.info-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: #082878;
    margin-bottom: 8px;
}

.info-card p {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.65;
}

.map-card {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.map-card iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 22px;
    display: block;
}

.cta-strip {
    margin-top: 42px;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff7a1a, #ff4f7b, #a927d8);
    color: #fff;
    box-shadow: 0 18px 45px rgba(255, 94, 97, .26);
}

.cta-strip h3 {
    font-family: "Cinzel", serif;
    font-weight: 700;
    margin: 0;
    font-size: 26px;
}

.cta-strip p {
    margin: 8px 0 0;
    font-size: 15px;
    opacity: .96;
}

.route-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 60px;
    background: #fff;
    color: #0b2b7a;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    transition: .3s ease;
}

.route-btn:hover {
    transform: translateY(-4px);
    color: #ff641f;
}

.doc-title {
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #041c73;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 8px;
}

.sub-title {
    text-align: center;
    font-family: "Cinzel", serif;
    color: #ff641f;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 28px;
}

.table-card {
    background: #fff;
    border-radius: 26px;
    padding: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    border: 1px solid rgba(255, 120, 120, .16);
    margin-bottom: 28px;
}

.table-responsive {
    border-radius: 18px;
    overflow: auto;
}

.custom-table {
    width: 100%;
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.custom-table th {
    background: #082878;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .18);
}

.custom-table thead tr:first-child th {
    background: linear-gradient(90deg, #126CCC, #0E5199);
    font-size: 17px;
}

.custom-table td {
    padding: 13px 10px;
    text-align: center;
    border: 1px solid #f0d8d0;
    color: #111;
    font-weight: 600;
    background: #fff;
}

.custom-table tbody tr:nth-child(even) td {
    background: #fff7f3;
}

.custom-table .category {
    text-align: left;
    font-weight: 800;
    color: #082878;
}

.custom-table .total {
    color: #ff641f;
    font-weight: 900;
}

.complimentary-box {
    background: linear-gradient(135deg, #fff7fb, #fff2e8);
    border: 1px dashed rgba(255, 79, 123, .35);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    font-weight: 700;
    color: #082878;
}

.content-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .07);
    border-left: 7px solid #ff641f;
    margin-bottom: 28px;
}

.content-card h3 {
    font-family: "Oswald", sans-serif;
    color: #041c73;
    font-weight: 800;
    text-transform: none;
    font-size: 30px;
    margin-bottom: 16px;
}

.content-card ul,
.content-card ol {
    margin: 0;
    padding-left: 22px;
}

.content-card li {
    margin-bottom: 10px;
    color: #222;
    font-weight: 500;
}

.plain-text {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .07);
    color: #222;
    font-weight: 500;
    line-height: 1.75;
}

.workshop-title {
    font-family: "Oswald", sans-serif;
    color: #041c73;
    font-size: 30px;
    font-weight: 800;
    margin: 4px 0 16px;
}

.animate-up,
.animate-fade,
.animate-zoom {
    opacity: 0;
    transition: opacity .9s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}

.animate-up.show,
.animate-fade.show,
.animate-zoom.show {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.committee-section {
    position: relative;
    padding: 55px 0;
    background: linear-gradient(180deg, #fffaf7, #fff0ea);
}

.committee-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(255, 105, 160, .09), transparent 24%), radial-gradient(circle at 90% 35%, rgba(255, 145, 70, .10), transparent 28%);
    pointer-events: none;
}

.section-subtitle {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
    color: #555;
    font-size: 16px;
    line-height: 1.75;
}

.core-card {
    height: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(255, 102, 120, .14);
    border: 1px solid rgba(255, 120, 120, .16);
    transition: .3s ease;
    position: relative;
    overflow: hidden;
}

.core-card:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 8px;
    background: linear-gradient(90deg, #a61dd6, #ff4d7c, #ff8748);
}

.core-card:hover,
.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(255, 102, 120, .20);
}

.photo-space {
    width: 150px;
    height: 150px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, #ffe6f0);
    border: 4px dashed rgba(255, 79, 123, .38);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6d3b;
    font-size: 42px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.member-role {
    font-size: 16px;
    color: #ff641f;
    font-weight: 700;
}

.category-block {
    margin-top: 42px;
}

.category-heading {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 28px;
    border-radius: 60px;
    background: linear-gradient(90deg, #ff7a1a, #ff4f7b, #a927d8);
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(255, 94, 97, .22);
    margin-bottom: 22px;
}

.category-heading i {
    font-size: 21px;
}

.committee-card {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    border: 1px solid rgba(255, 120, 120, .14);
    transition: .3s ease;
}

.committee-card .photo-space {
    width: 105px;
    height: 105px;
    font-size: 30px;
    border-width: 3px;
    margin-bottom: 14px;
}

.committee-card .member-name {
    font-size: 17px;
    margin: 0;
}

@keyframes floatBanner {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

@media (max-width:991px) {
    .logo-img {
        width: 65px;
    }

    .navbar-nav {
        background: #fff;
        padding: 14px;
        border-radius: 15px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .navbar-nav .nav-link {
        text-align: center;
        margin: 7px 0;
    }

    .main-title {
        font-size: 34px;
    }

    .main-title sup {
        font-size: 16px;
    }

    .aogd-title {
        font-size: 52px;
    }

    .theme-line {
        font-size: 16px;
    }

    .organized-text {
        font-size: 15px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .main-banner {
        max-width: 100%;
    }

    .countdown-box {
        max-width: 100%;
    }

    .count-item h2 {
        font-size: 28px;
    }

    .bottom-area {
        text-align: center;
    }

    .venue-box {
        margin-top: 22px;
    }

    .venue-text {
        font-size: 16px;
    }

    .register-btn {
        font-size: 20px;
        padding: 10px 28px;
    }

    .welcome-section {
        text-align: center;
        padding: 48px 0;
    }

    .welcome-content {
        max-width: 100%;
    }

    .welcome-content h2 {
        font-size: 32px;
    }

    .welcome-content p {
        font-size: 15px;
        text-align: center;
    }

    .venue-image-wrap {
        width: 300px;
        height: 300px;
        margin-top: 30px;
    }

    .heading {
        min-width: auto;
        width: 100%;
        font-size: 32px;
        padding: 12px 20px;
    }

    .top-text {
        font-size: 17px;
    }

    .registration-section {
        padding: 25px 15px;
    }

    .title {
        font-size: 34px;
        padding: 10px 40px;
    }

    table {
        min-width: 1100px;
    }

    th,
        td {
        font-size: 18px;
        padding: 14px 8px;
    }

    thead tr:first-child th {
        font-size: 20px;
    }

    .category-cell {
        font-size: 20px;
    }

    .inner-banner {
        padding: 24px 0 32px;
    }

    .page-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 31px;
    }

    .lead-text {
        text-align: center;
        font-size: 15px;
    }

    .venue-photo-card img {
        height: 330px;
    }

    .cta-strip {
        text-align: center;
    }

    .route-btn {
        margin-top: 18px;
    }

    .doc-title {
        font-size: 31px;
    }

    .sub-title {
        font-size: 22px;
    }
}

@media (max-width:576px) {
    .hero-section {
        min-height: auto;
    }

    .custom-navbar {
        padding: 10px 0;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .main-title {
        font-size: 22px;
    }

    .main-title sup {
        font-size: 11px;
    }

    .aogd-title {
        font-size: 38px;
    }

    .theme-line {
        font-size: 13px;
    }

    .organized-text {
        font-size: 12px;
    }

    .main-banner {
        transform: scale(1.01);
    }

    .countdown-box {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
        gap: 10px;
    }

    .count-item {
        padding: 12px 5px;
    }

    .count-item h2 {
        font-size: 24px;
    }

    .count-item span {
        font-size: 11px;
    }

    .venue-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .venue-icon {
        margin-top: 0;
        font-size: 24px;
    }

    .venue-text {
        font-size: 14px;
    }

    .register-btn {
        font-size: 16px;
        padding: 9px 22px;
    }

    .welcome-section {
        padding: 40px 0;
    }

    .welcome-content h2 {
        font-size: 26px;
    }

    .welcome-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .venue-image-wrap {
        width: 240px;
        height: 240px;
        box-shadow: 0 0 0 12px rgba(255, 165, 120, .20), 0 18px 35px rgba(0, 0, 0, .10);
    }

    .read-more-btn {
        font-size: 14px;
        padding: 10px 24px;
    }

    .page-title {
        font-size: 30px;
    }

    .breadcrumb-text {
        font-size: 14px;
    }

    .venue-section {
        padding: 38px 0;
    }

    .venue-photo-card {
        border-radius: 22px;
        border-width: 5px;
    }

    .venue-photo-card img {
        height: 250px;
    }

    .venue-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px 16px;
    }

    .info-card {
        padding: 22px 18px;
    }

    .map-card iframe {
        height: 280px;
    }

    .cta-strip {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .cta-strip h3 {
        font-size: 21px;
    }

    .registration-section {
        padding: 36px 0;
    }

    .doc-title {
        font-size: 27px;
    }

    .sub-title {
        font-size: 20px;
    }

    .table-card,
        .content-card,
        .plain-text {
        padding: 18px;
    }

    .committee-section {
        padding: 38px 0;
    }

    .section-title {
        font-size: 27px;
    }

    .category-heading {
        font-size: 18px;
        padding: 10px 18px;
    }

    .photo-space {
        width: 125px;
        height: 125px;
    }
}

@media (max-width:768px) {
    .committee-grid {
        gap: 28px;
    }

    .member-box {
        width: 100%;
    }

    .bottom-links {
        gap: 14px;
    }

    .link-btn img {
        max-width: 165px;
    }
}

@media (max-width:600px) {
    .organizing-section {
        padding: 20px 15px 40px;
    }

    .member-image {
        width: 180px;
        height: 180px;
    }

    .heading {
        font-size: 28px;
    }

    .top-text {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width:480px) {
    .link-btn img {
        max-width: 140px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-up,
        .animate-left,
        .animate-right,
        .animate-fade,
        .animate-zoom {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


.submit-btn-wrap{
    text-align:center;
    margin:40px 0 20px;
}

.submit-paper-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 40px;
    border-radius:60px;
    background:linear-gradient(135deg,#ff6a2a,#ff9b45);
    color:#fff;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 15px 35px rgba(255,106,42,.35);
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.submit-paper-btn:hover{
    color:#fff;
    transform:translateY(-4px);
    background:linear-gradient(135deg,#123b73,#0a75d9);
    box-shadow:0 18px 40px rgba(18,59,115,.35);
}

.submit-paper-btn i{
    font-size:20px;
}

.submit-paper-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:rgba(255,255,255,.25);
    transform:skewX(-25deg);
    transition:.8s;
}

.submit-paper-btn:hover::before{
    left:140%;
}

@media(max-width:768px){
    .submit-paper-btn{
        padding:14px 28px;
        font-size:16px;
    }
}

