* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Top Header */
.top-header {
  background-color: #0c3d63;
  color: #fff;
  padding: 20px 0;
}

img.logo-image {
  width: 130px;
  margin-top: -10vh;
  border-radius: 10px;
}

.top-divider {
  background-color: #f4b000;
  padding: 10px;
  /* height: 10px; */
}

/* Desktop Hover Dropdown */
/* Desktop Hover Dropdown Only */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
/* .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
} */

.active,
.dot:hover {
  background-color: transparent;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* ---------venture-section----- */
.venture-section {
  background: #f5f5f5;
  padding: 60px 0;
}

.venture-card {
  background: #e9e9e9;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.venture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venture-card i {
  font-size: 60px;
  color: #333;
  /* margin-bottom: 20px; */
}

button.plus-btn i {
  color: #fff;
  font-size: 45px;
}

.venture-card h3 {
  color: #f9b000;
  font-weight: 600;
  letter-spacing: 1px;
}

.venture-card .plus-btn {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #f9b000;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  border: none;
}

/* First Card Special */
.venture-highlight {
  background: #f9b000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  height: 100%;
  text-align: left;
}

.venture-highlight h2 {
  font-weight: 700;
  line-height: 1.3;
}

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

/* ------quick-links---- */
/* Section Titles */
.section-title {
  background: #0d3b66;
  color: #fff;
  padding: 15px;
  font-size: 32px;
  font-weight: 500;
}

/* Latest News Box */
.news-wrapper {
  height: 400px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.news-scroll {
  position: absolute;
  width: 100%;
 /* animation: scrollUp 15s linear infinite; */
}

@keyframes scrollUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.news-item {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.news-date {
  background: #f1f1f1;
  padding: 15px;
  text-align: center;
  min-width: 90px;
}

.news-date h4 {
  margin: 0;
  font-weight: bold;
}

.news-content {
  padding: 15px;
  font-size: 15px;
}

.news-wrapper:hover .news-scroll {
  animation-play-state: paused;
}

/* Quick Links */
.quick-box {
  background: #f9b000;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #0d3b66;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.quick-box:hover {
  background: #ffcc33;
  transform: translateY(-5px);
  cursor: pointer;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
    text-align: center;
  }
}

/* Professional Look */
.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  padding-left: 22px;
  transition: 0.3s;
}

/* ------- */
.school-title {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 2px;
  font-family: "playfair display";
}

.school-info {
  font-size: 14px;
  line-height: 1.6;
}

.fee-btn {
  background-color: #0b5ed7;
  color: #fff;
  border-radius: 5px;
  padding: 6px 15px;
  font-size: 14px;
  text-decoration: none;
}

.fee-btn:hover {
  background-color: #084298;
  color: #fff;
}

/* Navbar */
.custom-navbar {
  background-color: #f4b000;
}

.navbar-nav .nav-link {
  color: #002147;
  font-weight: 600;
  padding: 15px 18px;
}

.navbar-nav .nav-link:hover {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .school-title {
    font-size: 28px;
    text-align: center;
  }

  .school-info {
    text-align: center;
    margin-top: 10px;
  }

  img.logo-image {
    margin-top: 0px;
  }
}

/* cta--- */
.cta-section {
  background: linear-gradient(135deg, #2f4a7c, #1f3b68);
  border-radius: 25px;
  padding: 40px 20px;
}

.cta-heading-box {
  background-color: #0f2747;
  border-radius: 20px;
  display: inline-block;
  padding: 20px 40px;
}

.cta-heading {
  color: #ffd700;
  font-size: 3rem;
  font-weight: 700;
}

.cta-subtext {
  color: #dcdcdc;
  font-size: 1.2rem;
  margin-top: 20px;
}

a.cta-btn {
  background-color: #ffffff;
  color: #1f3b68;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 12px;
  transition: 0.3s ease;
}

a.cta-btn:hover {
  background-color: #ffd700 !important;
  color: #000 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 2rem;
  }
}

/* ---------about------- */
/* .bg-img {
  background-image: url("/assests/images/school-img.jpg");
  height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

.principal-content p {
  text-align: justify;
}

img.img-fluid.principal-img {
  border-radius: 15px;
  box-shadow: 0 0 10px;
  height: 400px;
  border-right: 5px solid;
  border-bottom: 7px solid;
}

.nav-pills .nav-link {
  border-radius: 5px;
  text-align: left;
  font-weight: 500;
  padding: 15px;
  background-color: #0c3e63;
  color: #fff !important;
  cursor: pointer;
}

.nav-pills .nav-link.active {
  background-color: #f5af00 !important;
}

.tab-content {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
}
/* --------contact------ */

.page-title {
  color: #1f5fa9;
  font-size: 35px;
  font-weight: 500;
  font-family: "Times New Roman";
}
.contact-card {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  background: #fafafa;
}

.contact-card h4 {
  color: #0a63b1;
  font-size: 24px;
  font-family: "Times New Roman";
}

.btn-custom {
  background: #0d3f6b !important;
  color: #fff !important;
  padding: 12px !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease-in !important;
  cursor: pointer;
}

.btn-custom:hover {
  background: #f4b000 !important;
  color: #fff !important;
}

input.form-control {
  box-shadow: none !important;
  outline: none;
  padding: 10px 15px;
}

input.form-control :focus {
  box-shadow: none !important;
  border: 1px solid #f15a22;
}

input.form-control:focus {
  border-color: #f15a22;
}

textarea.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #f15a22;
}

label.form-label {
  font-size: 18px;
  font-weight: 500;
}
.social-icon {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4a300;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 25px;
  text-decoration: none;
  transition: all 0.1s ease-in;
}
.social-icon:hover {
  background-color: #00396b;
  color: #f4a300;
}

section.bg-color {
  background: #f5f7f7;
}

@media (max-width: 767px) {
  .contact-title {
    padding-left: 5px !important;
  }
  div#v-pills-tab {
    padding: 0px 15px;
  }
}

/* ----footer---- */

.footer-divider {
  background-color: #f4c400;
  height: 10px;
}

.footer-bottom {
  background-color: #124b7c;
  font-size: 16px;
}

.main-footer {
  background-color: #124b7c;
  color: #fff;
}

.footer-top-strip {
  background: #d9d9d9;
  height: 60px;
  display: none;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.footer-menu li a:hover {
  color: #f4c400;
}

.footer-text {
  font-size: 16px;
  line-height: 1.7;
}

.social-icon {
  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

.social-icon:hover {
  color: #f4c400;
}

footer img.footer-logo {
  width: 130px !important;
  border-radius: 10px;
  margin-top: -15vh;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-menu {
    gap: 15px !important;
  }

  .footer-text {
    font-size: 14px;
  }

  .social-icon {
    font-size: 24px;
  }

  .footer-main {
    padding-top: 15px !important;
  }

  footer img.footer-logo {
    margin-top: 0px !important;
  }
}

/* ------rules----- */
.principal-content h5 {
  color: #1f5fa9;
  font-size: 20px;
}

/* ------acadimice---css----- */
/* Outer Section */
.academic-section {
  padding: 30px 20px;
}

.outer-box {
  background: #0c3d63;
  border-radius: 30px;
  padding: 40px 20px;
}

/* Inner Box */
.inner-box {
  background: #edece6;
  border-radius: 25px;
  padding: 40px 20px;
  max-width: 1191px;
  margin: auto;
}

/* Heading */
.academic-title {
  font-size: 40px;
  font-weight: 700;
  color: #0c3d63;
}

/* Subtitle */
.academic-subtitle {
  font-size: 18px;
  color: #5c6773;
  margin-top: 15px;
}

/* Bottom Line */
.bottom-line {
  width: 220px;
  height: 5px;
  background: #0c3d63;
  border-radius: 10px;
  margin: 15px auto 0;
}

/* Responsive */
@media (max-width: 768px) {
  .academic-title {
    font-size: 30px;
  }

  .academic-subtitle {
    font-size: 16px;
  }

  .outer-box {
    padding: 40px 15px;
  }

  .inner-box {
    padding: 40px 15px;
  }
}

.modern-section {
  padding-top: 30px;
  background: #ffffff;
  padding-bottom: 50px;
}

.gradient-text {
  background: linear-gradient(135deg, #c88700, #f5af00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modern-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.modern-para {
  font-size: 16px;
  color: #6c757d;
  margin: 25px 0;
}

.btn-modern {
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-modern:hover {
  background: #0c3e63;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .modern-heading {
    font-size: 30px;
  }

  .modern-section {
    padding-top: 25px;
    padding-bottom: 40px;
  }
}
