﻿html, body {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333; /* Standard text color */
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* Optional: Headings styling for consistency */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #003366; /* Dark navy heading color */
}

/* Optional: For paragraphs and nav links */
p, a, li, span, input, button {
    font-family: inherit;
}

/* Overall header section */
.site-header {
    width: 100%;
    /* font-family: "Lato", sans-serif; */
}

/* Top info strip */
.top-strip {
    background-color: #48cae4; /* Teal like IIM Lucknow */
    color: white;
    font-size: 0.9rem;
    padding: 5px 0;
}

    .top-strip a {
        color: white;
    }

    .top-strip select {
        color: white;
    }

        .top-strip select option {
            color: black; /* dropdown text visible */
        }

/* Main header (logo + nav) */
.main-header {
    background-color: #f9f9f9; /* white/gray background */
    border-bottom: 2px solid #e5e5e5;
}

/* Logo styling */
.logo-img {
    height: 90px;
}

/* Navbar links */
.navbar-nav .nav-link {
    color: #003366 !important; /* dark blue text */
    font-weight: 500;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}

    .navbar-nav .nav-link:hover {
        color: #008b9a !important; /* hover teal color */
    }

/* Responsive adjustments */
@media (max-width: 991px) {
    .top-strip .container {
        flex-direction: column;
        text-align: center;
    }

    .navbar-nav {
        text-align: center;
    }
}

.footer {
    background-color: var(--background-color);
    color: var(--default-color);
    padding: 60px 0 0 0;
    font-size: 14px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

    .footer a {
        color: var(--default-color) !important;
    }

        .footer a:hover {
            color: var(--accent-color);
        }

    .footer .copyright {
        margin-top: 50px;
        position: relative;
        padding-top: 20px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    }

        .footer .copyright p,
        .footer .copyright .credits {
            margin: 2px 0;
        }

    .footer .btn-learn-more {
        background-color: var(--accent-color);
        border-radius: 30px;
        padding: 8px 30px;
        border: 2px solid transparent;
        transition: 0.3s all ease-in-out;
        font-size: 14px;
        color: var(--contrast-color) !important;
    }

        .footer .btn-learn-more:hover {
            border-color: var(--accent-color);
            background-color: transparent;
            color: var(--accent-color) !important;
        }

    .footer .widget .widget-heading {
        font-size: 15px;
        color: var(--heading-color);
        margin-bottom: 20px;
    }

    .footer .widget ul li {
        margin-bottom: 10px;
        line-height: 1.5;
    }

        .footer .widget ul li a {
            color: color-mix(in srgb, var(--heading-color), transparent 50%);
        }

            .footer .widget ul li a:hover {
                text-decoration: none;
                color: var(--heading-color);
            }

    .footer .widget .footer-blog-entry .date {
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 12px;
    }

    .footer .social-icons li {
        display: inline-block;
    }

        .footer .social-icons li a {
            display: inline-block;
            width: 40px;
            height: 40px;
            position: relative;
            border-radius: 50%;
            background: color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .footer .social-icons li a span {
                color: color-mix(in srgb, var(--heading-color), transparent 0%);
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition: 0.3s all ease-in-out;
            }

            .footer .social-icons li a:hover {
                background: var(--accent-color);
            }

                .footer .social-icons li a:hover span {
                    color: var(--contrast-color);
                }

        .footer .social-icons li:first-child a {
            padding-left: 0;
        }

    .footer .footer-subscribe form {
        position: relative;
    }

    .footer .footer-subscribe .form-control {
        font-size: 14px;
        height: 42px;
        border: 2px solid color-mix(in srgb, var(--default-color), transparent 40%);
        background: none;
        color: var(--heading-color);
        padding-right: 40px;
    }

        .footer .footer-subscribe .form-control:focus {
            border-color: color-mix(in srgb, var(--default-color), transparent 10%);
            box-shadow: none;
        }

        .footer .footer-subscribe .form-control::placeholder {
            color: color-mix(in srgb, var(--heading-color), transparent 60%);
        }

    .footer .footer-subscribe .btn-link {
        padding: 0;
        margin: 0;
        font-size: 1.5rem;
        background-color: none;
        border-color: none;
        position: absolute;
        line-height: 0;
        color: color-mix(in srgb, var(--heading-color), transparent 20%);
        top: 20px;
        right: 10px;
        transform: translateY(-50%) rotate(0deg);
    }

        .footer .footer-subscribe .btn-link:hover,
        .footer .footer-subscribe .btn-link:focus,
        .footer .footer-subscribe .btn-link:active {
            text-decoration: none;
        }
.campus-card {
    border-radius: 20px;
    background: #fff;
    padding: 15px;
    transition: 0.3s;
}

    .campus-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.campus-img {
    border-radius: 20px;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.campus-title {
    font-weight: 600;
    font-size: 18px;
    color: #1a2a6c;
}
.choose {
    background: linear-gradient(to right, #f8fbff, #eef6ff);
}

.choose-subtitle {
    color: #b32424;
    font-weight: 600;
    font-size: 18px;
}

.choose-title {
    color: #0e2344;
    font-weight: 700;
    line-height: 1.4;
}

.choose-box {
    background: #dfeeff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    border: 4px solid #eaf3ff;
}

    .choose-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .choose-box p {
        margin: 0;
        font-size: 16px;
        font-weight: 500;
        color: #0e2344;
    }
.intro-heading {
    font-size: 1.6rem;
    font-weight: 600;
}

.module-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f1f1f;
}

.highlight-duration {
    color: #b80d22;
    font-weight: 700;
}

.img-responsive-box {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}
.career-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    min-height: 230px; /* controls card height – compact */
    display: flex;
    flex-direction: column;
}

    .career-card .icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        background: #eef4ff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .career-card:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
        transition: 0.3s;
    }
/* Event Navigation Buttons */
.home-blue-theme {
   background:linear-gradient(to right, #f8fbff, #eef6ff);
}
.event-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .event-card:hover {
        transform: translateY(-5px);
    }

    .event-card img {
        height: 200px;
        object-fit: cover;
    }

.section-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Left side - Events */
.event-card {
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}

    .event-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.event-date {
    background: #004e7b;
    color: #fff;
    font-size: 0.9rem;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 3px;
    margin-bottom: 10px;
}

.event-nav {
    text-align: right;
}

    .event-nav button {
        border: none;
        background: #004e7b;
        color: white;
        padding: 5px 8px;
        border-radius: 3px;
        margin-left: 5px;
    }

/* Right side - Programmes */
.programme-list {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
}

    .programme-list h6 {
        font-weight: 700;
        color: #333;
    }

    .programme-list ul {
        list-style: none;
        padding-left: 0;
    }

        .programme-list ul li {
            padding: 5px 0;
            border-bottom: 1px solid #eee;
        }

.programme-detail {
    background: #dfeeff;
    padding: 20px;
    border-radius: 5px;
}

    .programme-detail img {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 15px;
        height: 200px;
        object-fit: cover;
    }

    .programme-detail h5 {
        font-weight: 700;
        color: #333;
    }

.btn-green {
    background: #004e7b;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 3px;
}

    .btn-green:hover {
        background: #005e4c;
    }

.fees-table {
    width: 100%; /* make table full width */
    border-collapse: collapse; /* remove double borders */
    font-size: 15px; /* slightly smaller text */
}

    .fees-table th,
    .fees-table td {
        padding: 3px 10px; /* reduce spacing inside cells */
        text-align: left; /* align text left */
        vertical-align: middle; /* center text vertically */
    
    }

    .fees-table thead th {
        background-color: #c8cbcf;
        font-weight: bold;
        padding: 10px 10px;
    }
.dept-section {
    background: #f8f9fa;
    padding: 50px 0;
}

.dept-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease-in-out;
   
}

    .dept-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

.dept-title {
    font-size: 20px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 15px;
    border-left: 4px solid #0056b3;
    padding-left: 10px;
}

.dept-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
    color: #333;
}

ul.custom-list li {
    margin-bottom: 6px;
    line-height: 1.5;
    font-size: 15px;
}
.gallery-img {
    cursor: pointer;
    transition: transform .3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

#modalImage {
    max-height: 90vh;
    object-fit: contain;
}

.tour-carousel .carousel-item .container {
    background: #ffffff; /* White background */
    border: 2px solid #007bff; /* Blue border */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Shadow for 3D effect */
    padding: 30px; /* Inner spacing */
    margin: 20px auto; /* Space around the card */
}

/* Keep image styling inside the card */
.tour-carousel .carousel-item img {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.5s;
}

    .tour-carousel .carousel-item img:hover {
        transform: scale(1.05);
    }

/* Slide text */
.tour-carousel h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #007bff;
}

/*.tour-carousel ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}*/

/* Responsive */
@media (max-width: 768px) {
    .tour-carousel .carousel-item .container {
        padding: 20px;
    }

    .tour-carousel .carousel-item .col-md-7,
    .tour-carousel .carousel-item .col-md-5 {
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }

    .tour-carousel .carousel-item img {
        margin-bottom: 20px;
    }
}
/* Card styling */
.tour-carousel .tour-card {
    background: #fff;
    border: 2px solid #007bff;
    border-radius: 15px;
    padding: 25px;
    margin: 20px auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image styling */
.tour-carousel .tour-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

    .tour-carousel .tour-img:hover {
        transform: scale(1.05);
    }

/* Tour button */
.tour-carousel .tour-button {
    display: block;
    margin-top: 10px;
    padding: 8px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

    .tour-carousel .tour-button:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

/* Slide title */
.tour-carousel h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #007bff;
}

/* Slide list items */
/*.tour-carousel ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}*/

/* RESPONSIVE */
@media (max-width: 992px) {
    .tour-carousel .tour-card {
        padding: 20px;
    }

    .tour-carousel h2 {
        font-size: 24px;
    }

    .tour-carousel ul li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .tour-carousel .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .tour-carousel .col-md-7,
    .tour-carousel .col-md-5 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tour-carousel .tour-img {
        margin-bottom: 15px;
    }

    .tour-carousel .tour-button {
        margin-top: 10px;
    }

    .tour-carousel h2 {
        font-size: 22px;
    }

   /* .tour-carousel ul li {
        font-size: 14px;
    }*/
}

@media (max-width: 576px) {
    .tour-carousel .tour-card {
        padding: 15px;
    }

    .tour-carousel h2 {
        font-size: 20px;
    }
/*
    .tour-carousel ul li {
        font-size: 13px;
    }*/

    .tour-carousel .tour-button {
        padding: 6px 15px;
        font-size: 14px;
    }
}
/* Carousel control buttons */
#tourSlider .carousel-control-prev,
#tourSlider .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 123, 255, 0.7); /* Semi-transparent blue */
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

    #tourSlider .carousel-control-prev:hover,
    #tourSlider .carousel-control-next:hover {
        background-color: #007bff;
        transform: translateY(-50%) scale(1.1);
    }

/* Control icons */
#tourSlider .carousel-control-prev-icon,
#tourSlider .carousel-control-next-icon {
    background-size: 50% 50%;
    filter: invert(1); /* Makes the arrows white */
}

/* Carousel indicators */
#tourSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #007bff;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

#tourSlider .carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

/* Optional responsive adjustments */
@media (max-width: 768px) {
    #tourSlider .carousel-control-prev,
    #tourSlider .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #tourSlider .carousel-control-prev-icon,
    #tourSlider .carousel-control-next-icon {
        background-size: 60% 60%;
    }
}
