
/*-------------------------------------------------
General
--------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Open+Sans:wght@300;400;600&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html{
  scroll-behavior: smooth;/*added for smooth transition when clicked on navelements*/
}

body {
  font-weight: 500;
  color: rgb(0, 0, 0);
  background: #f8fafa ;
  font-family: 'Montserrat', sans-serif;
  background-color: #f1f1f5;
 
}
/*-------------------------------------------------
Navbar
--------------------------------------------------------*/
.navbar {
  justify-content: space-between;
}
.logo img {
  max-height: 50px; /* Adjust size as needed */
}
.navbar-nav {
  gap: 15px;
}
.nav-link{
  font-weight: bold; 
  font-family: georgia, serif; 
  font-size: 17px; 
  color: #000; 
  text-transform: uppercase;
}
/* Make navbar background white when expanded in mobile mode */
@media (max-width: 991px) { /* Applies to screens smaller than 992px */
  .navbar-collapse {
      background: #f1f1f5;
      padding: 10px;
      border-radius: 5px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 5;
  }
}
/*---------------------------------------------------
acads section
-------------------------------------------------------------*/
.acad-section {
  background: url('../img/acad-bg.png') no-repeat center center/cover;
  display: flex;
  justify-content: left;
  align-items: left;
  height: 80vh;
  position: relative;
  color: white;
  text-align: left;
}
.acad-section h2{
  color: #00296B; 
  font-family: georgia, serif; 
  font-weight: bold; 
  font-size: 45px;
  margin: 50px;
  margin-top: 150px;
  margin-bottom: 0px;
  margin-left: 100px;

}
.acad-section .content p{
  font-size: 20px; 
  color: #000; 
  text-align: left;
  margin-left: 100px;
  font-family: 'Montserrat', sans-serif;
}
/* Make navbar background white when expanded in mobile mode */
@media (max-width: 991px) { /* Applies to screens smaller than 992px */
  .acad-section {
    background: url('../img/acad-bg-mobile.png') no-repeat center center/cover;
    display: flex;
    justify-content: left;
    align-items: left;
    height: 100vh;
    position: relative;
    color: white;
    text-align: left;
  }
  .acad-section h2{
    color: #00296B; 
    font-family: georgia, serif; 
    font-weight: bold; 
    font-size: 35px;
    margin: 20px;
    margin-top: 75px;
    margin-bottom: 0px;
    text-align: center;
  }
  .acad-section .content p{
    font-size: 15px; 
    color: #000; 
    text-align: center;
    margin: 20px;
    font-family: 'Montserrat', sans-serif;
  }
}
/*---------------------------------------------------
grades section
-------------------------------------------------------------*/
.grades-section {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 50px 0;
  position: relative;
  margin-top: -175px;
}
.grades-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.grades-section .card {
  width: 275px;
  height: 350px; /* Ensures all cards are the same height */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grades-section .card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: inherit;
  bottom: 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  z-index: 0; /* Keeps the color layer behind */
}

.grades-section .card .text-container h3, 
.grades-section .card .text-container p {
  position: relative;
  z-index: 1; /* Ensures text is above background */
  color: #f1f1f5;
}
.grades-section .card .text-container h3{
  font-weight: 25px;
  font-family: georgia, serif; 
  margin: 10px; 
  margin-bottom: 0px; 
  margin-top: 25px;
}
.grades-section .text-container p{
  padding: 10px;
  padding-top: 15px;

}

.grades-section .card img {
  padding: 0px;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 50% 100px; ;
  border-top-right-radius: 80% 125px;
  position: relative;
  z-index: 1; /* Ensures the image is not covered */
}

.grades-section .card:nth-child(1) { background: #0077b6; }
.grades-section .card:nth-child(2) { background: #d62828; }
.grades-section .card:nth-child(3) { background: #f77f00; }
@media (max-width:991px) {
  .grades-section .container {
      flex-direction: column;
      align-items: center;
      gap: 20px; /* Adds spacing between stacked cards */
  }

  .grades-section .card {
      width: 90%; /* Adjust width for better responsiveness */
      max-width: 350px; /* Prevents cards from being too wide */
  }
}

/*---------------------------------------------------
requirements section
-------------------------------------------------------------*/
.reqs-section {
  font-family: 'Montserrat', sans-serif; 
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
}

.reqs-section p {
  font-size: 20px; 
  color: #000;

}
.reqs-section h2 {
  font-family: georgia, serif; 
  font-size: 35px; 
  font-weight: bold; 
  color: #00296B;
  margin-bottom: 10px;
}

.reqs-section-container {
  display: flex;
  justify-content: center;
  gap: 50px; /* Space between left & right content boxes */
  padding: 20px;
  background: #f8f9fa; /* Light background for the content box */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.reqs-section-content-box-left,
.reqs-section-content-box-right {
  width: 45%; /* Equal width for both */
  text-align: left;
}

.reqs-section-content-box-left p,
.reqs-section-content-box-right p {
  display: flex;
  align-items: center;
  font-size: 17px;
  gap: 10px; /* Space between icon and text */
  margin: 20px;
}

.reqs-section-content-box-left i,
.reqs-section-content-box-right i {
  color: green; /* Green checkmark */
  font-size: 20px;
}
.reqs-section-container p{
  text-align: center;
}
@media (max-width: 991px) {
  .reqs-section h2{
    font-size: 35px;
  }
  .reqs-section p{
    font-size: 15px;
    margin: 15px;
  }
  .reqs-section-container {
      display: flex;
      flex-direction: column;
      align-items: left;
      gap: 0px;
  }
  

  .reqs-section-content-box-left, 
  .reqs-section-content-box-right {
      width: 100%; /* Makes the boxes responsive */
      max-width: 400px; /* Prevents them from being too wide */
      text-align: left; /* Centers the text for a cleaner look */
  }
  .reqs-section-content-box-left p, 
  .reqs-section-content-box-right p{
    text-align: left;
  }
}


/*---------------------------------------------------
enroll section
-------------------------------------------------------------*/
/* Enroll Section (Full Screen) */
.enroll-section {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f1f1f5;
  padding: 50px 0;
  background-color: #00296B;
}

/* Container inside Enroll Section */
.enroll-section .container-fluid {
  padding: 0;
}

/* Admission Process Header */
.enroll-section h2{
  text-align: center;

  font-family: georgia, serif;
  font-weight: bold; 
  font-size: 35px; 
}
.enroll-section p {

  text-align:center;
  font-size: 20px; 
}

/* Styling for Each Column */
.enroll-section .enroll-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  text-align: left;
}


/* List & Icons */
.enroll-section .enroll-box ul {
  padding: 0;
  list-style: none;
}

.enroll-section .enroll-box li {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin: 15px 0;
  margin-left: 75px;
}


/* Scoped to Enroll Section */
.enroll-section .circle-icon {
  width: 30px;
  height: 30px;
  background: white;
  color: #00296B; /* Adjust color as needed */
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  border: 2px solid #0077b6; /* Adjust border color as needed */
}
.enroll-section .note {
  font-size: 14px;
  color: #d9d9d9;
  margin-left: 116px; /* align under text, not under icon */
  margin-top: 5px;
  font-style: italic;
}

@media (max-width: 991px) {
  .enroll-section h2{
    font-size: 35px;
  }
  .enroll-section p{
    font-size: 15px; 
    margin: 15px;
  }
  .enroll-section .enroll-box h2{
    font-size: 20px;
  }
  .enroll-box{
    width: 100%; 
    margin: 0px; 
    padding: 0px;
  }
  .enroll-section {
    padding: 30px 15px; /* Adjusts padding for smaller screens */
  }

  .enroll-section .row {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px; /* Adds spacing between stacked boxes */
  }

  .enroll-section .enroll-box {
      width: 90%; /* Makes the boxes responsive */
      max-width: 400px; /* Prevents them from being too wide */
      padding: 20px; /* Adjust padding for better readability */
      text-align: center; /* Centers the text */
  }

  .enroll-section .enroll-box li {
      margin-left: 0; /* Removes extra left margin */
      text-align: left; /* Keeps text aligned properly */
      font-size: 12px; /* Adjusts text size for readability */
  }
  .enroll-section .enroll-box li br {
    display:none;
  }

  .enroll-section .circle-icon {
      margin-right: 8px; /* Ensures icons are properly spaced */
  }
  .enroll-section .circle-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background: white;
    color: #00296B;
    border-radius: 50%;
    border: 2px solid #0077b6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.enroll-section .note {
  font-size: 12px;
  color: #d9d9d9;
  margin-left: 0px;
  margin-top: 5px;
  font-style: italic;
  text-align: justify;
}


}

/*---------------------------------------------------
footer section
-------------------------------------------------------------*/

footer {
  background: url('../img/about-banner.jpg') no-repeat center center/cover;
  position: relative;
  color: white;
  padding: 50px 10%;
  font-family: 'Arial', sans-serif;
  min-height: 300px;
}

/* Dark Blue Overlay */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 25, 60, 0.95);
  /* Dark Blue with Transparency */
  z-index: 1;
}

/* Footer Content */
.footer-container {
  display: flex;
  justify-content: space-between; /* Adds space between logo and links */
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Left Section (Logo + Contact Links) */
.left-section {
  display: flex;
  align-items: center;
  gap: 20px; /* Space between logo and contact links */
}

/* Logo Section */
.footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Centers the logo */
  min-width: 250px;
}

.footer-logo-txt h1{
  font-family:'Georgia', serif;
  font-size: 25px;
  font-weight: bold;

}
.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

/* Contact Links */
.contact-links {
  font-size: 14px;
  line-height: 1.5;
}

.contact-links a {
  color: #FFD700; /* Gold Color for Links */
  text-decoration: none;
  font-weight: bold;
}

.contact-links a:hover {
  text-decoration: underline;
}

/* Right Section for Footer Links and Other Links */
.right-section {
  margin-left: auto; /* Pushes this section to the right */
  display: flex;
  justify-content: space-between; /* Distributes the links evenly */
  gap: 30px; /* Adjust space between the link sections */
}

/* Footer Links */
.footer-links,
.other-links {
  display: block;
}

.footer-links ul,
.other-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.other-links ul li {
  margin: 8px 0;
}

.footer-links ul li a,
.other-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover,
.other-links ul li a:hover {
  text-decoration: underline;
}

#small-line{
  margin-bottom:10px;
  margin-top: 10px;
  width: 25px;
  height:0.2px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between; /* Aligns left and right */
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.5); /* More visible separator */
  margin-top: 40px;
  color: white; /* Ensures readability */
  position: relative;
  z-index: 2; /* Keeps text above overlay */
}

/* Left copyright text */
.footer-bottom p {
  margin: 0;
}

/* Right-aligned "Website by" */
.footer-bottom p:last-child {
  text-align: right;
}

/* Links */
.footer-bottom a {
  color: #FFD700; /* Gold color for visibility */
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }

  .footer-bottom p {
      margin-bottom: 5px;
  }

  .footer-bottom p:last-child {
      text-align: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }

  .footer-bottom p {
      margin-bottom: 5px;
  }

  .footer-bottom p:last-child {
      text-align: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-links {
      flex-direction: column;
      gap: 20px;
  }
}

  /*---------------------------------------------/ THE END /
  

