@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* --- Global Styles & Variables --- */
:root {
    --bs-primary: #2e3192;
    --bs-secondary: #ffa500;
    --primary-color: #2e3192;
    --secondary-color: #ffa500;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white-color: #fff;
    --text-color: #333;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white-color);
    font-size: 16px;
}


a {
    text-decoration: none !important;
    color: var(--primary-color);
}

ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
    color: #555;
    font-size: 1.1rem;
}

.btn {
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.btn-primary {
    background-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
}

.btn-primary:hover {
    background-color: #e69500 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4) !important;
}

.btn-secondary {
    background: linear-gradient(45deg, var(--primary-color), #4d51c0) !important;
    color: var(--white-color) !important;
}

.btn-secondary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(46, 49, 146, 0.4) !important;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ----------- select 2 ----------------- */

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 44px !important;
    line-height: 44px !important;
}

/* ----------- select 2 ----------------- */

/* --- Header --- */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}



.form_header .container {
    max-width: 1200px;
    margin: 0 auto;

}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 110px;

}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://imgs.search.brave.com/rzH9ZgRf0JkjBnvY3dP-YKsrdfMVNv8CvYF2YLr3xvo/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9lbGxp/c29uZWxsZXJ5LmNv/bS93cC1jb250ZW50/L3VwbG9hZHMvMjAy/Mi8wOS9oaWdoZXIt/ZWQtY29uZmVyZW5j/ZXMtc2NhbGVkLmpw/Zw') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-date {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    text-transform: math-auto;
    font-weight: 600;
}

.hero-location {
    font-size: 1.3rem;
    opacity: 0.9;
}


.hero-location a {
    color: #fff;
}

/* --- Anchor Nav --- */
.link_bar {
    background: var(--light-color);
    border-bottom: 1px solid #ddd;
}

.anchor-nav {
    padding: 1rem 0;
    text-align: center;
}

.anchor-nav a {
    color: var(--text-color);
    margin: 0 18px;
    font-weight: 600;
    transition: color 0.3s;
}

.anchor-nav a:hover {
    color: var(--secondary-color);
}

/* --- Sections General Padding --- */
section {
    padding: 100px 0;
}

/* --- About & Venue Section --- */
.about-section {
    background-color: var(--white-color);
}

.venue-section {
    background-color: var(--light-color);
}

.about-text h2, .venue-text h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.about-text p, .venue-text p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #555;
}

.about-image img, .venue-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.venue-section .grid-2 {
    gap: 4rem;
}

/* More spacing for venue */

/* --- Creative Theme Section (From previous step) --- */
.theme-section {
    padding: 100px 0;
    background-color: var(--light-color);
    overflow: hidden;
}

.theme-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 992px) {
    .theme-grid {
        grid-template-columns: 1.2fr 1fr;
        position: relative;
    }
}

.theme-image-wrapper img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.theme-content-box {
    background: linear-gradient(135deg, var(--secondary-color), #ff8c00);
    color: var(--white-color);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.theme-content-box .btn {
    background: #fff;
}

.theme-content-box .btn:hover {
    background: #f5f5f5;
    color: #000;
}

@media (min-width: 992px) {
    .theme-content-wrapper {
        position: relative;
        transform: translateX(-120px);
    }
}

.theme-content-box h1 {
    font-size: 45px;
    font-weight: 700;
}

.theme-content-box h3 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.theme-content-box h3 span {
    color: #2e3192;
}

.theme-content-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.btn-theme {
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-theme:hover {
    background-color: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- SCROLL ANIMATION CLASSES --- */
.hidden {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.show {
    opacity: 1;
    transform: translateX(0) !important;
}

.slide-in-left {
    transform: translateX(-100px);
}

.slide-in-right {
    transform: translateX(100px);
}

@media (max-width: 991px) {
    .theme-content-wrapper {
        transform: translateX(0);
    }

    .slide-in-left, .slide-in-right {
        transform: translateY(50px);
    }

    .show {
        transform: translateY(0) !important;
    }
}

/* --- Registration Section --- */
.registration-section {
    background-color: var(--white-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.pricing-card h3 {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card h4 {
    font-size: 16px;
    font-weight: 600;
}

.pricing-card p {
    font-weight: 600;
    text-decoration: underline;
    color: var(--secondary-color);
}

.extra_data {
    display: flex;
    gap: 60px;
}

.extra_data .event_data h1 {
    text-transform: uppercase;
}

.earlybird-label {
    position: absolute;
    top: -50px;
    left: -28px;
    z-index: 1;
    width: 180px;
}

.pricing-card .price {
    margin-bottom: 1.5rem;
    margin-top: 10px;
}

.price .original-price {
    font-size: 1.8rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.price .discounted-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 3rem;
}

.pricing-card .btn {
    margin-bottom: 2rem;
    width: 80%;
}

.pricing-card ul {
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.pricing-card ul li::before {
    content: '✓';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--white-color);
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
}

.pricing-card ul .cancel::before {
    content: 'X';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--white-color);
    background: darkred;
    position: absolute;
    left: 0;
    top: 3px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;

}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 165, 0, 0.2);
}

/* --- Schedule Section --- */
.schedule-section {
    background: var(--light-color);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.schedule-item {
    background: var(--white-color);
    padding: 0 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 0 30px 0;
}


.schedule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.schedule-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.schedule-item:hover::before {
    width: 100%;
}

.schedule-item h4, .schedule-item p {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.schedule-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
}

.schedule-item p {
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 30px;
}



.schedule-item:hover h4, .schedule-item:hover p, .schedule-item:hover a {
    color: var(--white-color);
}

/* --- Partners Section --- */
.partners-section {
    background-color: var(--white-color);
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.logo-grid img {
    max-height: 55px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* --- Testimonials Section --- */
.testimonials-section {
    background: var(--light-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    text-align: center;
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    height: 420px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-card:hover img {
    transform: scale(1.05);
}

.testimonial-card::after {
    /* Gradient Overlay */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

.testimonial-card .play-button, .testimonial-card h4, .testimonial-card p {
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
}

.play-button {
    top: 45%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    transition: background 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.testimonial-card:hover .play-button {
    background: var(--secondary-color);
}

.testimonial-card h4 {
    bottom: 60px;
    color: var(--white-color);
    font-size: 1.4rem;
    width: 100%;
}

.testimonial-card p {
    bottom: 35px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    width: 100%;
}

/* --- Footer Wave Divider --- */
.footer-wave-divider {
    position: relative;
    background: var(--light-color);
}

.footer-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-wave-divider .shape-fill {
    fill: var(--dark-color);
}

/* --- Footer --- */
.footer {
    background: #014262;
    color: #ccc;
    padding: 100px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer p {
    margin: 0 0 10px 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-col .logo {
    color: var(--secondary-color);
}

.footer-col h4 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: #ccc;
    transition: color 0.3s ease, padding-left 0.3s ease;
    position: relative;
}

.footer-col ul a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px;
    margin-right: 10px;
}

.newsletter-form .form-control::placeholder {

    color: var(--white-color);
}

.newsletter-form .form-control:focus {
    background: #333333;
    border: 1px solid var(--secondary-color);
    outline: none;
    color: var(--white-color);
    box-shadow: none;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    background: #003048;
    color: var(--white-color);
    border-radius: 50px 0 0 50px;
    outline: none;
}

.newsletter-form button {
    border-radius: 0 50px 50px 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    color: #ccc;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.social-icons i {
    font-size: 1.2rem;
    margin-right: 12px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #bbb;
    padding-top: 2rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    margin-left: 20px;
}

/* --- Video Modal --- (No changes needed, but included for completeness) */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -45px;
    right: -5px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover, .close-modal:focus {
    color: #bbb;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Responsive Mobile Styles --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 74px;
        left: 0;
        background: var(--white-color);
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
    }

    .main-nav ul a {
        padding: 1rem;
        display: block;
        width: 100%;
    }

    .main-nav a::after {
        display: none;
    }

    .header .btn-primary {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .anchor-nav {
        display: flex;
        overflow-x: scroll;
    }

    .anchor-nav a {
        text-wrap: nowrap;
    }

    .link_bar .container {
        padding: 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card:hover {
        transform: none;
        box-shadow: none;
    }
}

@media screen and (max-width:400px) {
    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .form-grid {
        gap: 0;
    }
}


/* ====================================================== */
/* ============== CSS FOR SPEAKERS ============== */
/* ====================================================== */

.hero-speakers {
    height: 50vh;
    min-height: 400px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('https://cdn.prod.website-files.com/65cb6a13e28e17a9782545c2/6628deae53da0011e07bde4f_ehtdf.jpg');

}

.hero-speakers h1 {
    font-size: 3.5rem;
}

.speakers-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.speakers-section-alt {
    background-color: var(--light-color);
}

.speakers-grid-single {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.speakers-grid-single .speaker-card {
    max-width: 300px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--primary-color), #4d51c0);
    text-align: center;
    color: var(--white-color);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}

.cta-section .btn-primary {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.cta-section .btn-primary:hover {
    transform: scale(1.15) translateY(-3px);
}


.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
    margin-top: 4rem;
}

.speaker-card {
    text-align: center;
    width: 100%;
    margin: 0 0 30px 0;
}

.speaker-card .speaker-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.speaker-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 1;
}

.speakers-section h6 {
    text-align: center;
    background: #029693;
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 30px;
    display: inline-block;
    font-size: 26px;
    font-weight: 600;
}

.speaker-image-wrapper.bg-teal::before {
    background: #14b8a6;
}

.speaker-image-wrapper.bg-magenta::before {
    background: #d946ef;
}

.speaker-image-wrapper.bg-orange::before {
    background: #f97316;
}

.speaker-image-wrapper.bg-purple::before {
    background: #8b5cf6;
}

.speaker-image-wrapper.bg-green::before {
    background: #22c55e;
}

.speaker-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.speaker-card:hover .speaker-image-wrapper img {
    transform: scale(1.05);
}

.speaker-info h4 {
    text-transform: uppercase;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
}

.speaker-info h4:first-child {
    color: var(--primary-color);
}

.speaker-info p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    font-weight: 600;
}


.speaker-info h5 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
}

/* ======================================================== */
/* ============== CSS FOR HOTELS-TRAVEL ============== */
/* ======================================================== */

.hero-travel {
    height: 60vh;
    min-height: 450px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)), url('https://cdn.prod.website-files.com/675693e006eaa0b4e8c7071c/67e3f5e1ba984c2aa78e21c3_pexels-k3ithvision-10860316.jpg');

}

.book-stay-section {
    padding: 100px 0;
    background: var(--white-color);
}

.book-stay-section .about-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Hotel List Table Styling */
.hotel-list-section {
    padding: 100px 0;
    background: var(--light-color);
}

.hotel-table {
    margin-top: 3rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.hotel-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.hotel-row:last-child {
    border-bottom: none;
}

.hotel-row div {
    padding: 1.5rem;
}

.hotel-row.header {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.hotel-row:nth-child(even) {
    background-color: var(--white-color);
}

.hotel-row small {
    color: #666;
    font-size: 0.9em;
    display: block;
    margin-top: 5px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.hotel-notes {
    margin-top: 2rem;
    color: #555;
}

.hotel-notes ul {
    list-style-type: disc;
    padding-left: 20px;
}

.hotel-notes li {
    margin-bottom: 0.5rem;
}

.travel-info-section {
    padding: 100px 0;
    background: var(--white-color);
}

.travel-info-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: 100%;
}

.travel-info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 1.5rem;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 5px;
    width: 20px;
    text-align: center;
}

/* Visa Section Styling */
.visa-section {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.visa-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.visa-section p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: #555;
}


@media (max-width: 992px) {
    .hotel-row {
        grid-template-columns: 1fr;
        padding: 1rem;
        border-bottom: 2px solid var(--primary-color);
        margin: 0 0 30px 0;
    }

    .book-stay-section,
    .hotel-list-section {
        padding: 60px 0;
    }

    .hotel-row.header {
        display: none;
    }

    .hotel-row div {
        /* display: flex; */
        justify-content: space-between;
        padding: 0.75rem 0.5rem;
        border-bottom: 1px solid #eee;
    }

    .hotel-row div:last-child {
        border-bottom: none;
    }

    .hotel-row div::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
        padding-right: 1rem;
    }

    .hotel-row div[data-label="Booking"] {
        display: block;
        text-align: center;
        padding-top: 1rem;
    }

    .hotel-row div[data-label="Booking"]::before {
        display: none;
    }

    .travel-info-card h3 {
        font-size: 16px;
    }



}


/* ====================================================== */
/* ============== CSS FOR VISA ============== */
/* ====================================================== */

.visa-process-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.info-box {
    display: flex;
    gap: 1.5rem;
    background-color: #e9e9ff;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0 3rem 0;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-box a {
    font-weight: 600;
    color: var(--primary-color);
}

.process-step-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.15;
    line-height: 1;
}

.step-title {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.step-content p {
    color: #555;
    line-height: 1.8;
}

.step-content a {
    font-weight: 600;
}

.step-content .mt-2 {
    margin-top: 1.5rem;
}


.country-grid {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
}

.country-grid ul {
    list-style: none;
    padding: 0;
    column-count: 4;
    column-gap: 2rem;
}

.country-grid li {
    margin-bottom: 0.8rem;
    color: #333;
    position: relative;
    padding-left: 25px;
}

.country-grid li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

@media (max-width: 1200px) {
    .country-grid ul {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .country-grid ul {
        column-count: 2;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .step-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .country-grid ul {
        column-count: 1;
    }
}


/* ========================================================== */
/* ============== CSS FOR INSTITUTIONS ============== */
/* ========================================================== */

.page-title-section {
    padding: 60px 0;
    background-color: var(--white-color);
    text-align: left;
}

.page-title-section h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
}

.page-title-section h1 {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin: 0.5rem 0;
    font-weight: 600;
}

.page-title-section p {
    color: #777;
}

.institutions-section {
    padding: 0 0 100px 0;
    background-color: var(--white-color);
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    color: #888;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.4s ease;
}

.tab-button.active {
    color: var(--secondary-color);
}

.tab-button.active::after {
    width: 100%;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.institution-list {
    list-style: none;
    padding: 0;
    column-count: 3;
    column-gap: 2.5rem;
}

.institution-list li {
    margin-bottom: 1rem;
    color: #333;
    padding-left: 20px;
    position: relative;
    break-inside: avoid;
}

.institution-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .institution-list {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .institution-list {
        column-count: 1;
    }

    .tab-button {
        font-size: 1rem;
        padding: 1rem;
    }

    .page-title-section h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .institutions-section {
        padding-top: 0;
    }
}



/* ====================================================== */
/* ============== CSS FOR TOOLKIT ============== */
/* ====================================================== */

.toolkit-page-wrapper {
    background-color: var(--white-color);
}

.toolkit-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    /* Sidebar width and main content */
    gap: 4rem;
    padding: 60px 0;
}

/* Sidebar Styling */
.toolkit-sidebar {
    position: sticky;
    top: 120px;
    /* Header height + some space */
    align-self: start;
    /* Sticks to the top of its grid area */
    height: calc(100vh - 140px);
    overflow-y: auto;
}

.toolkit-sidebar h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    font-weight: 600;
    padding-bottom: 1rem;
}

.toolkit-sidebar ul {
    list-style: none;
    padding: 0;
}

.toolkit-sidebar li a {
    display: block;
    padding: 0.8rem 1rem;
    color: #555;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.toolkit-sidebar li a:hover {
    background-color: #e9e9ff;
    color: var(--primary-color);
}

.toolkit-sidebar li a.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
}

/* Content Area Styling */
.toolkit-content {
    min-width: 0;
    /* Fix for flexbox/grid overflow issues */
}

.toolkit-section {
    padding-bottom: 4rem;
    border-bottom: 1px solid #eee;
}

.toolkit-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.toolkit-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.toolkit-section p {
    color: #555;
    max-width: 700px;
    margin-bottom: 2rem;
}

/* Large Social Icons */
.social-icons-large {
    display: flex;
    gap: 1rem;
}

.social-icons-large a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons-large a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

/* Hashtag Grid */
.hashtag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hashtag-grid span {
    background-color: #e9e9ff;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Resource Cards */
.resource-grid, .resource-grid-wide {
    display: grid;
    gap: 1.5rem;
}

.resource-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.resource-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.resource-card {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    background: #fdfdfd;
    transition: box-shadow 0.3s, transform 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.resource-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #f0f0f0;
}

.resource-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Responsive Styles for Toolkit Page */
@media (max-width: 992px) {
    .toolkit-layout {
        grid-template-columns: 1fr;
        /* Stack sidebar on top of content */
    }

    .toolkit-sidebar {
        position: static;
        /* Remove sticky behavior */
        height: auto;
        margin-bottom: 3rem;
        border-bottom: 2px solid #eee;
        padding-bottom: 2rem;
    }
}


/* ======================================================= */
/* ============== CSS FOR REGISTER.HTML PAGE ============== */
/* ======================================================= */

.form-page-body {
    background-color: var(--light-color);
}

.form-container {
    max-width: 800px;
    margin: 4rem auto;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header img {
    width: 100%;
    display: block;
}

.form-content {
    padding: 2.5rem 3rem;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 4px;
    transition: width 0.4s ease-in-out;
}

.progress-bar-text {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-content h1 {
    font-size: 24px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 24px;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
}

/* Form Styling */
#registration-form fieldset {
    border: none;
    padding: 0;
    margin-bottom: 2rem;
}

#registration-form legend {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group label::after {
    content: ' *';
    color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="file"],
select {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 49, 146, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Custom Radio Buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 20px 0;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-color 0.3s;
}

.custom-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s;
}

.radio-label input[type="radio"]:checked+.custom-radio {
    border-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked+.custom-radio::after {
    transform: scale(1);
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
}

/* Contact Box */
.contact-info-box {
    background: var(--light-color);
    padding: 2rem;
    text-align: center;
}

.contact-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-box p {
    color: #555;
}

/* Responsive */
@media(max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-content {
        padding: 2rem 1.5rem;
    }

    .form-container {
        max-width: 1200px !important;
    }
}


.registration_type {
    margin: 0 0 30px 0;
}

fieldset {
    border: none;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    /* border-top: 1px solid #eee; */
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}


.selection-card {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.selection-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.selection-header {
    flex-grow: 1;
}

.selection-header h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
}

.selection-header p {
    font-size: 14px;
}

.price_button {
    text-align: center;
}

.selection-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.selected {
    background: var(--secondary-color) !important;
    color: white;
    cursor: default;
}

/* Selection with Quantity (Step 5) */
.selection-card-qty {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.selection-card-qty h4 {
    font-size: 1.1rem;
}

.selection-card-qty p {
    font-size: 0.9rem;
    color: #666;
}

/* Terms Box (Step 6) */
.terms-box {
    height: 200px;
    overflow-y: scroll;
    border: 1px solid #ccc;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.terms-box p {
    font-size: 13px;
    margin: 0 0 10px 0;
}

.radio-group-inline {
    display: flex;
    gap: 2rem;
}

/* Summary Box (Step 7) */
.summary-box {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 2rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.summary-grid strong {
    display: block;
    color: var(--primary-color);
}

.summary-grid p {
    margin: 0;
}

/* Order Summary & Payment (Step 8) */
.order-summary {
    margin-bottom: 2rem;
}

.order-summary table {
    width: 100%;
    border-collapse: collapse;
}

.order-summary th, .order-summary td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.order-summary th:last-child, .order-summary td:last-child {
    text-align: end;
}

.order-summary thead {
    background: var(--light-color);
}

.order-summary tfoot {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.payment-form {
    margin-top: 1rem;
}

.success-container {
    max-width: 600px;
    margin: 6rem auto;
    padding: 3rem;
    text-align: center;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: #27ae60;
    /* Green color for success */
    margin-bottom: 1.5rem;
}

.success-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-container p {
    color: #555;
    margin-bottom: 2rem;
}


/* ====================================================== */
/* ============== CSS FOR BLOG & NEWS PAGES ============== */
/* ====================================================== */

/* Hero for Blog/News Pages */
.hero-blog {
    height: 50vh;
    min-height: 400px;
}

/* Blog List Page Styling */
.blog-page-section {
    padding: 80px 0;
    background: var(--light-color);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.featured-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    padding: 3rem;
}

.featured-post-content h2 a {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.featured-post-content p {
    color: #555;
    margin: 1rem 0;
}

.filter-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--white-color);
    border: 1px solid #ddd;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.post-category {
    display: inline-block;
    background: #e9e9ff;
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-content h3 a {
    font-size: 1.3rem;
    color: var(--dark-color);
    font-weight: bold;
}

.card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.pagination a {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    font-weight: 600;
}

.pagination a.active, .pagination a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* News & Updates Page Styling */
.news-page-section {
    padding: 80px 0;
}

.news-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #eee;
    padding: 2rem 0;
}

.news-date {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 600;
}

.news-date span {
    font-size: 2rem;
    display: block;
}

.news-content h3 a {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.news-content p {
    color: #555;
    margin-top: 0.5rem;
}

/* Blog Details Page Styling */
.blog-post-hero {
    height: 60vh;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.blog-post-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.blog-post-hero-content {
    position: relative;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.blog-post-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.blog-post-hero .post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.blog-post-hero .post-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.blog-post-section {
    padding: 80px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

.blog-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-content p:first-of-type {
    font-size: 1.2rem;
    color: #333;
}

.blog-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
}

.blog-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
}

.blog-sidebar .sidebar-widget {
    margin-bottom: 2.5rem;
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sidebar-widget input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #eee;
    color: #555;
}

.tag-cloud a {
    display: inline-block;
    background: var(--light-color);
    padding: 5px 12px;
    margin: 5px 5px 0 0;
    border-radius: 5px;
    color: #555;
}

.cta-widget {
    background: #e9e9ff;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

/* Responsive Styles */
@media(max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        margin-top: 3rem;
    }
}

@media(max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .featured-post-content {
        padding: 2rem;
    }

    .filter-nav {
        flex-wrap: wrap;
    }
}


/* ====================================================== */
/* ============== CSS FOR OTP POPUP MODAL =============== */
/* ====================================================== */

.otp-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.otp-modal.active {
    display: flex;
}

.otp-content {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal-btn:hover {
    color: #333;
}

.otp-icon {
    font-size: 2.5rem;
    color: var(--white-color);
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.otp-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.otp-content p {
    color: #555;
    margin-bottom: 2rem;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.otp-input {
    width: 60px;
    height: 70px;
    font-size: 2rem;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-weight: 600;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.otp-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 49, 146, 0.2);
}

.resend-otp {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.resend-otp .otp_active {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 480px) {
    .otp-input {
        width: 45px;
        height: 55px;
        font-size: 1.5rem;
    }

    .otp-content {
        padding: 2rem 1.5rem;
    }
}

/* ============================ Pre Conference =========================== */
.workshop-page-section {
    background-color: var(--light-color);
}

.workshop-section-heading {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

/* Speaker Card Styling */
.speaker-workshop-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.speaker-workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 49, 146, 0.15);
}

.speaker-workshop-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    border: 4px solid var(--secondary-color);
}

.speaker-workshop-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.speaker-workshop-card .qualifications {
    font-size: 16px;
    color: #555;
    margin-bottom: 1rem;
    min-height: 100px;
    /* To align topics at the bottom */
}

.speaker-workshop-card .topic {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

/* Details and Registration Card Styling */
.card-title {
    font-weight: 700;
    color: var(--white-color) !important;
    background-color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 2rem !important;
    display: inline-block;
}

.registration-fees-card, .date-time-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    text-align: center;
}

.fee-tier {
    margin-bottom: 1.5rem;
    text-align: center;
}

.fee-tier .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.fee-tier .date-condition {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

.qr-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed #ddd;
}

.qr-section img {
    width: 120px;
    height: 120px;
}

.qr-section p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.date-time-card .card-title {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.info-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.info-line i {
    color: var(--primary-color);
}

/* Workshop Footer Info Bar */
.workshop-footer-info {
    background: linear-gradient(45deg, var(--primary-color), #4d51c0);
    color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-block i {
    font-size: 2rem;
}

.info-block p {
    margin: 0;
    font-size: 0.9rem;
}


.info-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-list {
    list-style: none;
    padding: 0;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-list li:last-child {
    margin-bottom: 0;
}

.icon-list i {
    font-size: 1rem;
    background-color: #eef2ff;
    /* Light primary tint */
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    min-width: 45px;
    /* Ensures width doesn't shrink */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-list strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 3px;
}

/* Specific styling for the advantages card */
.advantages-card h2 {
    color: var(--secondary-color);
}

.advantages-card .icon-list i {
    background-color: #fff8e1;
    /* Light secondary tint */
    color: var(--secondary-color);
}



/* ====================================================== */
/* ========= CSS FOR EXPERT SESSIONS PAGE ========= */
/* ====================================================== */

.expert-sessions-section {
    background-color: var(--light-color);
}

.expert-session-item {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-session-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(46, 49, 146, 0.1);
}

.speaker-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--secondary-color);
}

.session-details h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    /* Space for quotes */
}

.session-details h3 .fa-quote-left,
.session-details h3 .fa-quote-right {
    position: absolute;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.session-details h3 .fa-quote-left {
    left: -10px;
    top: -30px;
}

.session-details h3 .fa-quote-right {
    right: -10px;
    bottom: 0;
}

.session-details h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-top: 0.5rem;
}

/* Responsive Styles for the page */
@media (max-width: 767px) {
    .expert-session-item .row>div {
        text-align: center;
    }

    .speaker-photo {
        margin-bottom: 1.5rem;
    }

    .session-details h3 {
        font-size: 1.5rem;
        padding: 0;
    }

    .session-details h3 .fa-quote-left,
    .session-details h3 .fa-quote-right {
        display: none;
        /* Hide quotes on small screens */
    }

    /* Revert the order on mobile */
    .expert-session-item .row>.order-md-1,
    .expert-session-item .row>.order-md-2 {
        order: 0;
    }
}



/* ------ New venue design css -------------- */

.timeline-wrapper {
    position: relative;
}

/* The central timeline line */
.timeline-wrapper::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The circular date marker on the timeline */
.timeline-date {
    position: absolute;
    width: 100px;
    height: 100px;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 5px solid var(--light-color);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.2;
}

.timeline-date span {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Place items to the left */
.timeline-item:nth-child(odd) {
    left: 0;
}

/* Place items to the right */
.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -50px;
}

.timeline-content {
    padding: 2rem;
    background-color: white;
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content p {
    margin: 0;
}

.image-frame {
    position: relative;
    padding: 10px;
    border-radius: var(--border-radius);
}


/* Responsive Timeline */
@media screen and (max-width: 991px) {
    .timeline-wrapper::after {
        left: 50px;
        /* Move timeline to the left */
    }

    .timeline-item {
        width: 100%;
        padding-left: 100px;
        /* Give space for the date circle */
        padding-right: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-date {
        left: 0;
    }

    .timeline-item:nth-child(even) .timeline-date {
        left: 0;
    }
}


/* ====================================================== */
/* ============== CSS FOR INVOICE/RECEIPT PAGE ============== */
/* ====================================================== */

