
:root {
    --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Raleway",  sans-serif;
  }
  
  
  :root { 
    --background-color: #ffffff; 
    --default-color: #444444; 
    --heading-color: #37517e; 
    --accent-color: #47b2e4; 
    --surface-color: #ffffff;
    --contrast-color: #ffffff; 
  }
  
  
  :root {
    --nav-color: #ffffff; 
    --nav-hover-color: #47b2e4; 
    --nav-mobile-background-color: #ffffff; 
    --nav-dropdown-background-color: #ffffff; 
    --nav-dropdown-color: #444444; 
    --nav-dropdown-hover-color: #47b2e4; 
  }
  
  
  .light-background {
    --background-color: #f5f6f8;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #37517e;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #4668a2;
    --contrast-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }
  
  /* Global <a> tag styles */
  a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
  }
  
  /* Specific <a> tag styles for the 'viewmore' class */
  a.viewmore {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0E1F51;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  /* Add hover effect for the 'viewmore' button */
  a.viewmore:hover {
    background-color: #162C72;
    color: #f1f1f1;
  }
  
  
  .rounded-circle{
    width: 40px;
     height: 40px;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  
  h1 {
    color: #ffffff;
    font-family: var(--heading-font);
  }
  h2{
    font-weight: 600;
  }
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
  }
  
  
  /* PHP Email Form Messages
  ------------------------------*/
  .php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  
  .php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  
  .php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
  }
  
  .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
  }
  
  
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  .header {
    --background-color: #ffffff;
    --heading-color: #0E1F51;
    color: #ffffff;
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    background-color: white;
    max-height: 36px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: #23325D;
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .header .btn-getstarted:hover,
  .header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: #336D60;
  }
  
  @media (max-width: 1200px) {
    .header .logo {
      order: 1;
    }
  
    .header .btn-getstarted {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 15px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  /* Index Page Header
  ------------------------------*/
  .index-page .header {
    --background-color: #ffffff;
    --heading-color: #0E1F51;
    --nav-color: #0E1F51;
  }
  
  /* Index Page Header on Scroll
  ------------------------------*/
  .index-page.scrolled .header {
    --background-color: white;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      padding: 18px 15px;
      font-size: 15px;
      font-family: var(--nav-font);
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-hover-color);
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  
    .navmenu .megamenu {
      position: static;
    }
  
    .navmenu .megamenu ul {
      margin: 0;
      padding: 10px;
      background: var(--nav-dropdown-background-color);
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
      position: absolute;
      top: 130%;
      left: 0;
      right: 0;
      visibility: hidden;
      opacity: 0;
      display: flex;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
    }
  
    .navmenu .megamenu ul li {
      flex: 1;
    }
  
    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover>a {
      padding: 10px 20px;
      font-size: 15px;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .megamenu:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dd-box-shadow {
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  }
  
  /* Mobile Navigation */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
  .footer {
    color: white;
    background-color: #0E1F51;
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
  }
  
  .footer-newsletter{
    background-color: white;
    padding: 50px;
  }
  
  /* .footer .footer-newsletter {
    background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
    padding: 50px 0;
  } */
  
  
  
  .footer .footer-newsletter h4 {
    font-size: 24px;
  }
  
  .footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: 0.3s;
    border-radius: 50px;
  }
  
  .footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
  }
  
  .footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    color: var(--default-color);
  }
  
  .footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
  }
  
  .footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
  }
  
  .footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  .footer .footer-top {
    padding-top: 50px;
  }
  
  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }
  
  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    color: white;
    position: relative;
    padding-bottom: 12px;
  }
  
  .footer .footer-links {
    margin-bottom: 30px;
    background-color: #0E1F51;
    
  }
  
  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    color: var(--accent-color);
  }
  
  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }


.col-lg-4 h4{
  font-size: 28px;
  font-weight: 800;
}
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  .footer .footer-links ul a {
    display: inline-block;
    color: white;
    line-height: 1;
  }
  
  .footer .footer-links ul a:hover {
    color: var(--accent-color);
  }
  
  .footer .footer-about a {
   
    font-size: 28px;
    font-weight: 600;
    height: 40px;
    text-transform: uppercase;
    font-family: var(--heading-font);
  }


  .container-textfield {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
}

.input-container {
    position: relative;
    
    width: 300px;
}

.textfield {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ced4da;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.submit-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    padding: 5px 15px;
    border: none;
    background-color: #23325D;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.submit-btn:hover {
    background-color: #336D60;
}



.d-flex1 {
  margin-top: 70px;
}


.d-flex h4{
  margin-top: 2px;
}

  
  .footer .footer-contact p {
    margin-bottom: 20px;
  }
  
  .footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .footer .copyright p {
    margin-bottom: 0;
  }
  
  .footer .credits {
    margin-top: 6px;
    font-size: 13px;
  }
  
  /*--------------------------------------------------------------
  # Preloader
 /* Preloader container */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease-out; 
  opacity: 1; 
}

/* Preloader image */
#preloader:before {
  content: "";
  width: 180px; 
  height: 180px; 
  background: url('../img/eliveschool\ logo.png') no-repeat center center;
  background-size: contain;
  transform: scale(1); 
  animation: zoom-in-preloader 3s ease-in-out forwards; 
}

/* Keyframes for smooth zoom-in */
@keyframes zoom-in-preloader {
  0% {
    transform: scale(1); 
  }
  100% {
    transform: scale(2); 
  }
}

/* After animation ends, fade out preloader */
#preloader.hidden {
  opacity: 0; 
  visibility: hidden; 
}

  
  /*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: #0E1F51;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
  }
  
  .scroll-top:hover {
    background-color: color-mix(in srgb, #336D60, transparent 20%);
    color: var(--contrast-color);
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Page Titles & Breadcrumbs
  --------------------------------------------------------------*/
  .page-title {
    --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    position: relative;
  }
  
  .page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
  }
  
  .page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
  }
  
  .page-title .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  /*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
  section,
  .about-section {
  
    color: var(--default-color);
    background-color: #E2EEDC;
    padding: 60px 0;
    scroll-margin-top: 88px;
    overflow: clip;
  }

  section,
  .services-section {
  
    color: var(--default-color);
    background-color: #ffffff;
    padding: 40px 0;
    scroll-margin-top: 88px;
    overflow: clip;
  }
  
  @media (max-width: 1199px) {
  
    section,
    .section {
      scroll-margin-top: 66px;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
  .section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
  }
  
  .section-title h2 {

    font-size: 32px;
    font-weight: 700;
    /* margin-bottom: 20px;
    padding-bottom: 20px; */
    text-transform: uppercase;
    position: relative;
  }
  
  .section-title p {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  .hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
  }
  
  .hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
  }
  
  .hero p {
    color: color-mix(in srgb, #ffffff, transparent 30%);
    /* margin: 5px 0 30px 0; */
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .hero .btn-get-started {
    color: var(--contrast-color);
    background: #23325D;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 5px;
    transition: 0.5s;
  }
  
  .hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  .hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
  }
  
  .hero .btn-watch-video i {
    color: var(--contrast-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
  }
  
  .hero .btn-watch-video:hover {
    color: var(--accent-color);
  }
  
  .hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  .hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  @media (max-width: 640px) {
    .hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    .hero p {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  
    .hero .btn-get-started,
    .hero .btn-watch-video {
      font-size: 13px;
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
  }
  
  
  
  
  /*--------------------------------------------------------------
  # Clients Section
  --------------------------------------------------------------*/
  .clients {
    background-color: #E2EEDC;
    
  }
  
  .clients .swiper {
    padding: 50px 0;
    background-color: white;
  }
  
  .clients .swiper-wrapper {
    background-color: white;
    height: auto;
  }
  
  .clients .swiper-slide img {
    transition: 0.3s;
    padding: 0 10px;
  }
  
  .clients .swiper-slide img:hover {
    transform: scale(1.1);
  }
  
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  .about ul {
    list-style: none;
    padding: 0;
  }
  
  .about ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
  }
  
  .about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
  }
  
  /* .about .read-more {
    background-color: #ffffff;
    color: #0E1F51;
    font-family: var(--heading-font);
    height: 100px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 28px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  } */
  
  
  /* Container box styling */
  .box {
    display: flex; /* Flexbox to align image and content horizontally */
    align-items: center; /* Align items vertically center */
    padding: 20px;
    border: 1px solid #ddd; /* Optional: Adds border to the box */
    background-color: #f9f9f9; /* Optional: Background color */
    border-radius: 10px;
  }
  
  /* Image wrapper styling */
  .black-wrapper {
    margin-right: 20px; /* Space between image and content */
  }
  
  .black {
    width: 70px; /* Set image width */
    height: 70px; /* Set image height */
    object-fit: cover; /* Ensures the image fits within the given size */
  }
  
  /* Content wrapper */
  .group {
    display: flex;
    flex-direction: column; /* Ensure the text inside is aligned vertically */
  }
  
  .text-wrapper {
    font-size: 20px; /* Main title styling */
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
  }
  
  .text-wrapper-2 {
    font-size: 16px; /* Subtext styling */
    color: #666;
  }
  
  .group-wrapper, .div, .group-2 {
    display: flex;
    flex-direction: column; /* Keep the text stacked vertically */
  }
  
  @media (max-width: 768px) {
    /* Make the layout responsive for smaller screens */
    .box {
      flex-direction: column; /* Stack image and text vertically on small screens */
      text-align: center; /* Center align the content */
    }
    .black-wrapper {
      margin-bottom: 20px;
      margin-right: 0;
    }
  }
  
  
  /* Image Gallery Container */
  .image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between images */
  }
  
  /* Image Item */
  .image-item {
    width: 60px; /* Image width */
    height: 60px; /* Image height */
  }
  
  .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fit well in the container */
    border-radius: 4px; /* Optional: Adds rounded corners */
  }
  
  
  /* Follow Us Section */
  .follow-us {
    margin: 20px 0; /* Adjust as needed */
  }
  
  .follow-us h3 {
    margin-bottom: 10px; /* Space between heading and icons */
  }
  
  .social-links {
    margin-bottom: 20px;
    margin-top: 70px;
    display: flex;
    justify-content: left; /* Center social links horizontally */
    gap: 30px; /* Space between social icons */
    color: white;
  }
  
  .social-link {
    display: inline-block;
    font-size: 24px; /* Adjust icon size as needed */
    color: #333; /* Icon color */
    transition: color 0.3s;
  }
  
  .social-link:hover {
    color: #007bff; /* Change color on hover */
  }
  
  .image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between images */
  }
  
  .image-item {
    width: 60px; /* Image width */
    height: 60px; /* Image height */
  }
  
  .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fit well in the container */
    border-radius: 4px; /* Optional: Adds rounded corners */
  }
  
  
  
  
  
  
  .about .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
  }
  
  .about .read-more:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .about .read-more:hover i {
    transform: translate(5px, 0);
  }
  

 
  
  /*--------------------------------------------------------------
  # Modules Section
  --------------------------------------------------------------*/
  /* Base styles for all service items */

  .services .modules-section {
    padding: 60px 0;
    background-color: #E2EEDC;
  }

  .services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    margin-left: 25px;
    border-radius: 10px;
    
    /* Responsiveness */
    max-width: 100%;
    max-height: auto;
    
   
    flex-grow: 1;
    flex-shrink: 1;
  
    /* For smooth scaling on hover */
    transform: scale(1);
  }
  
  /* Hover effect with increased shadow and slight scale */
  .services .service-item:hover {
    box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.25); /* Stronger shadow */
    transform: scale(1.05); /* Slight scale-up effect */
    transition: all 0.4s ease-in-out; /* Smooth transition on hover */
  }
  

.services .service-item .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  transition: color ease-in-out 0.3s;
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: color ease-in-out 0.3s;
}

/* Hover effects for each individual card */

/* Admission - Green hover effect */
.services .service-admission:hover {
  transform: translateY(-10px);
  background-color: #336D60;
}

.services .service-admission:hover h4 a, 
.services .service-admission:hover p,
.services .service-admission:hover .icon i {
  color: white;
}

/* Academics - Violet hover effect */
.services .service-academics:hover {
  transform: translateY(-10px);
  background-color: #2435A1;
}

.services .service-academics:hover h4 a, 
.services .service-academics:hover p,
.services .service-academics:hover .icon i {
  color: white;
}

/* CCE - Blue hover effect */
.services .service-cce:hover {
  transform: translateY(-10px);
  background-color: #FFC652;
}

.services .service-cce:hover h4 a, 
.services .service-cce:hover p,
.services .service-cce:hover .icon i {
  color: white;
}

/* Fees - Dark Blue hover effect */
.services .service-fees:hover {
  transform: translateY(-10px);
  background-color: #12F8DC;
}

.services .service-fees:hover h4 a, 
.services .service-fees:hover p,
.services .service-fees:hover .icon i {
  color: white;
}

/* Online Exam - Yellow hover effect */
.services .service-online-exam:hover {
  transform: translateY(-10px);
  background-color: #8EC2F2;
}

.services .service-online-exam:hover h4 a, 
.services .service-online-exam:hover p,
.services .service-online-exam:hover .icon i {
  color: white;
}

/* Transport - Light Blue hover effect */
.services .service-transport:hover {
  transform: translateY(-10px);
  background-color: #E77C40;
}

.services .service-transport:hover h4 a, 
.services .service-transport:hover p,
.services .service-transport:hover .icon i {
  color: white;
}

/* Attendance & Leave - Peach hover effect */
.services .service-attendance:hover {
  transform: translateY(-10px);
  background-color: #2A7CC7;
}

.services .service-attendance:hover h4 a, 
.services .service-attendance:hover p,
.services .service-attendance:hover .icon i {
  color: white;
}

/* Refectory - Peach hover effect */
.services .service-refectory:hover {
  transform: translateY(-10px);
  background-color: #DFD0D0;
}

.services .service-refectory:hover h4 a, 
.services .service-refectory:hover p,
.services .service-refectory:hover .icon i {
  color: white;
}

  
  /*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
  .call-to-action {
    padding: 120px 0;
    position: relative;
    clip-path: inset(0);
  }
  
  .call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 35%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .call-to-action .container {
    position: relative;
    z-index: 3;
  }
  
  .call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
  }
  
  .call-to-action p {
    color: var(--default-color);
  }
  
  .call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
  }
  
  .call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
  }
  

  
  
  
  
  /*--------------------------------------------------------------
  # Pricing Section
  --------------------------------------------------------------*/
  
  
  .pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--background-color);
    padding: 60px 40px;
    height: 100%;
    border-radius: 10px;
    border-left: 20px solid gold;
    border-top: 20px solid gold;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing .pricing-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing h4 {
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 400;
    font-family: var(--heading-font);
    margin-bottom: 0;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 18px;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    color: var(--accent-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .featured {
    border-top: 20px solid silver;
    border-left: 20px solid silver;
}

.pricing .bronze {
    border-top: 20px solid #CD7F32;
    border-left: 20px solid #CD7F32;
}

.pricing .featured .buy-btn {
    background: #0E1F51;
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

  
  /*--------------------------------------------------------------
  # Key Benefits Section
  --------------------------------------------------------------*/
  
  /* General Section Styles */
.services-section {
  padding: 60px 0;
  gap: 10px;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header p {
  color: #555;
  font-size: 18px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 20px;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.benefits-icon img {
  width: 80px;
  margin-bottom: 15px;
}

/* Button Styling */
.service-card a.btn-primary {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  background-color: #007bff;
  border: none;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.service-card a.btn-primary:hover {
  background-color: #0056b3;
}


.container-benefits{


}


/* Responsive Styles */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 30px;
  }
}





  
  /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/

  .testimonials {
    padding: 60px 0;
    background-color: #ffffff;
  }

  .testimonials .section-header {
    margin-bottom: 40px;
  }
  
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  
  .testimonials .testimonial-item {
    text-align: center;
  
    background-color: #E2EEDC;
    border-radius: 10px;
    margin-bottom: 24px;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 15px 0;
  }
  
  .testimonials .testimonial-item .stars {
    margin-bottom: 15px;
  }
  
  .testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .testimonials .testimonial-item p {
    font-style: italic;
    margin-bottom: 5px;
    margin: 0 auto 15px auto;
  }
  
  .testimonials .swiper-wrapper {
    height: auto;
  }
  
  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }
  
  @media (min-width: 992px) {
    .testimonials .testimonial-item p {
      width: 80%;
    }
  }
  
  
  
  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/

  .contact {
    padding: 60px 0;
    background-color: #0E1F51;
  }


  .contact h2 h4{
    color: white;
  }


  .contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
   border-radius: 10px;
    padding: 30px;
    height: 100%;
  }
  
  @media (max-width: 575px) {
    .contact .info-wrap {
      padding: 20px;
    }
  }
  
  .contact .info-item {
    margin-bottom: 40px;
  }
  
  .contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
  }
  
  .contact .info-item h3 {
    color: #0E1F51;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
  }
  
  .contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 575px) {
    .contact .php-email-form {
      padding: 20px;
    }
  }
  
  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    height: 50px;
    box-shadow: none;
    border-radius: 10px;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }
  
  .contact .php-email-form input[type=text]:focus,
  .contact .php-email-form input[type=email]:focus,
  .contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
  }
  
  .contact .php-email-form input[type=text]::placeholder,
  .contact .php-email-form input[type=email]::placeholder,
  .contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  .contact .php-email-form button[type=submit] {
    color: #ffffff;
    background: #0E1F51;
    border: 0;
    right: 100px;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 5px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
  }
  
 
  /*--------------------------------------------------------------
  # Service Details Section
  --------------------------------------------------------------*/
  .service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
  }
  
  .service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
  }
  
  .service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
  }
  
  .service-details .services-list a:hover {
    border-color: var(--accent-color);
  }
  
  .service-details .services-img {
    margin-bottom: 20px;
  }
  
  .service-details h3 {
    font-size: 26px;
    font-weight: 700;
  }
  
  .service-details h4 {
    font-size: 20px;
    font-weight: 700;
  }
  
  .service-details p {
    font-size: 15px;
  }
  
  .service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
  }
  
  .service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
  }
  
  
  
  @keyframes php-email-form-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }


  .sitename2{
    width: 182px;
    height: 57px;
  }

  .about-text {
    text-align: left;
    font-family: Raleway;
  }
  
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .about-text {
      text-align: center;
    }
  
    /* Center the image on smaller screens */
    .about img {
      margin: 0 auto;
      display: block;
    }
  }


  .about-text h1 {
    
    font-size: 48px;
    margin-bottom: 40px;
    background: linear-gradient(to right, #0E1F51, #336D60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }



  .about-text h6 {
    
    font-size: 22px;
    margin-bottom: 60px;
    background: linear-gradient(to right, #0E1F51, #336D60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  .about-text h2{
  margin-bottom: 40px;
   font-size: 40px;
   font-weight: 500;

  }

  .download-brochure {
    display: inline-block; /* Ensures proper spacing */
  }
  
  .download-now {
    border: 3px solid black; /* Black border */
    border-radius: 5px; /* Optional: Adds rounded corners */
    padding: 10px; /* Adds some padding */
    text-decoration: none; /* Removes underline from link */
    color: black; /* Text color */
    display: flex; /* Aligns text and icon */
    align-items: center; /* Centers items vertically */
  }
  
  .download-now p {
    margin: 0; /* Removes default margin */
  }
  
  .download-now i {
    color: black; /* Sets icon color to black */
    margin-left: 5px; /* Adds space between text and icon */
  }
  
  .form-message{
    border-radius: 16px;
  }

  .follow-us{
    justify-content: center;
    gap: 50px;
  }

  .contact-box h2,h3{
    color: white;
  }

  .testimonial-item h3{
    color: #23325D;
  }

  .follow-us-text h3{
    margin-top: 60px;
    color: #0E1F51;
  }


  .bottom-links{
    margin-top: 20px;
  }

  .about-us-heading h2,h4{
    margin-bottom: 40px;
    margin-top: 40px;
  }

  .aboutus1{
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .footer-heading-text h4{
    margin-top: 0px;
    margin-bottom: 10px;

  }

  .subscribe-us-text h4 p{
    
    margin-top: 0px;
    margin-bottom: 10px;
  }

  .footer-links-services ul{
   margin-top: 0px;

  }

  .sitename h4{
    margin-bottom: 5px;
  }

  .client-image{
    height: 200px;
    width: 800px;
  }