body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header h2 {
    font-size: .94rem;
    text-align: center;
    font-weight: 600;
    padding: 10px 0 0;
}

header h6 {
    font-size: .9rem;
}

header .logo1 {
    width: 35%;
}

header .logo2 {
    width: 35%;
}

.text-warning {
    color: #f6c405 !important;
}

/* Banner Base */
.banner-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark Overlay */
.banner-slide .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

/* Text Content */
.banner-title {
    color: #FFC107;
    font-size: 3rem;
    font-weight: 800;
    animation: fadeUp 1s ease;
}

.banner-text {
    color: #f8f9fa;
    font-size: 1.2rem;
    margin: 20px 0 30px;
    animation: fadeUp 1.3s ease;
}

/* Buttons */
.btn-warning {
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 30px;
}

/* Indicators */
.carousel-indicators [data-bs-target] {
    background-color: #FFC107;
}

.text-primaryy {
    color: #24145a;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.announcement-bar {
    background: #ffc107;
}
/* Responsive */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
}

/* Creative Yellow & Black Header */
.custom-navbar {
    background: #2B6030;
    padding: 7px 0;
}

.custom-navbar .navbar-brand {
    color: #ffcc00 !important;
    letter-spacing: 0.5px;
}

.logo-box {
    background: #ffcc00;
    color: #000;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
}

.custom-navbar .nav-link {
    color: #fff !important;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    background: #f6c405;
    color: #000 !important;
    cursor: pointer;
}

.highlight-link {
    /* border: 1px dashed #ffcc00; */
}

@media (max-width: 991px) {
    .custom-navbar {
        background: #27165c;
    }

    .custom-navbar .navbar-collapse {
        background: #1b0e45;
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }
}

/************************************************/
.about-section {
    background: linear-gradient(135deg, #fff7d6, #ffffff);
}

.about-img {
    position: relative;
}

.experience-box {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffc107;
    color: #000;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.experience-box h3 {
    font-weight: 800;
    margin-bottom: 0;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-card i {
    font-size: 28px;
    color: #ffc107;
    margin-bottom: 10px;
}

.about-card h6 {
    font-weight: 600;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.text-justify {
    text-align: justify;
}

/********************End****************************/

/*********************START***************************/
.tabs-section {
    background: linear-gradient(135deg, #fff7d6, #ffffff);
}

.custom-tabs {
    gap: 12px;
}

.custom-tabs .nav-link {
    background: #fff;
    color: #000;
    border-radius: 14px;
    padding: 16px 20px;
    /* margin-bottom: 12px; */
    text-align: left;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.custom-tabs .nav-link i {
    font-size: 22px;
    color: #f6c405;
}

.custom-tabs .nav-link.active {
    background: #000;
    color: #fff;
}

.custom-tabs .nav-link.active i {
    color: #f6c405;
}

.custom-tabs .nav-link:hover {
    transform: translateX(6px);
    color: #27165c;
}

.custom-tab-content .tab-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    animation: fadeUp 0.5s ease;
}

.custom-tab-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.custom-tab-content ul {
    padding-left: 18px;
}

.custom-tabs .nav-link.active {
    color: #fff;
    background-color: #2B6030 !important;
}

.conference-list li {
    margin-bottom: 10px;
    position: relative;
    list-style: none;
}

.conference-list li::before {
    content: "\f280";
    position: absolute;
    left: -17px;
    font-family: bootstrap-icons !important;
    color: #ffc107;
    font-size: 14px;
    top: 2px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/********************End****************************/

/********************START****************************/
.accordion-section {
    background: linear-gradient(135deg, #fff7d6, #ffffff);
}

.custom-accordion .accordion-item {
    border: none;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: #fff;
    font-weight: 600;
    color: #000;
    padding: 20px 24px;
}

.custom-accordion .accordion-button i {
    color: #ffc107;
    font-size: 22px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #000;
    color: #fff;
}

.custom-accordion .accordion-button:not(.collapsed) i {
    color: #ffc107;
}

/* Remove default arrow */
.custom-accordion .accordion-button::after {
    display: none;
}

/* Custom plus/minus icon */
.custom-accordion .accordion-button::before {
    content: "+";
    margin-left: auto;
    font-size: 26px;
    font-weight: 700;
    transition: 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::before {
    content: "â€“";
    transform: rotate(180deg);
}

.custom-accordion .accordion-body {
    background: #fff;
    padding: 20px 24px;
    color: #555;
    line-height: 1.7;
}

/********************End****************************/
/********************START****************************/
.coming-soon {
    /* min-height: 100vh; */
    background: linear-gradient(135deg, #10023c, #2c2c2c);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.coming-soon::before,
.coming-soon::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #f6c405;
    border-radius: 50%;
    opacity: 0.15;
}

.coming-soon::before {
    top: -80px;
    left: -80px;
}

.coming-soon::after {
    bottom: -80px;
    right: -80px;
}

.count-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    min-width: 90px;
    backdrop-filter: blur(6px);
}

.count-box h2 {
    font-weight: 800;
    margin-bottom: 0;
    color: #ffc107;
}

.notify-box {
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    max-width: 480px;
}

.notify-box input {
    border: none;
    padding: 14px 20px;
}

.notify-box input:focus {
    outline: none;
    box-shadow: none;
}

.notify-box button {
    border-radius: 50px;
}

/********************End****************************/
/********************START****************************/
.table-section {
    background: linear-gradient(135deg, #fff7d6, #ffffff);
}

.custom-table {
    background: transparent;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.custom-table thead th {
    background: #27165c;
    color: #fff;
    border: none;
    padding: 14px;
}

.custom-table thead th:first-child {
    border-top-left-radius: 12px;
}

.custom-table thead th:last-child {
    border-top-right-radius: 12px;
}

.custom-table tbody tr {
    background: #fff;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px -7px rgba(0, 0, 0, 0.06);
}

.custom-table tbody tr:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.custom-table td {
    padding: 16px;
    border: none;
}

.custom-table tbody tr td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.custom-table tbody tr td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.bg-warning {
    background-color: #f6c405 !important;
}

.text-primary {
    color: rgb(91 63 179) !important;
}

/********************End****************************/
/********************START****************************/

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #000000, #2c2c2c);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #ffc107;
    border-radius: 50%;
    top: -120px;
    right: -120px;
    opacity: 0.15;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-card i {
    font-size: 42px;
    color: #ffc107;
    margin-bottom: 18px;
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15);
    background: #27165c;
    color: #fff;
}

.service-card:hover i {
    color: #ffc107;
}

/* CTA */
.service-cta {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    padding: 60px 0;
    border-radius: 24px;
}

.gradient-bg {
    background-color: #e5e5e5;
    background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #dbdbdb 16px), repeating-linear-gradient(rgb(255 255 255 / 9%), rgb(255 255 255 / 10%));
}

/********************End****************************/
/********************START****************************/
.contact-section {
    background: linear-gradient(135deg, #f9fbff, #ffffff);
    padding: 40px 0;
}

/* Left Content */
.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    align-items: center;
}

.contact-info i {
    font-size: 13px;
    color: #27165c;
    background: #f6c405;
    /* padding: 14px; */
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: block;
    line-height: 35px;
    text-align: center;
}

.contact-info h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

/* Form */
.form-control {
    border-radius: 14px;
    padding: 10px 14px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ffc107;
}

/* Map */
.map-box {
    height: 100%;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .map-box {
        min-height: 350px;
        margin-top: 30px;
    }

    .experience-box {
        bottom: 10px;
        left: 18px;
    }

    .about-section h2 {
        padding-top: 20px;
    }

    .md-row-reverse {
        flex-direction: column-reverse;
    }

    .vision-mission-section img {
        margin-bottom: 25px;
    }

    p {
        text-align: justify;
    }

    .map-box {
        margin-top: 0;
    }

}

button.btn {
    background: #27165c;
}

button.btn:hover {
    background: #ffc107;
    color: #27165c;
    border-color: #ffc107;
}

/********************End****************************/
.service-card iframe {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}


@media (max-width: 767px) {
    header .col-md-2.text-end {
        text-align: center !important;
    }

    header {
        padding: 10px 0px;
    }

    .experience-box {
        bottom: 10px;
        left: 10px;
        padding: 12px 20px 0;
    }

    .about-section h2 {
        padding-top: 20px;
    }

    .md-row-reverse {
        flex-direction: column-reverse;
    }

    .vision-mission-section img {
        margin-bottom: 25px;
    }

    p {
        text-align: justify;
    }

    .map-box {
        margin-top: 0;
    }

    .custom-tabs .nav-link {
        padding: 11px 12px;
    }

    .coming-soon p {
        text-align: center;
    }

    #cfp {
        padding-top: 0 !important;
    }

    #cfp p {
        text-align: center;
    }
}

.text-conference::marker{
color: #000;
}





/* ---------------------------------------footer-------------------------------------------- */

     
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            /* margin-bottom: 30px; */
            padding: 30px 0;
        }
        
        .footer-section h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #f6c405;
        }
        
        .footer-links {
            list-style: none;
            padding: 0px 10px;
        }
        
        .footer-links li {
            margin-bottom: 5px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #3498db;
        }
      
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background-color: #3498db;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }
        
        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            background-color: #2980b9;
            transform: translateY(-5px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
          
            .footer-section {
                margin-bottom: 30px;
            }
            
            .scroll-to-top {
                bottom: 90px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
        
       .copyright{
        text-align: center;
       }
        
        .footer-links i {
            margin-right: 8px;
            width: 20px;
            text-align: center;
        }

         body {
            font-family: "Poppins", sans-serif;
        }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(15, 42, 68, 0.75), rgba(15, 42, 68, 0.75)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1') center/cover no-repeat;
            color: #fff;
            padding: 120px 0;
        }

            .hero h1 {
                font-weight: 700;
            }

        .section-padding {
            padding: 80px 0;
        }

        .card-hover {
            transition: all 0.3s ease;
            border-radius: 16px;
        }

            .card-hover:hover {
                transform: translateY(-6px);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            }

footer {
    background: #2B6030;
    color: #fff;
}

    footer a {
        color: #fff;
        text-decoration: none;
    }

/* Custom Styles for Committees Section */
.committees-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header .max-width-700 {
    max-width: 700px;
}
.committees-nav {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}

    .committees-nav .nav-link {
        border: none;
        border-radius: 8px;
        padding: 12px 15px;
        margin-bottom: 8px;
        color: #495057;
        font-weight: 500;
        transition: all 0.3s ease;
        text-align: left;
    }

        .committees-nav .nav-link:hover {
            background-color: rgba(255, 193, 7, 0.1);
            color: #333;
            transform: translateX(5px);
        }

        .committees-nav .nav-link.active {
            background-color: #ffc107;
            color: #212529;
            box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
        }

.committee-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

    .committee-card:hover {
        transform: translateY(-5px);
    }

    .committee-card .card-header {
        background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
        padding: 10px 30px;
        border-bottom: none;
    }

        .committee-card .card-header h3 {
            color: #212529;
            font-size: 1.2rem;
        }

    .committee-card .card-body {
        padding: 30px;
    }

.member-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

    .member-item:hover {
        background: white;
        border-left-color: #ffc107;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transform: translateY(-3px);
    }

.member-name {
    color: #212529;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-designation {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.member-institution {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .committees-nav {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

        .committees-nav .nav-link {
            text-align: center;
        }

    .committee-card .card-header {
        padding: 15px 20px;
    }

    .committee-card .card-body {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .member-item {
        padding: 15px;
    }
}