
        /* Reduce height */
.about-banner {
    height: 130px;                        /* You can reduce further if needed */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Blurred black overlay */
.about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);        /* Black overlay */
    backdrop-filter: blur(1px);          /* Blur effect */
    z-index: 1;
}

.about-banner * {
    position: relative;
    z-index: 2;                           /* Place text above overlay */
}
/* ADMISSION RESTRICTION NOTE */
.admission-note {
    border: 1px solid #c40000;
    background: #fff5f5;
    color: #c40000;
    padding: 18px 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    margin: 25px 0;
}

.admission-note h5 {
    color: #c40000;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size:20px;
}

.admission-note strong {
    font-weight: 700;
}

.visitor-highlight {
    background: #088d03;
    color: #fff !important;
    border-radius: 4px;
    padding: 6px 14px;
    font-weight: 600;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 13, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255,152,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,152,0,0);
    }
}
.exhibitor-section {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    padding: 60px 0;
}

.exhibitor-list {
    max-width: 900px;
    margin: auto;
}

.exhibitor-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    transition: 0.3s ease;
    border: 1px solid #e2e8f0;
}

.exhibitor-item:hover {
    background: #0f172a;
    color: #fff;
    transform: translateX(6px);
}

.left-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.left-icon i {
    font-size: 14px;
    color: #f97316;
}

.exhibitor-item:hover .left-icon i {
    color: #ffffff;
}

.right-icon i {
    font-size: 12px;
    color: #94a3b8;
}

.exhibitor-item:hover .right-icon i {
    color: #ffffff;
}

.dark-exhibitor-section {
    background: #0f172a;
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
}

.dark-exhibitor-title {
    text-align: center;
    color: #ffffff;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 50px;
}

.dark-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dark-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1e293b;
    padding: 18px 20px;
    border-radius: 10px;
    transition: 0.3s ease;
    border: 1px solid #1e293b;
}

.dark-item:hover {
    border: 1px solid #f97316;
    transform: translateY(-6px);
}

.dark-item i {
    font-size: 18px;
    color: #f97316;
    min-width: 22px;
}

.dark-item span {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

@media(max-width: 992px){
    .dark-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .dark-grid {
        grid-template-columns: 1fr;
    }
}
.visitor-section {
    background: #eef2f7; /* Light but not white */
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
}

.visitor-title {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 50px;
}

.visitor-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.visitor-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.visitor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.visitor-item i {
    font-size: 18px;
    color: #2563eb;
    min-width: 22px;
}

.visitor-item span {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
}

@media(max-width: 992px){
    .visitor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.contact-section {
    background: #e9eff6; /* soft light grey-blue */
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-box {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    text-align: center;
}

.contact-title {
    font-size: 26px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-details i {
    color: #2563eb;
    font-size: 16px;
}

.contact-details a {
    text-decoration: none;
    color: #1e293b;
}

.contact-details a:hover {
    color: #2563eb;
}