@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body {
  font-family: "Outfit", sans-serif;
}
h1, h2, h3, h4, h5, h6, p, span, a {
  font-family: "Outfit", sans-serif;
}
*{
    margin: 0px;
    padding: 0px;

}
img{
    height: auto;
    width: 100%;
}
a{
  text-decoration: none;
}

/*Top-bar Css*/
.top-bar a {
    font-family: 'Outfit';
    font-size: 16px;
    padding: 8px 0px;
}
img.top-banner-image {
    padding: 10px 10px 0 10px;
}
/* navbar Css  */

  .navbar {
      background-color: #3A3A8A; /* Same blue as in your image */
    }

    .navbar-brand {
      color: white !important;
      font-weight: 700;
      font-size: 18px;
    }
    div#navbarNav a {
        font-family: 'Outfit';
        font-size: 15px;
    }

    .navbar-nav .nav-link {
      color: white !important;
      font-weight: 600;
      font-size: 15px;
      margin: 0 5px;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #FFD700 !important; /* Gold hover effect */
    }

    .navbar-toggler {
      border-color: white;
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }
    
    /* Make sure nav items center properly on large screens */
    @media (min-width: 992px) {
      .navbar-nav {
        margin: 0 auto;
      }
    }
    /*Baner section Css */
     /* Banner Section */
    .banner {
      background: url('../image/banner.png') center/cover no-repeat;
      height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      color: white;
    }

    /* Overlay for dim background */
    .banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
    }

    .banner h1 {
        font-weight: 700;
        font-family: 'Outfit';
        font-size: 50px;
    }
    .banner .mt-3 {
        font-size: 27px;
        font-family: 'Outfit';
    }

    .banner p {
      font-size: 17px;
      font-size: 'outfit'
    }

    .enquire-btn, .main-btn {
      background-color: #3A3A8A;
      color: white;
      font-weight: 600;
      border: none;
      padding: 12px 30px;
      border-radius: 6px;
      margin-top: 20px;
      transition: 0.3s;
    }

    .enquire-btn:hover {
      background-color: #2e2e7a;
    }

    /* Form styling */
    .form-container {
      background: rgba(255, 255, 255, 0.9);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }

    .form-container input,
    .form-container textarea {
      border-radius: 5px;
      border: none;
      padding: 10px;
      margin-bottom: 15px;
    }

    .form-container textarea {
      height: 120px;
    }

/* About Section Css */
.about-section {
      padding: 80px 0;
      position: relative;
    }

    .about-image-wrapper {
      position: relative;
    }

    .about-image-wrapper img {
      border-radius: 20px;
      width: 100%;
      object-fit: cover;
    }

    .about-small-img {
      position: absolute;
      bottom: -30px;
      left: 50px;
      width: 60%;
      border-radius: 20px;
      border: 4px solid #fff;
    }

    .dot-pattern {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 160px;
      height: 160px;
      transform: translate(-50%, -50%);
      z-index: -1;
    }

    .dot-pattern span {
      display: inline-block;
      width: 6px;
      height: 6px;
      background-color: #ccc;
      border-radius: 50%;
      margin: 6px;
    }

    .about-content h6 {
      color: #000;
      font-weight: 600;
      font-size: 18px;
      position: relative;
      display: inline-block;
    }

    .about-content h6::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 40%;
      height: 3px;
      background-color: #4b4cc7;
      border-radius: 2px;
    }

    .about-content h2 {
      font-weight: 700;
      color: #000;
      margin-top: 20px;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .about-content p {
      color: #555;
      font-size: 15px;
      line-height: 1.8;
    }

    .btn-readmore {
      background-color: #4b4cc7;
      color: #fff;
      border-radius: 10px;
      padding: 10px 25px;
      font-weight: 500;
      text-transform: uppercase;
      font-size: 15px;
      border: none;
    }

    .btn-readmore:hover {
      background-color: #3435a0;
      color: #fff;
    }
/*profile-section Css Start*/
    .profile-section {
      padding: 80px 0;
    }

    .profile-heading {
      font-weight: 700;
      color: #000;
    }

    .sub-heading {
      color: #000;
      font-weight: 600;
      font-size: 18px;
      position: relative;
      display: inline-block;
      margin-bottom: 15px;
    }

    .sub-heading::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 40%;
      height: 3px;
      background-color: #4b4cc7;
      border-radius: 2px;
    }

    .profile-text {
      font-size: 15px;
      color: #444;
      line-height: 1.8;
    }

    .profile-btn {
      background-color: #4b4cc7;
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 10px;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: 0.3s;
    }
    .d-flex.flex-wrap.profile-btns.mt-4 a {
        padding: 10px 72px;
        border: solid 1px;
        background-color: #3E4095;
        text-transform: uppercase;
        color: #fff;
        font-family: 'Outfit';
        font-size: 16px;
        border-radius: 10px;
    }

    .profile-btn:hover {
      background-color: #3435a0;
      color: #fff;
    }

    .profile-btns .btn {
      margin: 10px;
    }

    .profile-img img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }
    .section-2 .col-md-4.col-sm-6 {
	    display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	} 	
    @media (max-width: 991px) {
      .profile-section {
        text-align: center;
      }

      .sub-heading::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .profile-btns {
        justify-content: center;
      }

      .profile-img {
        margin-top: 30px;
      }
    }
    
/*profile-section Css End*/
/*founder-section Css Start */

    .founder-section {
      background: url('../image/bg.png') no-repeat center center/cover;
      position: relative;
      width: 100%;
      padding: 80px 0;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(25, 25, 112, 0.6);
      z-index: 0;
    }

    .content-box {
      position: relative;
      z-index: 1;
      backdrop-filter: blur(10px);
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.15);
      padding: 40px;
      color: #fff;
    }

    .news-box {
      background: rgba(255, 255, 255, 0.5);
      color: #000;
      backdrop-filter: blur(10px);
    }

    .news-box h4 {
      font-weight: 700;
      margin-bottom: 25px;
    }

    .news-item {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #000;
      padding: 8px 0;
      font-size: 15px;
    }

    .news-item i {
      font-size: 14px;
    }

    .founder-heading h6 {
      color: #fff;
      font-weight: 600;
      font-size: 18px;
      position: relative;
      display: inline-block;
    }

    .founder-heading h6::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 40%;
      height: 3px;
      background-color: #fff;
      border-radius: 2px;
    }

    .founder-heading h2 {
      font-weight: 700;
      color: #fff;
      margin-top: 20px;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .founder-text p {
      color: #e6e6e6;
      font-size: 15px;
      line-height: 1.8;
    }

    .founder-text strong {
      color: #fff;
      font-weight: 600;
    }

    @media (max-width: 991px) {
      .news-box {
        margin-bottom: 40px;
      }
    }
/*founder-section Css End*/

/* course-section Css Start */
.course-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #fff;
    }
    .course-section h2 {
      font-weight: 700;
      margin-bottom: 40px;
    }
    .course-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
    .course-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .course-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    .course-card .card-body {
      text-align: left;
      padding: 25px;
    }
    .course-card h5 {
      font-weight: 700;
      margin-bottom: 15px;
    }
    .btn-readmore {
      background-color: #3b2dd1;
      color: #fff;
      border: none;
      padding: 10px 25px;
      border-radius: 6px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .btn-readmore:hover {
      background-color: #2a1da8;
      color: #fff;
    }
    .row.g-4.section-2 {
        margin-top: 10px;
    }

/* course-section Css End */

/* contact-section Css Start*/
 /*section.contact-section {
        margin: 100px 0px;
    }*/
 .contact-section {
      padding: 80px 0;
      overflow: hidden;
    }

    .contact-title h6 {
      font-weight: 600;
      color: #000;
      font-size: 18px;
      position: relative;
      display: inline-block;
    }

    .contact-title h6::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 50%;
      height: 3px;
      background-color: #2f2fff;
      border-radius: 2px;
    }

    .contact-title h2 {
      font-weight: 700;
      font-size: 42px;
      color: #000;
      margin-top: 20px;
      margin-bottom: 30px;
    }

    .contact-info {
      margin-top: 20px;
    }

    .contact-info p {
      margin-bottom: 18px;
      font-size: 16px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-info i {
      font-size: 22px;
      color: #ff0000;
    }

    /* Right Side Image Area */
    .contact-images {
      position: relative;
      text-align: right;
    }

    .img-top {
      width: 100%;
      border-radius: 15px;
      position: relative;
      z-index: 1;
      top: 0;
      left: 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .img-bottom {
      width: 350px;
      border-radius: 15px;
      position: absolute;
      bottom: -40px;
      right: 50px;
      z-index: 2;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .logo-badge {
      position: absolute;
      top: -50px;
      left: 40px;
      z-index: 3;
      width: 100px;
    }

    @media (max-width: 991px) {
      .contact-section {
        text-align: center;
      }

      .contact-images {
        margin-top: 50px;
        text-align: center;
      }

      .img-bottom {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -40px;
      }

      .logo-badge {
        position: relative;
        top: -30px;
        left: 0;
      }
    }
/* contact-section Css End*/

/*vivekananda-section Css*/
.vivekananda-section {
      padding: 80px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 90vh;
    }

    .vivekananda-img img {
      width: 100%;
      max-width: 380px;
      height: auto;
      object-fit: contain;
    }

    .vivekananda-text {
        font-size: 30px;
        font-weight: 400;
        color: #000;
        line-height: 1.6;
        text-align: left;
        font-family: 'Outfit';
    }

    @media (max-width: 991px) {
      .vivekananda-section {
        text-align: center;
      }

      .vivekananda-text {
        margin-top: 30px;
        text-align: center;
      }

      .vivekananda-img img {
        max-width: 300px;
      }
    }
/*vivekananda-section Css End*/

/*Footer Section Css*/
      footer {
      background-color: #f8f9fa;
      padding: 40px 0 0;
    }
    .footer-logo img {
      width: 120px;
    }
    img.bottom-image {
        padding: 0px 100px;
    }
    .footer-links a {
      display: block;
      color: #000;
      text-decoration: none;
      margin-bottom: 8px;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #007bff;
    }
    .social-icons a {
      color: #000;
      font-size: 20px;
      margin-right: 10px;
      transition: color 0.3s;
    }
    .social-icons a:hover {
      color: #007bff;
    }
    .footer-bottom {
      background: #e9ecef;
      padding: 15px 0;
      text-align: center;
      font-size: 14px;
      margin-top: 30px;
    }
    .copyright-image {
        max-width: 121px;
    }
    /*Footer Section Css End*/
 @media(max-width: 767px){
 	.banner {
 		height: 100%;
    padding: 50px 20px;
}
.banner h1 {
    font-size: 22px;
}
 }
 /* about pages css */
 section.banner.about-banner {
    height: 100%;
    padding: 130px 20px;
}
 .mission-vision {
    background: #3a3a8a;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
}
.mission-vision h2 {
    color: #fff;
}

.mission-vision p {
    color: #fff;
}
/*result-verification*/
.search-box {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
      max-width: 900px;
      margin: 80px auto;
      padding: 0;
      overflow: hidden;
    }

    .search-header {
      background-color: #3b3bbd;
      color: white;
      padding: 12px 20px;
      font-weight: 600;
      display: flex;
      align-items: center;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .search-header i {
      margin-right: 10px;
    }

    .search-body {
      padding: 25px;
      background: rgba(255, 255, 255, 0.9);
    }

    label {
      font-weight: 500;
      font-size: 15px;
    }

    .form-select, .form-control {
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .btn-search {
      background-color: #16a34a;
      color: white;
      font-weight: 500;
    }

    .btn-search:hover {
      background-color: #138a3a;
      color: white;
    }

    .btn-reset {
      background-color: #e5e7eb;
      color: #333;
      font-weight: 500;
    }

    .btn-reset:hover {
      background-color: #d1d5db;
      color: #111;
    }

    @media (max-width: 768px) {
      .search-body {
        text-align: center;
      }
    }