.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #111d5e;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 9999999;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 70px;
    width: auto;
}

/* Navigation */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #111d5e;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {

    .nav-menu {
        position: absolute;
        top: 90px;
        right: 0;
        background: #ffffff;
        width: 100%;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-menu.active {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}

/* Page content spacing (important for fixed header) */
.content {
    margin-top: 120px;
    padding: 40px 20px;
    text-align: center;
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
    z-index: unset!important;
}.bootstrap-select.bs-container .dropdown-menu {
    z-index: 000111111!important;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #111d5e, #f9c78400);
    padding: 60px 20px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

/* LEFT SIDE */
.hero-left {
    flex: 1;
    color: #fff;
}

.badge {
    display: inline-block;
    background: #111d5e;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-left h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #111d5e;
}

/* RIGHT SIDE FORM */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.form-box {
    margin-top:10%;
    background: #ffffff;
    padding: 10px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-box form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* Responsive */
@media (max-width: 992px) {

    .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-left p {
        margin: 0 auto 30px;
    }

    .hero-right {
        width: 100%;
    }

    .form-box {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 34px;
    }

    .hero-left h3 {
        font-size: 18px;
    }
}
.about-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.container {
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: #111d5e;
    color: #fff;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    text-align: center;
}

.experience-badge h3 {
    font-size: 26px;
    font-weight: 700;
}

.experience-badge p {
    font-size: 14px;
}

/* RIGHT CONTENT */
.about-content {
    flex: 1;
}

.sub-heading {
    color: #111d5e;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

/* Feature List */
.features {
    list-style: none;
    margin-bottom: 25px;
}

.features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.features li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #111d5e;
    font-size: 14px;
}

/* Button */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #111d5e;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #111d5e;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
    }

    .features li {
        text-align: left;
    }
}

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

    .about-content h2 {
        font-size: 24px;
    }

    .experience-badge {
        padding: 15px 18px;
    }
}
.section-padding{
    padding:70px 0 40px;
    text-align:center;
}

.sub-title{
    color:#111d5e;
    font-size:12px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:15px;
    display:block;
}

.main-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.title-underline{
    width:60px;
    height:3px;
    background:#111d5e;
    margin:15px auto 25px;
}

.section-text{
    max-width:750px;
    margin:0 auto;
    font-size:14px;
    color:#555;
}
.section-padding{
    padding:15px 0;
}

.custom-card{
    background:#f3f4f6;
    border-radius:18px;
    padding: 18px 30px;
    text-align:center;
    transition:all .3s ease;
    border-bottom:4px solid transparent;
    margin-bottom:30px;
    min-height: 100px;
}

.custom-card i{
    font-size:40px;
    color:#111d5e;
    margin-bottom:20px;
}

.custom-card h4{
    font-weight:600;
    margin-bottom:15px;
}

.custom-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* Hover effect */
.custom-card:hover{
    border-bottom:4px solid #111d5e;
    transform:translateY(-5px);
}
.strength-section {
            background: #f4f4f4;
            padding: 60px 0;
            text-align: center;
        }

        .strength-section .sub-title {
            color: #111d5e;
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .strength-section h2 {
            font-weight: 700;
            margin-bottom: 15px;
        }

        .strength-section .divider {
            width: 50px;
            height: 3px;
            background: #111d5e;
            margin: 15px auto;
        }

        .strength-section .description {
            margin-bottom: 40px;
            color: #555;
        }

        .feature-box {
            background: #ffffff;
            padding: 20px 20px;
            border-radius: 12px;
            margin-bottom: 30px;
            transition: 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            min-height: 230px;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #f1f1f1;
            border-radius: 50%;
            line-height: 60px;
            font-size: 26px;
            color: #111d5e;
            margin: 0 auto 15px;
        }

        .feature-box h4 {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .feature-box p {
            font-size: 14px;
            color: #666;
        }
.admission-section {
            background: #111d5e;
            padding: 70px 0;
            text-align: center;
            color: #fff;
        }

        .admission-section h2 {
            font-weight: 700;
            margin-bottom: 10px;
        }

        .admission-subtitle {
            font-size: 14px;
            margin-bottom: 50px;
            opacity: 0.9;
        }

        .process-step {
            margin-bottom: 40px;
        }

        .step-circle {
            width: 70px;
            height: 70px;
            background: #ffffff;
            color: #111d5e;
            border-radius: 50%;
            line-height: 70px;
            font-weight: 700;
            font-size: 16px;
            margin: 0 auto 20px;
        }

        .process-step h4 {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 14px;
            line-height: 1.6;
            padding: 0 10px;
        }

        /* Responsive spacing */
        @media (max-width: 767px) {
            .process-step {
                margin-bottom: 50px;
            }
        }
.facility-section {
            background: #f5f6f8;
            padding: 70px 0;
            text-align: center;
        }

        .section-subtitle {
            color: #111d5e;
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .section-title {
            font-weight: 700;
            margin-bottom: 15px;
        }

        .title-line {
            width: 50px;
            height: 3px;
            background: #111d5e;
            margin: 0 auto 50px;
        }

        .facility-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            cursor: pointer;
        }

        .facility-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: 0.4s ease;
        }

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

        .facility-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            color: #fff;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
            text-align: left;
        }

        .facility-overlay h4 {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .facility-overlay p {
            font-size: 13px;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 767px) {
            .facility-card img {
                height: 220px;
            }
        }
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1d1d1d;
}

.description {
  margin-bottom: 30px;
  color: #555;
  font-size: 16px;
}

.description a {
  color: #111d5e;
  text-decoration: none;
  font-weight: 600;
}

.description a:hover {
  text-decoration: underline;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.info-item i {
  font-size: 20px;
  color: #111d5e;
  margin-top: 5px;
}

.info-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #1d1d1d;
}

.info-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Right Side Map */
.map-container {
  flex: 1;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .map-container {
    width: 100%;
    height: 300px;
  }

  .contact-info h2 {
    font-size: 28px;
  }
}

.footer {
  background-color: #111d5e;
  color: #fff;
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px 40px;
  flex-wrap: wrap;
}

/* Left Section */
.footer-left {
  flex: 1;
  min-width: 250px;
}

.logo {
  width: 80px;
  margin-bottom: 15px;
}

.footer-left h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.location {
  font-weight: 600;
  margin-bottom: 10px;
}

.society {
  font-size: 13px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #000;
}

/* Center Section */
.footer-center {
  flex: 1;
  text-align: center;
  min-width: 250px;
}

.footer-center h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-center p {
  margin-bottom: 8px;
  font-size: 14px;
}

.medium {
  font-weight: 600;
}

.curriculum {
  font-size: 12px;
  margin-top: 10px;
}

/* Right Section */
.footer-right {
  flex: 1;
  min-width: 200px;
}

.footer-right h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-right ul {
  list-style: none;
}

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

.footer-right ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-right ul li a:hover {
  color: #000;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  background-color: #111d5e;
  padding: 15px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-right ul {
    padding: 0;
  }
}