@import url('https://fonts.googleapis.com/css2?family=Lora:wght@600;700&family=Montserrat:wght@400;600;700&display=swap');

/* ===========================================================
   ROOT THEME COLORS (Easy Theme Control)
   =========================================================== */
:root {
    --primary-blue: #084a87;
    --primary-blue-light: #0a5ea3;
    --primary-blue-bg: #e7f4ff;

    --accent-red: #d5343a;
    --accent-red-hover: #b52d32;

    --white: #ffffff;
    --black: #000000;
    --text-dark: #1b2a4e;
    --text-light: #333333;

    --gray-border: #c7dff5;
    --gray-soft: #eef6ff;
    --gray-card: #f9f9f9;

    --btn-blue: rgb(1, 105, 146);
    --btn-blue-hover: rgb(1, 56, 78);

    --partner-bg: #ffffff;
    --partner-text-bg: #d5343a;

    --footer-bg: #0d0d0d;
    --footer-dark-icon: #1a1a1a;

    --shadow-soft: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-mid: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* IMPORT FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s;
}

.slide.active {
    opacity: 1;
}

/* HERO TEXT */
.hero-text {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.45);
    padding: 20px 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 680px;
    text-align: center;
}

.hero-text h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

.hero-text p {
    margin-top: 10px;
    color: #eee;
    font-size: 20px;
}

/* MOBILE HERO */
@media (max-width: 600px) {
    .hero-slider {
        height: 300px;
    }

    .hero-text {
        bottom: 60px;
        padding: 12px 20px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 13px;
    }
}










/* ===================== MARQUEE SECTION ===================== */
.notice-bar {
    width: 100%;
    background: #f8f1f1;
    border: 1px solid #e2cbcb;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    gap: 10px;
    margin-top: 0;
}

.notice-label {
    background: #d9534f;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.notice-text {
    width: 100%;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.notice-text i {
    color: #ff0066;
    margin-right: 8px;
}

/* ============== MAIN SECTION WRAPPER ============== */
.conference-section-meetings {
    padding: 60px 15%;
    background: #fafafa;
    text-align: center;
}

.conference-section-meetings .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b2a4e;
}

/* ============== GRID CONTAINER ============== */
.conference-links-container {
    margin-top: 40px;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row */
    gap: 20px;
    border: 2px solid rgb(232, 227, 227);
    border-radius: 12px;
    background: rgb(216, 241, 250);
}

/* Title inside container - Full width */
.conference-links-heading {
    grid-column: 1 / -1;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #1b2a4e;
    margin-bottom: 10px;
}


/* ============== BUTTON STYLE ============== */
.conference-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: white;
    width: 100%;
    /* FULL WIDTH inside grid */
    padding: 14px 16px;
    border-radius: 8px;
    border: 2px solid var(--btn-blue);
    color: rgb(2, 100, 138);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.conference-btn:hover {
    background: rgb(1, 56, 78);
    color: var(--white);
}

.conference-btn i {
    font-size: 18px;
    transition: 0.3s;
}

.conference-btn:hover i {
    transform: translateX(4px);
}


/* ========== RESPONSIVE ========== */

/* Large screens (reduce padding) */
@media (max-width: 1400px) {
    .conference-section-meetings {
        padding: 60px 20%;
    }
}

@media (max-width: 1200px) {
    .conference-section-meetings {
        padding: 60px 10%;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .conference-section-meetings {
        padding: 50px 6%;
    }

    .conference-links-container {
        grid-template-columns: repeat(2, 1fr);
        /* still 2 per row */
    }
}

/* Mobile */
@media (max-width: 768px) {

    .conference-links-container {
        grid-template-columns: 1fr;
        /* one per row */
        padding: 20px;
    }

    .conference-btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 14px;
    }

    .conference-links-heading {
        font-size: 20px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .conference-section-meetings {
        padding: 40px 4%;
    }

    .conference-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
}

/* PARTICIPANT DIVIDER (HIGHLIGHTED) */
.conference-divider {
    grid-column: 1 / -1;
    text-align: center;
    position: relative;
    margin: 25px 0 10px;
}

/* Highlighted Badge */
.conference-divider span {
    background: #0a5ea3;
    /* theme blue */
    padding: 6px 24px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    /* white text */
    border-radius: 30px;
    /* pill shape */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    border: 2px solid #063f6e;
}

/* Line behind text */
.conference-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #7eb4d8;
    /* softer blue */
    z-index: 1;
}



/* ===================== FEATURES SECTION ===================== */
.features-section {
    padding: 60px 8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon i {
    font-size: 45px;
    color: var(--primary-blue-light);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 24px;
}

/* ===================== RESPONSIVE ===================== */

/* Tablet (3 → 2 columns) */
@media (max-width: 992px) {
    .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile (2 → 1 column) */
@media (max-width: 600px) {
    .features-section {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon i {
        font-size: 38px;
    }

    .feature-card h3 {
        font-size: 18px;
    }
}

/* ===================== ABOUT SECTION ===================== */
.about-section {
    padding: 80px 8%;
    background: #f8f8f8;
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1250px;
    margin: auto;
}

/* ----- TITLE AREA ----- */
.about-title-box h2 {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 38px;
    font-weight: 700;
    color: #1b2a4e;
    line-height: 1.3;
}

.about-title-box .line {
    width: 4px;
    height: 80px;
    background: var(--accent-red);
    display: inline-block;
}

/* Ensures About Conference World stays together */
.title-text {
    display: inline-block;
    max-width: 330px;
}

/* ----- RIGHT TEXT ----- */
.about-text {
    flex: 1;
}

.about-text p {
    font-size: 17px;
    line-height: 30px;
    color: #333;
    text-align: justify;
}

/* Dropcap */
.about-text .first-letter {
    color: var(--accent-red);
    font-size: 40px;
    font-weight: 700;
    float: left;
    margin-right: 6px;
    line-height: 30px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: left;
    }

    .about-title-box h2 {
        font-size: 30px;
    }

    .about-title-box .line {
        height: 60px;
    }

    .title-text {
        max-width: 100%;
    }
}


/* ===================== RESPONSIVE ===================== */

/* Tablet */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-text {
        width: 100%;
    }

    .about-title-box h2 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .about-section {
        padding: 50px 5%;
    }

    .about-title-box h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .about-title-box .line {
        height: 50px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 26px;
    }
}

/* ===================== ABOUT IMAGE SECTION ===================== */
.about-image-section {
    width: 100%;
    height: 380px;
    /* Height same as screenshot */
    overflow: hidden;
}

.about-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Prevents cropping incorrectly */
    object-position: center;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-image-section {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .about-image-section {
        height: 220px;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform !important;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}


/* ================= VIDEO SECTION ================= */
.video-section {
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 85%;
    max-width: 1100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-thumb {
    width: 100%;
    height: auto;
    display: block;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 0, 0, 0.85);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn i {
    font-size: 40px;
    color: var(--white);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgb(255, 0, 0);
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999999 !important;
    padding: 20px;
}

.video-box {
    position: relative;
    width: 90%;
    max-width: 800px;
    z-index: 999999999 !important;
}

.video-box iframe {
    width: 100% !important;
    height: 450px !important;
    display: block !important;
    border-radius: 10px;
    background: black;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .video-box iframe {
        height: 250px !important;
    }
}

/* ===== Partners Section ===== */
.partners-section {
    padding: 60px 5%;
    text-align: center;
}

.partners-title {
    font-size: 34px;
    font-weight: 700;
    color: #1b2a4e;
}

.title-underline {
    width: 70px;
    height: 4px;
    background: var(--accent-red);
    margin: 12px auto 35px;
    border-radius: 10px;
}

/* Slider Container */
.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 25px;
    animation: scroll 10s linear infinite;
}


/* Stops scrolling on hover */
.partners-slider:hover .slider-track {
    animation-play-state: paused;
}

/* Single card */
.partner-card {
    min-width: 180px;
    background: var(--white);
    border-radius: 12px;
    padding: 15px 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.partner-card img {
    width: 120px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 15px;
    background: var(--accent-red);
    color: var(--white);
    padding: 8px 0;
    border-radius: 8px;
}

/* Smooth infinite marquee animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .partner-card {
        min-width: 140px;
    }

    .partner-card img {
        width: 100px;
        height: 70px;
    }
}

/* ============= SIMPLE FOOTER (MODERN WITH BACKGROUND IMAGE) ============= */

.simple-footer {
    position: relative;
    padding: 50px 8% 0 8%;
    color: #222;
    background: url('../images/9.jpg') center/cover no-repeat fixed;
    border-top: 1px solid #ddd;

    /* Soft shadow */
    box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

/* Light overlay on background */
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.87);
    /* very light overlay */
    backdrop-filter: blur(4px);
    z-index: 1;
}

/* CONTENT */
.simple-footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Logo */
.simple-footer-logo {
    width: 150px;
    margin-bottom: 15px;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.12));
}

.footer-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Section title */
.simple-footer-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

/* Quick Links */
.simple-footer-links {
    list-style: none;
}

.simple-footer-links li {
    margin-bottom: 10px;
}

.simple-footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.3s ease;
}

.simple-footer-links a:hover {
    color: #e63946;
    padding-left: 4px;
}

/* Contact Section */
.footer-contact {
    list-style: none;
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #e63946;
    text-decoration: none;
}

/* Social Icons */
.simple-footer-social a {
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    text-align: center;
    line-height: 42px;
    margin-right: 10px;
    transition: 0.3s ease;

    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

.simple-footer-social a:hover {
    background: #e63946;
    color: #fff;
    border-color: #e63946;
    transform: translateY(-4px);
}

/* COPYRIGHT */
.footer-copy {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #555;
    z-index: 2;
    position: relative;
    border-top: 1px solid #ccc;
}

/* Copyright Section */
.footer-copy {
    background: #e1e1e1;
    padding: 14px;
    text-align: center;
    font-size: 14px;
    color: #444;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.dev-credit a {
    color: #e63946;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.dev-credit a i {
    margin-right: 6px;
    color: #e63946;
    transition: 0.3s ease;
}

.dev-credit a:hover {
    color: #111;
    text-shadow: 0px 0px 6px rgba(230, 57, 70, 0.5);
}

.dev-credit a:hover i {
    color: #111;
}

.admin-link {
    font-size: 20px;
    /* size of dot */
    color: #e63946;
    /* same brand color */
    margin-left: 8px;
    /* spacing after Creativepath */
    text-decoration: none;
    cursor: pointer;
    font-weight: 900;
    transition: 0.3s ease;
}

.admin-link:hover {
    color: #111;
    transform: scale(1.2);
    /* slightly enlarges on hover */
}


/* ============= RESPONSIVE FOOTER ============= */

@media (max-width: 900px) {
    .simple-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .simple-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .simple-footer-social a {
        margin: 6px;
    }

    .simple-footer-logo {
        margin: 0 auto;
    }
}


/* =========================================================
   FIXED PREMIUM REGISTRATION FORM – OVERRIDES BOOTSTRAP
   ========================================================= */

/* WRAPPER */
.reg-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* CARD */
.reg-card {
    background: #fff;
    padding: 35px 40px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #dce9f5;
}

/* TITLE */
.reg-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #1b2a4e;
    margin-bottom: 25px;
    position: relative;
}

.reg-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #0a5ea3;
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* FORM FIELDS */
.reg-field {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.reg-field label {
    font-weight: 600;
    color: #0a325c;
    margin-bottom: 6px;
    line-height: 1.3;
}

.reg-field input,
.reg-field select {
    height: 48px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.8px solid #bcdaf4;
    background: #f9fcff;
    font-size: 15px;
    color: #084a87;
    transition: 0.25s;
    width: 100%;
}

.reg-field input:focus,
.reg-field select:focus {
    border-color: #0a5ea3;
    box-shadow: 0 0 8px rgba(10, 94, 163, 0.25);
    outline: none;
}

/* GRID LAYOUT */
.reg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 100%;
}

/* SUBMIT BUTTON */
.reg-btn {
    width: 100%;
    background: #0a5ea3;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.reg-btn:hover {
    background: #084a87;
    transform: translateY(-2px);
}

/* UPLOAD PAPER INFO MESSAGE */
/* HIGHLIGHTED UPLOAD PAPER MESSAGE */
.upload-paper-message {
    margin: 22px 0;
    padding: 16px 20px;
    background: linear-gradient(90deg, #fff4e5, #fffaf2);
    border-left: 6px solid #ff9800;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(255, 152, 0, 0.25);
    animation: pulseGlow 2s infinite;
}

/* Text */
.upload-paper-message p {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #a45a00;
    line-height: 1.5;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 152, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 16px rgba(255, 152, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 152, 0, 0.4);
    }
}

@media (max-width: 480px) {
    .upload-paper-message {
        padding: 12px 14px;
    }

    .upload-paper-message p {
        font-size: 14px;
    }
}

/**====== HEADER BANNER====== */

.header-banner {
    width: 100%;
    padding: 22px 25px;
    background: #0a5ea3;
    color: #fff;
    margin: 0 0 28px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-top: 6%;

}

.header-banner h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 1px;
    margin: 0;
}


@media (max-width: 600px) {
    .header-banner {
        padding: 22px 53px;
        margin-top: 12%;
    }

    .header-banner h1 {
        font-size: 26px;
    }
}

@media (max-width: 608px) {
    .header-banner {
        padding: 22px 53px;
        margin-top: 24%;
    }

    .header-banner h1 {
        font-size: 26px;
    }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 900px) {
    .reg-card {
        padding: 25px 25px;
    }
}

@media (max-width: 768px) {
    .reg-grid {
        grid-template-columns: 1fr;
    }

    .reg-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .reg-card {
        padding: 20px;
        border-radius: 14px;
    }

    .reg-title {
        font-size: 22px;
    }

    .reg-field input,
    .reg-field select {
        height: 44px;
        font-size: 14px;
        padding: 8px 12px;
    }

    .reg-btn {
        font-size: 16px;
        padding: 12px 18px;
    }
}

/* PAYMENT TOP SECTION */
.payment-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f9ff;
    padding: 20px 25px;
    border-radius: 14px;
    border: 1px solid #d3e6f8;
    margin-bottom: 25px;
    gap: 20px;
}

/* LEFT SIDE INFO */
.payment-info {
    flex: 1;
}

.payment-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a325c;
    margin-bottom: 8px;
}

.payment-info p {
    margin: 5px 0;
    color: #084a87;
    font-size: 15px;
    line-height: 1.4;
}

/* RIGHT SIDE QR IMAGE */
.payment-qr {
    width: 180px;
    flex-shrink: 0;
    text-align: center;
}

.payment-qr img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #0a5ea3;
}

/* PAYMENT FEES BOX */
.payment-fees {
    flex: 1;
    max-width: 360px;
    background: #ffffff;
    border: 2px dashed #0a5ea3;
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(10, 94, 163, 0.15);
}


/* Heading */
.payment-fees p:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #0a325c;
    margin-bottom: 12px;
    text-transform: uppercase;
}


/* Fee rows */
.payment-fees p {
    margin: 6px 0;
    font-size: 14.5px;
    color: #084a87;
    font-weight: 600;
}


/* Highlight amounts */
.payment-fees p:nth-child(2)::after {
    content: " ₹";
    color: #0a5ea3;
    font-weight: 700;
}

.payment-fees p:nth-child(3)::after {
    content: " ₹";
    color: #0a5ea3;
    font-weight: 700;
}

@media (max-width: 768px) {
    .payment-fees {
        width: 100%;
        margin-top: 10px;
    }
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .payment-top {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .payment-qr {
        width: 160px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .payment-top {
        padding: 14px;
    }

    .payment-info h3 {
        font-size: 20px;
    }

    .payment-info p {
        font-size: 14px;
    }

    .payment-qr {
        width: 140px;
    }
}


/* Co-Author Section Title */
.coauthor-title {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #0a325c;
    margin-bottom: 10px;
}

/* Wrapper for each co-author input */
.coauthor-field {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
}

/* Co-Author input box */
.coauthor-field input {
    flex: 1;
    height: 45px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.8px solid #bcdaf4;
    background: #f9fcff;
    font-size: 15px;
    color: #084a87;
    transition: 0.25s;
}

.coauthor-field input:focus {
    border-color: #0a5ea3;
    box-shadow: 0 0 8px rgba(10, 94, 163, 0.25);
    outline: none;
}

/* Remove button */
.remove-author-btn {
    background: #d9534f;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.25s;
}

.remove-author-btn:hover {
    background: #c9302c;
}

/* Add Co-Author Button */
.add-author-btn {
    background: #0a5ea3;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    margin-bottom: 1.5%;
}

.add-author-btn:hover {
    background: #084a87;
}

/* FILE UPLOAD WRAPPER */
.file-upload-box {
    position: relative;
    background: #f9fcff;
    border: 1.8px solid #bcdaf4;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.25s;
}

/* Hover effect */
.file-upload-box:hover {
    border-color: #0a5ea3;
    box-shadow: 0 0 8px rgba(10, 94, 163, 0.25);
}

/* Hidden default input */
.file-upload-box input[type="file"] {
    display: none;
}

/* Upload icon */
.file-upload-icon {
    font-size: 22px;
    color: #0a5ea3;
}

/* File text */
.file-upload-text {
    font-size: 15px;
    color: #084a87;
    font-weight: 500;
}

/* Selected file name */
#selectedFileName {
    margin-top: 6px;
    font-size: 14px;
    color: #0a325c;
    font-weight: 600;
}

/* FULL PAPER EXTRA FIELDS WRAPPER */
.full-paper-wrapper {
    margin-top: 20px;
    padding: 15px;
    background: #f2f7fc;
    border: 1.8px solid #dce9f5;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

/* File Upload Box (Your Premium Style) */
.full-paper-wrapper .file-upload-box {
    background: #f9fcff;
    border: 1.8px solid #bcdaf4;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.25s;
}

.full-paper-wrapper .file-upload-box:hover {
    border-color: #0a5ea3;
    box-shadow: 0 0 8px rgba(10, 94, 163, 0.25);
}

.full-paper-wrapper .file-upload-box input[type="file"] {
    display: none;
}

.full-paper-wrapper .file-upload-icon {
    font-size: 22px;
    color: #0a5ea3;
}

.full-paper-wrapper .file-upload-text {
    font-size: 15px;
    color: #084a87;
    font-weight: 600;
}

.file-name-display {
    margin-top: 6px;
    font-size: 14px;
    color: #0a325c;
    font-weight: 600;
}





/* ===================================================
   STATUS PAGE – CLEAN PROFESSIONAL THEME
   Theme Color: rgb(2, 100, 138)
=================================================== */

/* WRAPPER */
.status-wrapper {
    display: flex;
    justify-content: center;
    padding: 108px 15px;
    background: #eef2f5;
}

/* CARD */
.status-card {
    width: 100%;
    max-width: 950px;
    background: #fff;
    padding: 40px 45px;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

/* BACK BUTTON */
.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 15px;
    background: rgb(2, 100, 138);
    color: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

.back-btn:hover {
    background: rgb(1, 70, 95);
}

/* PAGE TITLE */
.status-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0a334a;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.status-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: rgb(2, 100, 138);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* FORM INPUT */
.status-form label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2b3d;
}

.status-input-group {
    display: flex;
    gap: 12px;
    margin: 12px 0;
}

.status-input-group input {
    flex: 1;
    padding: 12px 14px;
    border: 1.5px solid #b7c9d6;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9fbfd;
}

.status-btn {
    padding: 12px 20px;
    background: rgb(2, 100, 138);
    color: #fff;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.status-btn:hover {
    background: rgb(1, 70, 95);
}

.status-hint {
    color: #6b7b8c;
    font-size: 0.9rem;
}

/* RESULT CARD */
.status-result {
    margin-top: 30px;
    padding: 25px;
    background: #ffffff;
    border: 1.5px solid #e0e6eb;
    border-radius: 12px;
}

/* USER NAME / ID */
.status-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a334a;
    margin-bottom: 5px;
}

.status-name span {
    color: rgb(2, 100, 138);
    font-size: 1rem;
    margin-left: 6px;
}

/* SUB INFO */
.status-info {
    font-size: 1rem;
    color: #4e5c67;
    margin-bottom: 25px;
}

/* SECTIONS */
.status-section {
    margin-bottom: 25px;
    padding: 20px;
    border-left: 4px solid rgb(2, 100, 138);
    background: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.status-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgb(2, 100, 138);
    margin-bottom: 18px;
}

/* TWO-COLUMN ROWS */
.status-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 10px;
    margin: 8px 0;
    font-size: 1rem;
}

.status-row b {
    color: #0a334a;
    font-weight: 600;
    text-align: left;
}

/* LINKS */
.status-link {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    color: rgb(2, 100, 138);
    text-decoration: underline;
}

.status-link:hover {
    color: rgb(1, 70, 95);
}

/* WARNING */
.status-warning {
    color: #b30000;
    font-weight: 600;
}

/* REVIEW BOX */
.review-heading {
    font-size: 1.1rem;
    margin-top: 15px;
    font-weight: 600;
}

.review-box {
    padding: 14px;
    background: #f4f6f7;
    margin-top: 8px;
    border-radius: 8px;
}

.review-box small {
    color: #6a7a89;
}

/* Registration Details Box */
.reg-details-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #0a5ea3;
}

/* Title */
.reg-details-box h4 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #0a325c;
}

/* Grid Layout */
.reg-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
}

/* Label + Text */
.reg-details-grid div span {
    font-weight: 600;
    color: #0a325c;
    display: block;
    margin-bottom: 3px;
}

.reg-details-grid div p {
    margin: 0;
    color: #333;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 700px) {
    .reg-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reg-details-box {
        padding: 20px;
    }
}

/* Paper Details Box - Matching Registration Style */
.paper-details-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    border-left: 6px solid #0a5ea3;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    margin-top: 25px;
}

.status-title-heading {
    font-size: 22px;
    font-weight: 700;
    color: #0a325c;
    margin-bottom: 18px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.status-grid span {
    color: #0a325c;
    font-weight: 600;
}

.status-grid p {
    margin: 3px 0 0;
    color: #084a87;
}

/* Review Box */
.review-heading {
    margin-top: 25px;
    color: #0a325c;
    font-weight: 700;
}

.review-box {
    padding: 12px;
    background: #f7fbff;
    border: 1px solid #dce9f5;
    border-radius: 10px;
    margin-bottom: 10px;
}


/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 768px) {
    .status-card {
        padding: 25px;
    }

    .status-title {
        font-size: 1.6rem;
    }

    .status-input-group {
        flex-direction: column;
    }

    .status-btn {
        width: 100%;
    }

    .status-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .status-title {
        font-size: 1.4rem;
    }

    .status-card {
        padding: 18px;
    }

    .status-name {
        font-size: 1.2rem;
    }

    .status-row {
        grid-template-columns: 1fr;
        font-size: 0.95rem;
    }
}

/* ===========================
   CONTACT US SECTION
=========================== */

.contact-section {
    width: 100%;
    padding: 70px 5%;
    background: #f7f9fb;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(2, 100, 138);
    margin-bottom: 10px;
}

.contact-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: rgb(2, 100, 138);
    margin: 10px auto 0;
    border-radius: 2px;
}

.contact-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

/* CONTACT INFO */
.contact-info {
    display: grid;
    gap: 20px;
}

.info-box {
    background: #ffffff;
    padding: 22px;
    text-align: left;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid rgb(2, 100, 138);
    transition: 0.3s ease;
}

.info-box:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 28px;
    margin-bottom: 8px;
    color: rgb(2, 100, 138);
}

.info-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a334a;
}

.info-box p {
    font-size: 1rem;
    color: #444;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-box {
        text-align: center;
    }

    .info-box:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-map iframe {
        height: 300px;
    }
}


/*Status CSS*/
.status-box {
    background: #f8fbff;
    border-left: 5px solid #0a5ea3;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-box {
    background: #fff;
    padding: 12px;
    border-left: 4px solid #0a5ea3;
    border-radius: 6px;
    margin-top: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.review-heading {
    margin-top: 20px;
    font-weight: bold;
}

.status-warning {
    background: #fff3cd;
    padding: 10px;
    border-radius: 6px;
    color: #8a6d3b;
    font-weight: 600;
}

/* ACCEPTED – Blue */
.paper-accepted-msg {
    background: #e3f3ff;
    border-left: 6px solid #007bff;
    color: #0056b3;
    padding: 20px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 8px;
    margin: 25px auto;
    width: 90%;
    max-width: 750px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}


/* PENDING – Green (already uploaded) */
.paper-pending-msg {
    background: #e6ffed;
    border-left: 6px solid #28a745;
    color: #155724;
    padding: 20px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 8px;
    margin: 25px auto;
    width: 90%;
    max-width: 750px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}


/* REJECTED – Red */
.paper-rejected-msg {
    background: #ffe6e6;
    border-left: 6px solid #dc3545;
    color: #b30000;
    padding: 20px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 8px;
    margin: 25px auto;
    width: 90%;
    max-width: 750px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}


/* OPTIONAL: Add nice fade-in animation */
.paper-accepted-msg,
.paper-pending-msg,
.paper-rejected-msg {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================================
   PAYMENT DETAILS — CLEAN & MODERN STYLING
===================================================== */

.status-box {
    border-left: 5px solid #0078b5;
    padding: 20px 22px;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 450px;
}

/* Payment label + text inside <p> */
.status-box p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.4;
}

/* Label alignment */
.status-box p b {
    display: inline-block;
    width: 150px;
    font-weight: 700;
    color: #004c6a;
}

/* Verified / Rejected / Pending Badges */
.badge.bg-success {
    background: #d5f7dd !important;
    color: #178a3b !important;
    padding: 5px 12px !important;
    border-radius: 6px;
    font-size: 13px;
}

.badge.bg-danger {
    background: #ffe0e0 !important;
    color: #b80c0c !important;
    padding: 5px 12px !important;
    border-radius: 6px;
    font-size: 13px;
}

.badge.bg-warning {
    background: #fff1bf !important;
    color: #7b5c00 !important;
    padding: 5px 12px !important;
    border-radius: 6px;
    font-size: 13px;
    margin-right: 75%;
}

/* Payment button */
.status-box button {
    border-color: #0078b5 !important;
    margin-top: 6px;
    padding: 7px 14px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    transition: 0.25s ease !important;
}

.status-box button:hover {
    background: #005f8a;
    transform: translateY(-1px);
}

/* Responsive label alignment */
@media (max-width: 480px) {
    .status-box p b {
        width: 100%;
        margin-bottom: 4px;
    }
}


/* =====================================================
   PAPER DETAILS SECTION
===================================================== */

.paper-details-box {
    background: #f4faff;
    border-left: 5px solid #0078b5;
    padding: 22px 25px;
    border-radius: 12px;
    margin-top: 28px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

.status-title-heading {
    font-size: 22px;
    font-weight: 600;
    color: #005b7f;
    margin-bottom: 18px;
}

/* Grid layout for items */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px 25px;
}

/* Label + Value inside grid items */
.status-grid div span {
    display: block;
    font-weight: 600;
    color: #003d57;
    margin-bottom: 5px;
}

.status-grid div p {
    margin: 0;
    font-size: 15px;
    color: #222;
}

/* Buttons inside grid */
.status-grid button,
.review-box button {
    margin-top: 6px;
    padding: 7px 14px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    transition: 0.25s ease !important;
}

/* Yellow Preview Button */
.btn-outline-warning {
    border-color: #0078b5 !important;
    color: #0078b5 !important;
}

.btn-outline-warning:hover {
    background: #0078b5 !important;
    color: white !important;
    transform: translateY(-1px);
}

/* Blue Preview Button */
.btn-outline-info {
    border-color: #0078b5 !important;
    color: #0078b5 !important;
}

.btn-outline-info:hover {
    background: #0078b5 !important;
    color: white !important;
    transform: translateY(-1px);
}

/* =====================================================
   REVIEW COMMENTS
===================================================== */

.review-heading {
    margin-top: 28px;
    font-size: 20px;
    font-weight: 600;
    color: #005b7f;
}

.review-box {
    background: #ffffff;
    border: 1px solid #e2e8ee;
    padding: 15px 18px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.review-box strong {
    font-size: 16px;
    color: #003d57;
}

.review-box small {
    color: #686868;
    display: block;
    margin-top: 3px;
    font-size: 13px;
}

.review-box p {
    margin-top: 8px;
    font-size: 15px;
    color: #333;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .paper-details-box {
        padding: 16px 18px;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .review-box {
        padding: 14px;
    }
}

/* ===============================
   ENQUIRY FORM SECTION Enquiry.html 
================================ */
.enquiry-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f5f9ff, #eef3fb);
    margin-top: 5%;
}

.enquiry-container {
    max-width: 550px;
    margin: auto;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.enquiry-container h2 {
    font-size: 28px;
    color: #0a325c;
    margin-bottom: 8px;
}

.enquiry-container p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

.enquiry-form .form-group {
    margin-bottom: 18px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 13px 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #0f4c81;
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.12);
}

.enquiry-form textarea {
    resize: none;
}

.enquiry-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #0a325c, #1368aa);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.enquiry-form button:hover {
    background: linear-gradient(135deg, #1368aa, #0a325c);
    transform: translateY(-1px);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 576px) {
    .enquiry-container {
        padding: 30px 20px;
    }

    .enquiry-container h2 {
        font-size: 24px;
    }
}

/* ===============================
   SUCCESS MESSAGE
================================ */
.success-message {
    display: none;
    margin-top: 18px;
    padding: 12px;
    border-radius: 8px;
    background: #e9f9f0;
    color: #1e7e34;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}



/* OTP Container */
.otp-field {
    width: 100%;
}

/* Email + Buttons Row */
.otp-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.otp-btn {
    padding: 10px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

/* Send Button */
#sendOtpBtn {
    background: #2563eb;
    color: #fff;
}

#sendOtpBtn:hover {
    background: #1d4ed8;
}

/* Verify Button */
#verifyOtpBtn {
    background: #16a34a;
    color: #fff;
}

#verifyOtpBtn:hover {
    background: #15803d;
}

/* Disabled */
.otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* OTP Input */
#otpInput {
    margin-top: 8px;
}

/* Message */
#otpMsg {
    font-size: 13px;
}

/* ================= RESPONSIVE OTP ================= */

/* Tablet */
/* Tablet */
@media (max-width: 768px) {
  .otp-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
  }

  .otp-row input {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .otp-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 6px;
    align-items: center;
  }

  .otp-btn {
    padding: 8px 10px;
    font-size: 12px;
  }
}


/**==========Conference payment section index.html ********/
.conference-payment-section {
    background: #eaf8ff;
    padding: 60px 20px;
}

.payment-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.payment-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    border: 2px dashed #4aa3df;
    color: #003366;
}

.payment-card.light {
    background: #f9fdff;
}

.payment-card h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.payment-note {
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.fee-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #cfe8f7;
    font-size: 15px;
}

.fee-list li:last-child {
    border-bottom: none;
}

.instruction-list {
    padding-left: 18px;
    line-height: 1.8;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .payment-wrapper {
        grid-template-columns: 1fr;
    }

    .payment-card {
        padding: 25px;
    }
}

.payment-section-header {
    text-align: center;
    margin-bottom: 45px;
}

.payment-section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #003366;
    margin: 0;
}

.header-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: #e53935;
    margin: 12px auto 0;
    border-radius: 4px;
}

.otp-btn {
    padding: 6px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #0a5ea3;
    color: #fff;
}

.otp-btn.verified {
    background: #28a745;
    /* green */
    cursor: not-allowed;
}
 .reg-btn {
    transition: all 0.3s ease;
    position: relative;
  }

  .reg-btn.loading {
    background-color: #999 !important;
    cursor: not-allowed;
    pointer-events: none;
  }

  .reg-btn.loading::after {
    content: " ⏳";
  }



.reg-btn:disabled,
.reg-btn.disabled {
  background-color: #bdbdbd !important;
  color: #666 !important;
  cursor: not-allowed !important;
  opacity: 0.7;
  pointer-events: none;
}

