* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
  /*================================== nav menu ================================*/

/* Navbar */
.navbar {
    background: #f3efef;
    padding: 15px 30px;
}

/* Logo */
.navbar-brand img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Nav Menu */
.navbar-nav .nav-link {
    color: #c57d00;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 18px;
    font-size: 13px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #000;
}

/* Active Menu */
.navbar-nav .nav-link.active {
    background: #d58a08;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 6px;
}

.dropdown-item:hover {
    background: #d58a08;
    color: #fff;
}

/* Nested Dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
}

.dropdown-submenu:hover .submenu {
    display: block;
}

/* Toggle Button */
.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
}

.navbar-toggler i {
    font-size: 32px;
    color: #c57d00;
}

/* Tablet & Mobile */
@media(max-width:991px) {

    .navbar {
        padding: 15px 20px;
    }

    .navbar-brand img {
        max-width: 350px;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        margin-left: 0;
        width: 100%;
    }

    .dropdown-menu {
        width: 100%;
        box-shadow: none;
        border: 1px solid #eee;
    }

    /* Mobile Nested Dropdown */
    .dropdown-submenu .submenu {
        position: static;
        display: none;
        margin-left: 15px;
        margin-top: 10px;
    }

    .dropdown-submenu:hover .submenu {
        display: block;
    }
}

/* Mobile */
@media(max-width:576px) {

    .navbar {
        padding: 12px 15px;
    }

    .navbar-brand img {
        max-width: 180px;
    }

    .navbar-toggler {
        border: none;
        box-shadow: none !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Toggle Icon */
    .navbar-toggler i {
        font-size: 32px;
        color: #c57d00;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
    }
}

/*===================================== Info card home =================================*/

  /* Section */
  .info-section {
      padding: 60px 20px;
  }

  /* Card */
  .info-card {
      background: #dcdcdc;
      height: 100%;
      transition: 0.3s;
  }

  .info-card:hover {
      transform: translateY(-5px);
  }

  /* Card Header */
  .info-card .card-top {
      background: linear-gradient(to bottom, #d64545, #b92a2a);
      padding: 18px;
      text-align: center;
  }

  .info-card .card-top h3 {
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      margin: 0;
  }

  /* Card Body */
  .info-card .card-body {
      padding: 22px;
  }

  .info-card .card-body p {
      font-size: 14px;
      line-height: 1.7;
      color: #000;
  }

  .info-card .card-body b {
      font-weight: 700;
  }

  /* Read More */
  .read-more {
      text-align: center;
      padding-bottom: 20px;
  }

  .read-more a {
      color: #0d6efd;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
  }

  .read-more a:hover {
      color: #000;
  }

  /* Responsive */
  @media(max-width:991px) {

      .info-card {
          margin-bottom: 30px;
      }

      .info-card .card-body p {
          font-size: 17px;
      }
  }

  @media(max-width:576px) {

      .info-section {
          padding: 40px 15px;
      }

      .info-card .card-top h3 {
          font-size: 20px;
      }

      .info-card .card-body {
          padding: 18px;
      }

      .info-card .card-body p {
          font-size: 16px;
          line-height: 1.6;
      }

      .read-more a {
          font-size: 18px;
      }
  }




   /* Main Section */
   .about-section {
       padding: 60px 20px;
   }

   /* ================= LEFT SIDE ================= */

   .left-box {
       background: #efd887;
       border: 1px solid #9d6a20;
       border-radius: 8px;
       overflow: hidden;
   }

   /* Header */
   .left-header {
       background: linear-gradient(to bottom, #f47f1a, #f59a2b);
       padding: 18px 30px;
   }

   .left-header h2 {
       color: #fff;
       font-size: 25px;
       font-weight: 300;
       margin: 0;
       font-family: Georgia, serif;
   }

   /* Body */
   .left-body {
       background: #efd887;
   }

   /* Item */
   .left-item {
       display: flex;
       align-items: center;
       gap: 15px;
       padding: 10px 13px;
       border-top: 1px dashed #b79b55;
   }

   .left-item:first-child {
       border-top: none;
   }

   /* Icon */
   .left-item .icon {
       color: #d37a17;
       font-size: 18px;
   }

   /* Link */
   .left-item a {
       text-decoration: none;
       color: #4a3a28;
       font-size: 14px;
       transition: 0.3s;
   }

   .left-item a:hover {
       color: #000;
       padding-left: 5px;
   }

   /* ================= RIGHT SIDE ================= */


   /* Title */
   .main-title {
       text-align: center;
       color: #0b7ed3;
       font-size: 30px;
       font-weight: 300;
       margin-bottom: 15px;
   }

   .title-line {
       width: 100%;
       height: 2px;
       background: #ff4a4a;
       margin-bottom: 35px;
   }

   /* Main Box */
   .content-box {
       border: 1px solid #e6a447;
       padding: 40px 30px 70px;
       text-align: center;
       background: #f2f2f2;
   }

   /* Logo */
   .logo-box img {
       max-width: 500px;
       width: 100%;
       margin-bottom: 40px;
   }

   /* Orange Box */
   .orange-box {
       background: #d98b08;
       max-width: 1000px;
       margin: auto;
       padding: 40px 20px;
   }

   .orange-box h3 {
       color: #fff;
       font-size: 17px;
       font-weight: 600;
       font-style: italic;
       margin-bottom: 28px;
   }

   .orange-box a {
       color: #000;
       font-size: 14px;
       text-decoration: none;
       display: inline-block;
       margin-top: 15px;
   }

   /* ================= RESPONSIVE ================= */

   @media(max-width:991px) {

       .left-header h2 {
           font-size: 38px;
       }

       .main-title {
           font-size: 38px;
       }

       .orange-box h3 {
           font-size: 20px;
       }

       .left-item a {
           font-size: 18px;
       }
   }

   @media(max-width:576px) {

       .about-section {
           padding: 40px 15px;
       }

       .left-header {
           padding: 15px 20px;
       }

       .left-header h2 {
           font-size: 30px;
       }

       .left-item {
           padding: 18px 20px;
       }

       .left-item a {
           font-size: 15px;
       }

       .main-title {
           font-size: 26px;
       }

       .content-box {
           padding: 25px 15px 40px;
       }

       .orange-box {
           padding: 30px 15px;
       }

       .orange-box h3 {
           font-size: 16px;
           line-height: 1.6;
       }

       .orange-box a {
           font-size: 17px;
       }
   }



   /* FOUNDATION SECTION */

   .foundation-wrapper {
       margin-top: 60px;
   }

   /* Slider */
   .foundation-slider img {
       width: 100%;
       height: 320px;
       object-fit: cover;
   }

   /* Slider Buttons */
   .carousel-control-prev-icon,
   .carousel-control-next-icon {
       background-color: rgba(0, 0, 0, 0.6);
       border-radius: 50%;
       padding: 18px;
   }

   /* Right Content */
   .foundation-content {
       padding: 10px 20px;
   }

   /* Heading */
   .foundation-content h2 {
       color: #c2903a;
       font-size: 20px;
       font-weight: 300;
       margin-bottom: 20px;
   }

   /* Line */
   .heading-line2 {
       width: 90px;
       height: 4px;
       background: #c2903a;
       margin-bottom: 35px;
   }

   /* List */
   .foundation-content ul {
       list-style: none;
       padding: 0;
       margin: 0;
   }

   .foundation-content ul li {
       display: flex;
       align-items: center;
       gap: 18px;
       padding: 10px 0;
       border-bottom: 1px solid #d8d8d8;
   }

   /* Icon */
   .foundation-content ul li i {
       color: #0b7ed3;
       font-size: 13px;
   }

   /* Link */
   .foundation-content ul li a {
       text-decoration: none;
       color: #0b7ed3;
       font-size: 13px;
       transition: 0.3s;
   }

   .foundation-content ul li a:hover {
       color: #000;
       padding-left: 5px;
   }

   /* Responsive */
   @media(max-width:991px) {

       .foundation-slider img {
           height: 320px;
       }

       .foundation-content h2 {
           font-size: 20px;
       }

       .foundation-content ul li a {
           font-size: 18px;
       }
   }

   @media(max-width:576px) {

       .foundation-wrapper {
           margin-top: 40px;
       }

       .foundation-slider img {
           height: 220px;
       }

       .foundation-content {
           padding: 0;
       }

       .foundation-content h2 {
           font-size: 20px;
       }

       .foundation-content ul li {
           gap: 12px;
           padding: 18px 0;
       }

       .foundation-content ul li a {
           font-size: 15px;
           line-height: 1.5;
       }
   }


   /* ================= MISSION SECTION ================= */



   .mission-wrapper{
    margin-top: 15px;
   }

   /* Main Box */
   .mission-box {
       background: #e9e9e9;
       border-radius: 6px;
       overflow: hidden;
   }

   /* Header */
   .mission-header {
       background: linear-gradient(to bottom, #d64242, #bf2d2d);
       padding: 18px;
       text-align: center;
       border: 2px solid #d89b3a;
   }

   .mission-header h2 {
       color: #fff;
       font-size: 18px;
       font-weight: 700;
       margin: 0;
   }

   /* Body */
   .mission-body {
       padding: 20px 28px;
   }

   /* Item */
   .mission-item {
       display: flex;
       align-items: flex-start;
       gap: 16px;
       margin-bottom: 24px;
   }

   /* Icon */
   .mission-icon {
       color: #d89b3a;
       font-size: 24px;
       line-height: 1.4;
   }

   /* Text */
   .mission-item p {
       color: #000;
       font-size: 14px;
       line-height: 1.7;
       margin: 0;
   }


   /* Responsive */
   @media(max-width:991px) {

       .mission-header h2 {
           font-size: 18px;
       }

       .mission-item p {
           font-size: 16px;
       }
   }

   @media(max-width:576px) {

       .mission-wrapper {
           margin-top: 40px;
       }

       .mission-header {
           padding: 14px;
       }

       .mission-header h2 {
           font-size: 18px;
       }

       .mission-body {
           padding: 25px 18px;
       }

       .mission-item {
           gap: 12px;
           margin-bottom: 18px;
       }

       .mission-icon {
           font-size: 18px;
       }

       .mission-item p {
           font-size: 15px;
           line-height: 1.6;
       }
   }

   /* ================= AMBEDKAR SECTION ================= */

   .ambedkar-section {
       padding: 20px 10px;
       background: #f2f2f2;
   }

   /* Left Image */
   .ambedkar-image {
       height: 100%;
   }

   .ambedkar-image img {
      margin-left: 50px;
       width: 60%;
       height: auto;
       object-fit: cover;
   }

   /* Right Content */
   .ambedkar-content {
       background: #cf3e3e;
       color: #fff;
       padding: 20px 25px;
       height: 100%;
   }

   /* Heading */
   .ambedkar-content h2 {
       font-size: 25px;
       font-weight: 700;
       text-align: center;
       margin-bottom: 25px;
   }

   /* Sub Heading */
   .ambedkar-content h4 {
       text-align: center;
       font-size: 15px;
       font-weight: 700;
       margin-bottom: 35px;
   }

   /* Paragraph */
   .ambedkar-content p {
       font-size: 14px;
       line-height: 1.8;
       margin-bottom: 20px;
   }

   /* Quote */
   .ambedkar-content .quote {
       font-style: italic;
       margin-top: 25px;
   }

   /* ================= RESPONSIVE ================= */

   @media(max-width:991px) {

       .ambedkar-content {
           padding: 35px 30px;
       }

       .ambedkar-content h2 {
           font-size: 25px;
       }

       .ambedkar-content h4 {
           font-size: 15px;
       }

       .ambedkar-content p {
           font-size: 14px;
       }
   }

   @media(max-width:576px) {

       .ambedkar-section {
           padding: 30px 15px;
       }

       .ambedkar-content {
           padding: 25px 20px;
       }

       .ambedkar-content h2 {
           font-size: 20px;
           line-height: 1.5;
       }

       .ambedkar-content h4 {
           font-size: 14px;
           line-height: 1.6;
       }

       .ambedkar-content p {
           font-size: 14px;
           line-height: 1.7;
       }
   }

   /* ================= TESTIMONIAL SECTION ================= */

   .testimonial-section {
       background: linear-gradient(to right, #b9a7c7, #8f87be);
       padding: 70px 20px;
   }

   /* Card */
   .testimonial-card {
       background: #d89143;
       position: relative;
       overflow: hidden;
       border-radius: 4px;
   }

   /* White Top */
   .testimonial-top {
       background: #fff;
       padding: 25px 25px 45px;
       position: relative;
   }

   /* Triangle */
   .testimonial-top::after {
       content: '';
       position: absolute;
       left: 25px;
       bottom: -15px;
       width: 0;
       height: 0;
       border-left: 20px solid transparent;
       border-right: 20px solid transparent;
       border-top: 20px solid #fff;
   }

   /* Quote Icon */
   .quote-icon {
       color: #777;
       font-size: 10px;
       position: absolute;
   }

   .quote-left {
       top: 10px;
       left: 15px;
   }

   .quote-right {
       bottom: 10px;
       right: 15px;
   }

   /* Text */
   .testimonial-text {
       color: #666;
       font-size: 14px;
       line-height: 1.6;
       margin: 0;
   }

   /* Bottom */
   .testimonial-bottom {
       padding: 20px;
   }

   .testimonial-bottom h4 {
       color: #000;
       font-size: 14px;
       font-weight: 700;
       margin: 0;
   }

   /* Carousel Dots */
   .carousel-indicators {
       bottom: -60px;
   }

   .carousel-indicators button {
       width: 10px !important;
       height: 1px !important;
       border-radius: 60%;
       background: #999 !important;
   }

   .carousel-indicators .active {
       background: #0b7ed3 !important;
       font-size: 20px;
   }

   /* Responsive */
   @media(max-width:991px) {

       .testimonial-text {
           font-size: 14px;
       }

       .testimonial-bottom h4 {
           font-size: 14px;
       }
   }

   @media(max-width:576px) {

       .testimonial-section {
           padding: 50px 15px;
       }

       .testimonial-top {
           padding: 30px 25px 50px;
       }

       .testimonial-text {
           font-size: 14px;
           line-height: 1.7;
       }

       .testimonial-bottom {
           padding: 25px;
       }

       .testimonial-bottom h4 {
           font-size: 14px;
       }

       .quote-icon {
           font-size: 14px;
       }
   }


   .footer-section {
       background: #8b4a00;
       padding-top: 60px;
       color: #fff;
       font-family: Arial, sans-serif;
   }

   .footer-title {
       font-size: 25px;
       font-weight: 200;
       margin-bottom: 10px;
   }

   .social-icons a {
       width: 40px;
       height: 40px;
       background: #fff;
       color: #666;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       border-radius: 50%;
       margin-right: 10px;
       text-decoration: none;
       font-size: 20px;
       transition: 0.3s;
   }

   .social-icons a:hover {
       background: #000;
       color: #fff;
   }

   .footer-links {
       list-style: none;
       padding: 0;
       margin: 0;
   }

   .footer-links li {
       border-bottom: 1px solid rgba(255, 255, 255, 0.2);
       padding: 10px 0;
   }

   .footer-links li a {
       color: #fff;
       text-decoration: none;
       font-size: 13px;
       transition: 0.3s;
   }

   .footer-links li a:hover {
       color: #ddd;
       padding-left: 5px;
   }

   .footer-bottom {
       background: #000;
       padding: 25px 0;
       margin-top: 50px;
   }

   .footer-bottom p {
       margin: 0;
       color: #777;
       font-size: 14px;
   }

   