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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}


.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Dark Theme Top Bar */
.top-info-bar {
    min-height: 42px;
    background-color: #0b0e14;
    /* Deep dark tone matching the dark background */
    border-bottom: 1px solid rgba(232, 74, 67, 0.25);
    /* Subtle coral red border */
    font-family: 'Poppins', sans-serif;
}

/* Contact Details */
.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 8px 25px;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c5cedb;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.top-contact-item:hover {
    color: #ffffff;
}

.top-contact-item:hover .top-icon {
    background-color: #E84A43;
    color: #ffffff;
    transform: scale(1.08);
}

.top-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(232, 74, 67, 0.15);
    color: #E84A43;
    font-size: 11px;
    transition: all 0.3s ease;
}

/* Social Media Section */
.top-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 6px 25px;
}

.follow-text {
    color: #8c98a9;
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #c5cedb;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #E84A43;
    border-color: #E84A43;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(232, 74, 67, 0.3);
}

@media (max-width: 991px) {
    .header-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    /* .fmes-hero {
        padding-top: 130px !important;
    } */
}

@media (max-width: 767px) {
    .top-contact {
        justify-content: center;
        gap: 15px;
        padding: 8px 5px 4px;
    }

    .top-contact-item {
        font-size: 11px;
    }

    .top-icon {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .top-social {
        justify-content: center;
        padding: 4px 5px 8px;
    }

    .follow-text {
        font-size: 11px;
    }
}



.custom-navbar {
    min-height: 85px;
    background-color: #151A2C;
}

.logo-section {
    height: 85px;
    background-color: #fff;
    display: flex;
}

.logo-section img {
    margin-top: -15px;
}

.mobile-menu-btn {
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding-right: 20px;
}

.navbar-toggler {
    border: none !important;

    background: transparent;

    color: white;

    font-size: 28px;

    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    color: #E84A43;
}


/* =====================================================
   DESKTOP MENU
===================================================== */

@media (min-width: 992px) {

    #mainMenu {
        display: block !important;
    }

    .menu-section {

        display: flex;

        flex-direction: row;

        justify-content: flex-end;

        align-items: center;

        gap: 5px;

        padding: 20px;

        margin: 0;

        list-style: none;
    }

}


/* =====================================================
   MENU LINK
===================================================== */

.menu-section .nav-link {

    color: white !important;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 10px;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.menu-section .nav-link:hover {
    color: #E84A43 !important;
}

.menu-section .nav-link.active {

    color: #E84A43 !important;
}


/* =====================================================
   MOBILE MENU
===================================================== */

@media (max-width: 991px) {

    #mainMenu {

        width: 100%;

        background-color: #151A2C;

        padding-bottom: 10px;
    }

    .menu-section {

        padding: 10px 20px;

        margin: 0;

        list-style: none;
    }

    .menu-section .nav-item {

        width: 100%;
    }

    .menu-section .nav-link {
        display: block;
        width: 100%;
        padding: 12px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

}


.fmes-hero {
    margin-top: 110px;
}

.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-1 {
    background-image: url('/storage/image/resot.avif');
}

.hero-slide-2 {
    background-image: url('/storage/image/hd.png');
}

.hero-slide-3 {
    background-image: url('/storage/image/beachuri.avif');
}

.hero-slide-4 {
    background-image: url('/storage/image/hotel.png');
}

@media(max-width:768px) {

    .carousel-item {
        height: 280px;
    }

}


.conference-section {
    /* padding:60px 0; */
    background: #fff;
}

.conference-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 30px 0px !important;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 77, 90, .12);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .05),
        0 25px 60px rgba(255, 77, 90, .08);

    transition: .4s;
}

.conference-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .08),
        0 35px 70px rgba(255, 77, 90, .15);

}

.conference-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #D5020E;

}

.conference-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 77, 90, .05);
    border-radius: 50%;
    right: -70px;
    top: -70px;
}

.conference-badge {

    display: inline-block;
    padding: 8px 22px;
    background: #ff4d5a;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.conference-subtitle {
    margin-top: 18px;
    color: #000;
    font-size: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;

}

.conference-title {
    margin-top: 12px;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: #111;
}

.conference-title span {
    display: inline;
    color: #D5020E;

}

.conference-code {
    margin-top: 12px;
    font-weight: 700;
    color: #333;
}

.conference-divider {
    width: 90px;
    height: 4px;
    background: #D5020E;
    border-radius: 20px;
    margin: 25px auto 30px;

}

.info-card {

    display: flex;

    align-items: center;

    gap: 15px;

    background: #fff;

    border: 1px solid #ededed;

    border-radius: 18px;

    padding: 18px;

    height: 100%;

    transition: .35s;

}

.info-card:hover {

    border-color: #ff4d5a;

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(255, 77, 90, .15);

}

.info-icon {

    width: 58px;

    height: 58px;

    background: #ff4d5a;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    flex-shrink: 0;

}

.info-card span {

    display: block;

    color: #ff4d5a;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

}

.info-card h6 {

    margin: 5px 0 0;

    color: #222;

    line-height: 1.5;

}

@media(max-width:991px) {

    .conference-card {

        padding: 30px;

    }

    .conference-title {

        font-size: 36px;

    }

    .info-card {

        margin-bottom: 15px;

    }

}

@media(max-width:576px) {

    .conference-title {

        font-size: 28px;

    }

    .conference-subtitle {

        letter-spacing: 2px;

        font-size: 13px;

    }

    .conference-card {
        padding: 25px 20px;

    }

}

.conference-date-section {
    padding: 20px 0;
    background: #fff;
}

.conference-date-card {
    position: relative;
    background: #fff;
    text-align: justify;
    padding: 40px 35px;
    border-radius: 22px;
    border: 1px solid rgba(255, 77, 90, .15);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .05),
        0 25px 55px rgba(255, 77, 90, .08);
    overflow: hidden;
    transition: .4s;
}


.conference-date-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(255, 77, 90, .18);
}

/* Top Circle */

.calendar-circle {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #D5020E, #E03E4B);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px #D5020E;
    animation: floatIcon 3s ease-in-out infinite;
}

.date-title {
    display: block;
    margin-top: 22px;
    font-size: 14px;
    color: #D5010D;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
}

.conference-date {
    margin-top: 10px;
    font-size: 30px;
    font-weight: 800;
    color: #222;
}

.date-line {
    width: 80px;
    height: 4px;
    margin: 18px auto;
    border-radius: 20px;
    background: #D5010D;
}

.date-text {
    margin: 0;
    color: #777;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Decorative Circles */

.conference-date-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 77, 90, .05);
    left: -90px;
    top: -90px;
}

.conference-date-card::after {

    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    border-radius: 50%;

    background: rgba(255, 77, 90, .06);

    right: -50px;

    bottom: -50px;
}

@keyframes floatIcon {

    0% {

        transform: translateY(0);

    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@media(max-width:768px) {
    .conference-date {
        font-size: 28px;
    }

    .calendar-circle {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}


.venue-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 30px;
    border: 2px solid #ffeded;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.section-tag {
    color: #D5010D;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.venue-info h2 {
    color: #222222;
    font-size: 33px;
    margin: 15px 0;
    font-weight: 800;
    letter-spacing: 1px;
}

.venue-address {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.btn-map {
    background: #D5010D;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    border: 2px solid #D5010D;
}

.btn-map:hover {
    background: transparent;
    color: #D5010D;
}





/* ================================
   ORGANIZER SECTION
================================ */

.organizer-section {
    padding: 20px 0;
    background: #ffffff;
    position: relative;
}

.organizer-title {
    border-left: 4px solid #D5010D;
    padding-left: 25px;
}

.organizer-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #151a2d;
    margin-bottom: 10px;
}

.organizer-title p {
    font-size: 16px;
    color: #777;
    margin-bottom: 0;
}




.organization-label {
    color: #D5010D;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.organization-content h4 {
    margin-top: -15px;
    margin-bottom: 0;
    font-size: 21px;
    line-height: 1.5;
    color: #151a2d;
    font-weight: 700;
}

#tcg-h {
    margin-top: -65px;
}

.association-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.association-heading span {
    width: 35px;
    height: 2px;
    background: #D5010D;
}

.association-heading h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #151a2d;
}

.organization-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 25px 20px;
    background: #f8f9fc;
    border-top: 5px solid #D5010D;
    border-radius: 12px;
    height: 100%;
    min-height: 200px;
    transition: 0.3s ease;
}

.organization-icon,
.organization-icon1 {
    width: 100% !important;
    text-align: center;
}

.organization-icon img,
.organization-icon1 img {
    width: 125px !important;
    height: 125px !important;
    max-width: none !important;
    object-fit: contain;
    display: inline-block;
}

#org-img-tcg {
    width: 230px !important;
    height: 150px !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

@keyframes textBlink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.animated-sub-btn {
    background: linear-gradient(135deg, #ff4d5a, #e03b47);
    border-radius: 50px !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 4px 15px rgba(255, 77, 90, 0.3);
    transition: all 0.3s ease;
}

.animated-sub-btn span,
.animated-sub-btn i {
    animation: textBlink 1.2s infinite ease-in-out;
}

.animated-sub-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 90, 0.5) !important;
    color: #fff !important;
}

.session-banner {
    border: 2px solid #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(255, 77, 90, 0.3);
}


.table-bordered {
    border: 1px solid #dee2e6;
}

.custom-table-card table th {
    background-color: #dee2e6;
    text-align: center !important;
}

.custom-table-card table td {
    text-align: justify !important;

}

.theme-action-btn {
    background-color: #E53935;
    /* border: 2px solid #ff4d5a; */
    font-size: 12px !important;
    transition: all 0.3s ease;
}


.theme-action-btn:hover {
    background-color: #D5020E;
    border-color: #1a1a2e;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 77, 90, 0.3);
}

.submission-card1 {
    height: auto;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px !important;
    padding: 20px;
}

@media(max-width:600px) {

    .organization-icon1,
    .organization-icon {
        display: block !important;
        margin: auto !important;
        text-align: center;
    }

    .chair-content h3 {
        font-size: 25px !important;
    }

    .conference-date {
        text-align: center;
    }
}

/* Registration Fee Table Custom Styling */
.custom-word-table {
    border-collapse: collapse !important;
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

.custom-word-table th,
.custom-word-table td {
    border: 1px solid #D5010D!important;
    vertical-align: middle;
}

/* Section Header Styling */
#registration-fee h2 {
    color: #D5010D;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .custom-word-table th,
    .custom-word-table td {
        font-size: 13px;
        padding: 8px !important;
    }

    #registration-fee h2 {
        font-size: 1.5rem;
    }
}

.partner-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px !important;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    min-height: 200px;
    transition: 0.3s ease;
}
.partner-box img {
    width: 210px !important;
    height: 110px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.partner-box:hover {
    border-color: #D5020E;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.partner-box i {
    color: #D5020E;
    font-size: 22px;
    margin-top: 4px;
}

.partner-box h4 {
    margin: 0;
    text-align: center;
    color: #000;
    font-weight: bold;
}


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

@media (max-width: 991px) {

    .organizer-title {
        margin-bottom: 30px;
    }

    .organizer-title h2 {
        font-size: 32px;
    }

}

@media (max-width: 576px) {

    .organizer-section {
        padding: 50px 15px;
    }

    .organization-box {
        align-items: flex-start;
        padding: 20px;
    }

    .organization-content h4 {
        font-size: 17px;
    }

    .partner-box {
        padding: 18px;
    }

    .partner-box p {
        font-size: 15px;
    }

}






/* =====================================
   ABOUT FMES-2026
===================================== */

.about-fmes-section {

    padding: 90px 0;

    background: #f8f9fc;

}


/* Section Heading */

.about-subtitle {

    color: #ff4d5a;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.about-title {

    margin-top: 10px;

    font-size: 42px;

    font-weight: 800;

    color: #151a2d;

}


.about-title span {

    color: #ff4d5a;

}


.about-divider {

    width: 70px;

    height: 4px;

    background: #ff4d5a;

    margin: 18px auto;

    border-radius: 10px;

}


.about-intro {

    font-size: 18px;

    color: #777;

}


/* =====================================
   LEFT FEATURE BOX
===================================== */

.about-image-box {

    min-height: 430px;

    position: relative;

    display: flex;

    align-items: center;

    padding: 50px;

    overflow: hidden;

    border-radius: 15px;

    background:

        linear-gradient(135deg,
            rgba(21, 26, 45, 0.98),
            rgba(255, 77, 90, 0.85));

}


.about-image-box::before {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    right: -80px;

    top: -80px;

}


.about-image-box::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    left: -70px;

    bottom: -70px;

}


.about-image-content {

    position: relative;

    z-index: 2;

}


.about-year {

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 4px;

}


.about-image-content h3 {

    margin-top: 20px;

    color: #ffffff;

    font-size: 35px;

    line-height: 1.25;

    font-weight: 800;

}


.about-image-content p {

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 16px;

    line-height: 1.7;

}


/* Floating Card */

.about-floating-card {

    position: absolute;

    right: 25px;

    bottom: 25px;

    z-index: 3;

    padding: 15px 20px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

}


.about-floating-card strong {

    color: #ff4d5a;

    font-size: 28px;

}


.about-floating-card span {

    color: #555;

    font-size: 13px;

}


/* =====================================
   ABOUT CONTENT
===================================== */

.about-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 18px;
}

/* Initially hide extra content */
.more-content {
    display: none;
}

/* Stylish Read More Button */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D5020E 0%, #e03e4b 100%);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(255, 77, 90, 0.25);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #e03e4b 0%, #c92f3c 100%);
    box-shadow: 0 8px 22px rgba(255, 77, 90, 0.35);
    transform: translateY(-2px);
}

.read-more-btn .btn-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover .btn-icon {
    transform: translateX(4px);
}


/* =====================================
   ACCORDION
===================================== */

.about-accordion .accordion-item {
    margin-bottom: 12px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
}


.about-accordion .accordion-button {
    padding: 20px 25px;
    color: #D5020E;
    background: #ffffff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: none;

}

.about-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background: #D5020E;

}

.about-accordion .accordion-button::after {
    background-size: 16px;
}


.about-accordion .accordion-body {
    padding: 25px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    background: #ffffff;
}


/* =====================================
   VISION BOX
===================================== */

.vision-box {

    padding: 35px 40px;

    position: relative;

    border-left: 5px solid #ff4d5a;

    background: #151a2d;

    border-radius: 10px;

}


.vision-box i {

    color: #ff4d5a;

    font-size: 30px;

    margin-bottom: 15px;

}


.vision-box p {

    margin: 0;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.8;

    font-weight: 500;

}


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

@media (max-width: 991px) {

    .about-title {

        font-size: 36px;

    }

    .about-image-box {

        min-height: 380px;

    }

}


@media (max-width: 576px) {

    .about-fmes-section {

        padding: 60px 15px;

    }

    .about-title {

        font-size: 30px;

    }

    .about-image-box {

        padding: 30px;

    }

    .about-image-content h3 {

        font-size: 28px;

    }

    .about-floating-card {

        right: 15px;

        bottom: 15px;

    }

    .about-content p {

        text-align: left;

        font-size: 15px;

    }

    .vision-box {

        padding: 25px;

    }

    .vision-box p {

        font-size: 16px;

    }


    .speaker-section {

        background: var(--light);

        padding: 100px 0;

    }

    .section-title {

        font-size: 45px;

        font-weight: 800;

        color: var(--text);

    }

    .section-subtitle {

        color: var(--paragraph);

        font-size: 18px;

    }








    /* ======================================
   INVITED SPEAKERS SECTION
====================================== */


    @media (max-width: 576px) {
        .speakers-section {
            padding: 60px 15px;
        }

        .speaker-title {
            font-size: 30px;
        }

        .speaker-card {
            padding: 25px 20px;
            border-top: 2px solid #e03e4b;
        }


    }
}

.speaker-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    transition: 0.4s;
    border: 1px solid #eee;
}

.speaker-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.speaker-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: 0.5s ease;
}

.speaker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(185, 29, 39, 0.95), rgba(0, 0, 0, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.speaker-card:hover .speaker-overlay {
    opacity: 1;
    visibility: visible;
}

.speaker-card:hover .speaker-img img {
    transform: scale(1.1);
}

.speaker-overlay h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.speaker-overlay .designation {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

/* ======================================
   INVITED SPEAKERS SECTION
====================================== */

.speakers-section {

    padding: 90px 0;

    background: #ffffff;

}

.speaker-subtitle {
    color: #ff4d5a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.speaker-title {
    margin-top: 10px;
    color: #151a2d;
    font-size: 42px;
    font-weight: 800;
}

.speaker-title span {
    color: #ff4d5a;
}

.speaker-divider {
    width: 70px;
    height: 4px;
    margin: 18px auto;
    border-radius: 10px;
    background: #ff4d5a;
}


.speaker-intro {

    color: #777;

    font-size: 17px;

}


/* ======================================
   SPEAKER CARD
====================================== */






/* =========================================
   ORGANIZING COMMITTEE SECTION
========================================= */

.committee-section {

    padding: 90px 0;

    background: #f8f9fc;

}


/* =========================================
   SECTION HEADING
========================================= */

.committee-subtitle {

    color: #ff4d5a;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.committee-title {

    margin-top: 10px;

    color: #151a2d;

    font-size: 42px;

    font-weight: 800;

}


.committee-title span {

    color: #D5020E;

}


.committee-divider {

    width: 70px;

    height: 4px;

    margin: 18px auto;

    border-radius: 10px;

    background: #D5020E;

}


.committee-intro {
    color: #777;
    font-size: 17px;

}


/* =========================================
   CONFERENCE CHAIR
========================================= */


.chair-card {
    background: #fff;
    border-radius: 24px;
    min-height: 340px;
    /* Height increase */
    padding: 45px 45px !important;
    border-top: 4px solid #D5020E;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
    transition: .35s;
    display: flex;
    align-items: center;
}

.chair-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .15);
}

.chair-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -140px;
    top: -140px;
    border: 2px solid rgba(232, 74, 67, .12);
    border-radius: 50%;
}

.chair-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -70px;
    background: rgba(232, 74, 67, .05);
    border-radius: 50%;
}

.chair-photo {
    width: 100%;
    height: 320px;
    margin: auto;
    position: relative;
}

.chair-photo img {
    width: 100%;
    height: 350px;
    object-fit: fill;
    border-radius: 10%;
    /* border: 2px solid #fff !important;
    box-shadow: 0 0 0 2px #E84A43; */
}

.committee-role {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: #fff3f2;
    color: #D5020E;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.chair-content h3 {
    font-size: 42px;
    font-weight: 700;
    color: #1c2746;
    margin-bottom: 20px;
}

.chair-content p {
    font-size: 21px;
    color: #6b7280;
    margin-bottom: 10px;
}




.committee-role {

    display: inline-block;
    margin-bottom: 10px;
    color: #D5020E;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}




/* =========================================
   GROUP TITLE
========================================= */

.committee-group-title {

    display: flex;

    align-items: center;

    gap: 12px;

    margin: 15px 0 20px;

    color: #151a2d;

    font-size: 22px;

    font-weight: 800;

}


.committee-group-title span {

    display: inline-block;

    width: 35px;

    height: 3px;

    background: #ff4d5a;

}




/* Card Container */
.custom-team-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.img-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: fill!important;
    transition: 0.5s;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(185, 29, 39, 0.95), rgba(0, 0, 0, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.custom-team-card:hover .hover-overlay {
    opacity: 1;
    visibility: visible;
}

.custom-team-card:hover img {
    transform: scale(1.05);
}


.role-badge {
    padding: 15px;
    font-weight: 700;
    color: #ff4d5a;
    background: #fdfdfd;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Typography in Overlay */
.hover-overlay h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.hover-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #fff;
    text-align: justify;
}




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

@media (max-width: 767px) {
    .committee-section {
        padding: 60px 15px;
    }

    .committee-title {
        font-size: 32px;
    }

    .chair-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }


    .chair-photo {
        width: 150px;
        height: 150px;
    }

    .committee-card {
        align-items: flex-start;
        padding: 20px;

    }


    .committee-photo {
        width: 85px;
        height: 85px;

    }

    .committee-content h4 {
        font-size: 17px;
    }

    .committee-content p {
        font-size: 13px;

    }

}

/* ===============================
   DEADLINE SECTION
================================ */

.deadline-section {
    background: #f7f9fc;
    position: relative;
}

/* Heading */

.deadline-subtitle {
    display: inline-block;
    color: #FF4D5A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.deadline-title {
    font-size: 38px;
    font-weight: 700;
    color: #172033;
    margin-bottom: 12px;
}

.deadline-title span {
    color: #FF4D5A;
}

.deadline-description {
    color: #6c757d;
    font-size: 15px;
}

.deadline-wrapper {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.deadline-wrapper::before {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 145px;
    width: 2px;
    background: #dce4f0;
}

/* Item */

.deadline-item {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-bottom: 28px;
    position: relative;
}

/* Date Box */

.deadline-date {
    width: 145px;
    min-width: 145px;
    height: 145px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(20, 40, 80, 0.10);
    border: 1px solid #e8edf5;
}

/* Date */

.date-number {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #FF4D5A;
}

.date-month {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #172033;
    margin-top: 7px;
}

.date-year {
    font-size: 12px;
    color: #7b8494;
    margin-top: 3px;
    letter-spacing: 1px;
}

/* Content */

.deadline-content {
    flex: 1;
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px solid #edf0f5;
    box-shadow: 0 8px 25px rgba(20, 40, 80, 0.06);
    transition: all 0.3s ease;
}

.deadline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(20, 40, 80, 0.12);
}

.deadline-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #FF4D5A;
}

.deadline-content h4 {
    margin: 8px 0 8px;
    color: #172033;
    font-size: 21px;
    font-weight: 700;
}

.deadline-content p {
    margin: 0;
    color: #6c757d;
    font-size: 15px;
}

/* Mobile Responsive */

@media (max-width: 767px) {

    .deadline-title {
        font-size: 28px;
    }

    .deadline-wrapper::before {
        display: none;
    }

    .deadline-item {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-bottom: 30px;
    }

    .deadline-date {
        width: 100%;
        min-width: 100%;
        height: 105px;
        flex-direction: row;
        gap: 12px;
    }

    .date-number {
        font-size: 36px;
    }

    .date-month {
        margin-top: 0;
    }

    .date-year {
        margin-top: 0;
    }

    .deadline-content {
        padding: 22px;
    }

    .deadline-content h4 {
        font-size: 18px;
    }
}


/* Footer Container */
.fmes-footer {
    background-color: #0b0e14;
    color: #e0e0e0;
}

#develop {
    color: #B6B7B9;
    text-decoration: none;
}

/* Canvas Background */
#footer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.footer-links a {
    color: #b0b8c4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff4a5a;
    padding-left: 5px;
}

/* Social Media Icons */
.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff4a5a;
    color: #fff;
    transform: translateY(-3px);
}


/* Visitor Counter */
.visitor-section {
    margin: 35px 0 20px;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.visitor-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.visitor-card {
    min-width: 220px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
    transition: .35s;
}

.visitor-card:hover {
    transform: translateY(-4px);
    border-color: #ff4a5a;
    background: rgba(255, 74, 90, .12);
}

.visitor-card i {
    font-size: 28px;
    color: #ff4a5a;
    margin-bottom: 8px;
}

.visitor-title {
    color: #bfc7d5;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visitor-count {
    display: block;
    margin-top: 6px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

@media(max-width:768px) {

    .visitor-card {
        width: 100%;
        min-width: 100%;
    }

}




@media(max-width:600px) {
    .chair-photo {
        height: 180px;
    }

    chair-photo img {
        object-fit: cover !important;
        width: 100% !important;
    }

    .chair-photo {
        height: auto !important;
        width: 100% !important;
    }

    .committee-role {
        margin-top: 7px !important;
    }

    #second-m {
        display: none;
    }

    .logo-section {
        border-bottom: 1px solid #0b0e14;
    }

    .speaker-img img {
        object-fit: fill;
        height: 340px !important;
    }

    .speaker-img {
        height: auto !important;
        width: 100% !important;
    }

    .speaker-card {
        padding: 10px 10px !important;
        width: 100% !important;
        height: auto !important;
        border-top: 2px solid #e03e4b;
    }

    .about-content p {
        text-align: justify;
    }

    .speaker-icon {
        display: block;
        margin: auto;
    }

    .speaker-card {
        text-align: center;
    }

    .speaker-card p {
        text-align: center;
    }

    .speaker-card i {
        margin-top: 17px;
    }

    .focus-card {
        text-align: center;
    }

    .focus-icon {
        display: block;
        margin: auto;
    }

    .focus-icon .fa-bolt {
        margin-top: 17px;
    }

    .focus-icon .fa-atom {
        margin-top: 17px;
    }

    .focus-icon .fa-brain {
        margin-top: 17px;
    }

    .top-contact-item {
        padding-left: 3px !important;
        gap: 4px !important;
    }

    #number-second {
        display: none;
    }

    .hero-title {
        font-size: 30px !important;
    }

    /* .info-icon {
         max-width: 1250px!important;
    } */
    #venue {
        padding-left: 27px !important;
        padding-right: 27px !important;
    }
}


.fmes-inner-header {
    background-color: #0f172a;
    padding-top: 140px;
    padding-bottom: 20px;
    border-bottom: 4px solid #e53935;
}

.fmes-inner-header h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

.fmes-header-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Mobile Responsive adjustment */
@media (max-width: 768px) {
    .fmes-inner-header {
        padding-top: 160px;
        padding-bottom: 20px;
    }

    .fmes-inner-header h1 {
        font-size: 25px;
        padding-top: 40px !important;
    }
}








.speaker-section {
    background: #f6f7fb;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
}

.section-subtitle {
    color: #777;
    font-size: 17px;
}



.heading-top {
    display: inline-block;
    color: #E84A43;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.main-heading {
    font-size: 52px;
    font-weight: 800;
    color: #1d2746;
    margin-bottom: 18px;
}

.main-heading span {
    color: #E84A43;
}

.heading-line {
    width: 70px;
    height: 4px;
    background: #E84A43;
    border-radius: 30px;
    margin: 0 auto 25px;
    position: relative;
}

.heading-line::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E84A43;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.heading-desc {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
    max-width: 650px;
    margin: auto;
}

@media(max-width:768px) {

    .main-heading {
        font-size: 36px;
    }

    .heading-desc {
        font-size: 16px;
    }

    .heading-top {
        font-size: 13px;
    }


}

@media(max-width:600px) {
    .fems-profile-card {
        padding: 7px !important;
    }

    .fems-info h5 {
        font-size: 15px !important;
    }
}


.fems-profile-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 25px;
    border-radius: 30px;
    /* border-top: 3px solid #e74c3c; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.fems-img-wrapper {
    width: 160px;
    height: 160px;
    margin-right: 25px;
    border: 2px solid #e74c3c;
    border-radius: 20px;
    padding: 5px;
    flex-shrink: 0;
}

.fems-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 15px;
}

.fems-info {
    text-align: left;
}

.badge-label {
    color: #D5020E;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    display: block;
}

.fems-info h5 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #002d62;
    /* Navy Blue */
    margin-bottom: 5px;
}

.fems-info p {
    font-size: 1.1rem;
    color: #444;
    margin: 0;
}

#org-img-tcg {
    height: 250px !important;
    width: 170px;
    margin-top: -80px;
}

/* .organization-label{
    margin-top: -60px;
    display: block;
} */
.submission-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
    border-top: 5px solid #D5020E;
}

.anoucment {
    height: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.line-notice {
    position: relative;
    height: 3px;
    background: #D5020E;
    width: 100%;
}

.line-notice::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    background: #D5020E;
    border-radius: 0 0 40px 0;
}

.notice-sub {
    position: relative;
    padding: 20px 22px;
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 5px 18px rgba(224, 62, 75, 0.15);
}

.notice-sub::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px dotted #D5020E;
    border-radius: 10px;
    pointer-events: none;
}

.notice-sub a {
    color: #D5020E;
    text-decoration: none;
    /* font-weight: 600; */
    font-size: 20px;
}


.icon-box {
    font-size: 3rem;
    color: #D5020E;
    margin-bottom: 20px;
}

.submission-card h2 {
    color: #000;
    font-weight: 800;
    margin-bottom: 25px;
}

.template-btn {
    background: #D5020E;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    /* Animation call */
    animation: pulse-red 2s infinite;
}

.template-btn:hover {
    background: #D5020E;
    transform: scale(1.05);
    animation: none;
}


@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(213,2,14);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(229, 57, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

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

.clean-list li {
    display: flex;
    align-items: flex-start;
    background: transparent;
    border: none;
    /* border-bottom: 1px solid #e9ecef; */
    padding: 16px 0;
    margin-bottom: 0;
}

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

.list-num {
    background: #f0efeff1;
    color: #D5020E;
    font-weight: 600;
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.list-content strong {
    display: block;
    color: #212529;
    font-size: 16px;
    margin-bottom: 4px;
}

.list-content p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}



/* Contact Section Styling */
.contact-us-section {
    background-color: #f9fbff;
}

.heading-line {
    width: 60px;
    height: 3px;
    background-color: #D5020E;
    margin-top: 10px;
    border-radius: 2px;
}

.contact-info-card {
    transition: transform 0.3s ease;
}

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

.map-container {
    min-height: 350px;
}

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

#local {
    font-size: 30px;
    text-align: center;
}
.iit-logo {
    width: 280px;
    height: 170px;
    object-fit: contain;
}

/* ICT Mumbai Logo */
.ict-logo {
    width: 240px;
    height: 150px;
    object-fit: contain;
}

/* Indian Oil Logo */
.indian-oil-logo {
    width: 230px;
    height: 150px;
    object-fit: contain;
}

/* Logo Name */
.logo-name {
    margin-top: 10px;
     font-size: 16px; 
    text-align: center;
    font-weight: 700;
    color: #100861;
    line-height: 1.4;
    /* max-width: 300px; */
}

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

    .card {
        padding: 20px !important;
    }

    .d-flex.align-items-start {
        gap: 15px !important;
    }

    .ict-logo {
        width: 150px;
        height: 90px;
    }

    .indian-oil-logo {
        width: 140px;
        height: 90px;
    }

    .logo-name {
        font-size: 11px;
        max-width: 150px;
    }
}