/* Top Strip */
.mh-top-strip {
    background: #ad0303;
    color: white;
    font-size: 14px;
}

.mh-btn {
    border: 1px solid #fff;
    padding: 0 8px;
}

.mh-top-links a {
    color: white;
    text-decoration: none;
    margin-right: 6px;
}

/* Logo Section */
.mh-logo-section {
    background: #fcf2e8;
}

.eng-title {
    font-size: 32px;
    font-weight: 700;
    color: #ad0303;
}

.hindi-title {
    font-size: 28px;
    color: #ad0303;
    font-weight: 600;
}

.sub-heading {
    font-size: 16px;
    margin-top: -5px;
}

/* Icons */
.mh-icons img {
    margin-right: 10px;
}

/* Navbar */
.mh-navbar {
    background: #ad0303;
}

.mh-navbar .nav-link {
    color: #fff !important;
    font-size: 15px;
    padding: 12px 18px;
    font-weight: 600;
}

.mh-navbar .nav-link:hover {
    background: #e9691b;
    color: #fff !important;
}

/* Dropdown */
.dropdown-menu {
    background: #fff;
    border-radius: 0;
    padding: 8px 0;
}

.dropdown-item:hover {
    background: #e9691b;
    color: #fff;
}



/* about css */
.about-section {
    background: #ffffff;
    border-radius: 20px;
}

/* Gradient Text Styles */
.text-gradient-pink {
    background: linear-gradient(90deg, #e9691b, #b4000d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(90deg, #0068e6, #2394ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Images Grid Layout */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.image-grid img:nth-child(3) {
    grid-column: span 2;
}

.small-heading {
    color: #b4000d;
    background-color: #e96a1b83;
    padding: 10px 10px;
}

.btn-outline {
    border: 1px solid #b4000d;
    color: #b4000d;
}

.btn-outline:hover {
    background-color: #e9691b;
    border: 1px solid #e9691b;
    color: #ffffff;
}

.about-img-top-left {
    border-top-left-radius: 50px;
}

.about-img-top-right {
    border-top-right-radius: 50px;
}

.about-img-bottom-left {
    border-bottom-left-radius: 50px;
}

.about-img-bottom-right {
    border-bottom-right-radius: 50px;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/* <!-- marqueeeeeee --> */

.marquee-container {
    display: flex;
    align-items: center;
    background-color: #bb0014;
    color: #ffffff;
    overflow: hidden;
    width: 100%;
    height: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.marquee-title {
    /*flex: 0 0 150px;*/
    padding: 15px 15px;
    font-weight: bold;
    background-color: #f48643;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.marquee-content {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-content span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    font-size: 18px;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

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

.leatest-marquee {
    width: 25px;
    height: 50px;
    background: #f48643;
    display: inline-block;
    clip-path: polygon(68% 48%, 1% 0, 0 96%);
}




/* College Report Section */
.report-section {
    background: linear-gradient(rgb(253 242 233), rgb(253 242 233));
    background-size: cover;
    padding: 35px 0;
    color: #b4000d;
    text-align: center;
}

.report-section h1 {
    margin-bottom: 35px;
}

/* Grid Layout (same as your counter grid) */
.report-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 90%;
    margin: auto;
}

.report-card {
    text-align: center;
    background: #ff7e1cde;
    padding-top: 20px;
    padding-bottom: 20px;

}

.icon {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.report-card h2 {
    font-size: 18px;
    font-weight: 600;
}

.report-card p {
    margin-top: 8px;
    font-size: 16px;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
    .report-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* team section csss */
.team-section {
    /* background: linear-gradient(135deg, #6a11cb, #2575fc); */
    min-height: auto;
}

/* Card Style */
.profile-card {
    background: #fff;

    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
    position: relative;
    cursor: pointer;
}

.profile-card:hover {
    transform: translateY(-10px);
}

/* Image */
.profile-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Content Box */
.profile-content {
    padding: 20px;
    text-align: center;
    position: relative;
}

.profile-content h5 {
    font-weight: 600;
}

.profile-content p.short {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* HIDDEN CONTENT */
.profile-content p.more {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* SHOW ANIMATION ON HOVER */
.profile-card:hover p.more {
    height: 60px;
    opacity: 1;
    margin-top: 10px;
}

/* Button */
.btn-learn {
    display: inline-block;
    margin-top: 18px;
    background: #ff7f27;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-learn:hover {
    background: #e96810;
}

/* notice css */

/*tender*/
.info-card {
    background: #fff7d9;
    ;
    border-radius: 6px;
    padding: 20px;
    box-shadow: inset -4px 9px 21px rgba(0, 0, 0, 0.08);
    height: -webkit-fill-available;
}

/* CUSTOM COLORED TAB BUTTONS */
.tab-btn {
    padding: 6px 14px;
    border-radius: 4px;
    color: #fff;

    font-size: 18px;
    font-weight: 500;
    margin-right: 6px;
    border: none;
    cursor: pointer;
}

.gallery-text {
    color: #b4000d;
}

.tab-notification {
    background: #ffffff;
    color: #b4000d;
}

.tab-vacancies {
    background: #ffffff;
    color: #b4000d;
}

.tab-tenders {
    background: #ffffff;
    color: #b4000d;
}

.tab-important {
    background: #b4000d;
}

.btn-danger {
    background: #b4000d;
    font-size: 18px;
}

.btn-danger:hover {
    background: #f48643;
    color: #fff;
    border: 1px solid #f48643;
}

.tab-btn.active {
    outline: 2px solid rgba(250, 247, 223, 0.6);
    background: #b4000d !important;
    color: #ffffff;
    border: 1px solid #b4000d;
}

.btn-effect:hover {
    background: #b4000d !important;
    color: #ffffff !important;
}

.tab-content-box {
    display: none;
}

.tab-content-box.active {
    display: block;
}

.list-group-item {
    border: none !important;
    font-size: 16px;
    background: #ffffff00;
}

.gallery-img {
    width: 100%;
    border-radius: 6px;
}

/* Gallery Carousel */

#owl-demo .item {
    margin: 3px;
    overflow: hidden;
    border-radius: 10px;
}

#owl-demo .item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    /* Smooth zoom */
}

/* Hover Zoom Effect */
#owl-demo .item:hover img {
    transform: scale(1.1);
    /* Zoom image */
}


/* footer section css */
/* Footer Base */
.footer-section {
    background: #000000;
    color: #fff;
    position: relative;
}

/* Logo */
.footer-logo {
    font-size: 35px;
    color: #ff8800;
    font-weight: 700;
}

.footer-info i {
    margin-right: 10px;
    color: #ff8800;
}

/* Titles */
.footer-title {
    color: #ff8800;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff8800;
    display: block;
    margin-top: 4px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff8800;
}

.btn-location {
    background-color: #ff8800;
    color: #ddd;
}

/* Newsletter */
.email-box {
    border-radius: 10px;
    padding: 10px;
}

.subscribe-btn {
    border-radius: 15px;
    font-weight: 600;
}

/* Bottom Bar Line */
.footer-line {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Social Icons */
.footer-social a {
    color: #fff;
    margin-left: 12px;
    background: #ff8800;
    padding: 10px 12px;
    border-radius: 10px;
    display: inline-block;
}

.footer-social a:hover {
    background: #ff8800;
}

/* Go Up icon round */
.go-up {
    background: #ff8800 !important;
    border-radius: 50%;
}

.footer-logo img {
    background-color: #fdf2e9 !important;
    width: 70px;
    border-radius: 50px;
}