/* ==========================================================================
   Global Styles and Root Settings
   ========================================================================== */

body {
  font-family: "Roboto", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

/* Common Layout Padding Utilities */
.layout_padding {
  padding: 75px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 75px;
}

.layout_padding-bottom {
  padding-bottom: 75px;
}

/* Typography Base */
.heading_container h2 {
  text-transform: uppercase;
  font-weight: bold;
}

.hero_next_section-margin {
  margin-top: 100px;
}

/* ==========================================================================
   Header and Navigation Section
   ========================================================================== */

.hero_area {
  position: relative;
  /* Updated to Primary Dark Blue */
  background-color: #00487e;
  height: 85vh;
}

.sub_page .hero_area {
  height: auto;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section {
  background-color: #ffffff;

  /* Remove padding completely */
  padding: 0;

  /* Elegant, soft, and premium drop shadow */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 
              0 4px 6px rgba(0, 0, 0, 0.08);

  position: relative;
  z-index: 99;
}

.header_section .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.header_section .nav_container {
  max-width: 1400px; /* Keeps layout wide */
  margin: 0 auto;
}


.header-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
    padding: 8px 15px;
    background-color: rgb(0 152 223);
    border-radius: 30px; /* Pill-shaped container for grouped look */
    backdrop-filter: blur(5px); /* Subtle blur for modern frosted glass effect – remove if not desired */
}

.header-social-icons a {
    color: #ffffff !important; /* Force white color for high visibility on dark navbar */
    font-size: 20px; /* Slightly larger for always-visible prominence */
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-social-icons a:hover {
    color: rgb(0 152 223) !important; /* School accent color on hover */
    transform: scale(1.15) translateY(-2px); /* Enhanced hover: scale and lift */
}


.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
  padding: 10px 10px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
}

/* Active State indicator for Navigation */
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
  position: relative;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link::after {
  content: "";
  position: absolute;
  width: 65%;
  left: 50%;
  height: 2.5px;
  /* Updated to Primary Sky Blue for focus consistency */
  background-color: #00a1ec;
  bottom: 8px;
  margin: 0 auto;
  display: block;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* Global Link Behavior */
a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Search UI Component */
.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

/* Navbar brand container */
.navbar-brand {
  display: flex;
  align-items: center;          /* Vertically center image & text */
  gap: 10px;                    /* Space between logo and text */
}

/* Logo image */
.navbar-brand img {
  height: 50px;                 /* Desktop size */
  width: auto;
  object-fit: contain;
  display: block;
  box-shadow: none;             /* ❌ No drop shadow */
}

/* Brand text */
.navbar-brand span {
  font-size: 22px;
  font-weight: 700;
  color: #fefdfc;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;          /* Prevent text breaking */
}

/* ===============================
   Mobile Responsive Adjustments
   =============================== */
@media (max-width: 768px) {

  .navbar-brand {
    gap: 8px;
  }

  .navbar-brand img {
    height: 34px;               /* Smaller logo for mobile */
  }

  .navbar-brand span {
    font-size: 18px;            /* Adjust text size */
  }
}

@media (max-width: 480px) {

  .navbar-brand img {
    height: 30px;
  }

  .navbar-brand span {
    font-size: 16px;
  }
}



.custom_nav-container {
  z-index: 99999;
  padding: 5px 0;
}

/* =========================================================
   NAVBAR TOGGLER – PURE CSS (3 BLACK LINES)
   WORKS WITH DEFAULT BOOTSTRAP HTML
   ========================================================= */

/* Reset button */
.custom_nav-container .navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
  padding: 8px;
}

/* Replace Bootstrap icon completely */
.custom_nav-container .navbar-toggler-icon {
  background-image: linear-gradient(
    to bottom,
    #000 0%, #000 12%,
    transparent 12%, transparent 44%,
    #000 44%, #000 56%,
    transparent 56%, transparent 88%,
    #000 88%, #000 100%
  );
  background-size: 100% 100%;
  width: 28px;
  height: 22px;
}


/* ==========================================================================
   Slider Section (Hero Content)
   ========================================================================== */

.slider_section {
  background-image: url(../images/slider-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 90%;
  margin: 0 auto;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  height: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .detail-box {
  color: #676767;
}

.slider_section .detail-box h1 {
  /* Updated to Primary Sky Blue for contrast against hero bg */
  color: #00a1ec;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 500;
}

.slider_section .detail-box span {
  color: #676767;
  font-size: 3.5rem;
  font-weight: 700;
}

.slider_section .detail-box p {
  color: #676767;
  margin-top: 25px;
}

.slider_section .detail-box .btn-box {
  margin-top: 45px;
}

/* Primary Action Button */
.slider_section .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 12px 45px;
  /* Updated to Primary Sky Blue */
  background-color: #00a1ec;
  color: #ffffff;
  border-radius: 0;
  text-transform: uppercase;
  margin-right: 10px;
}

.slider_section .detail-box .btn-box .btn-1:hover {
  /* Updated to Secondary Blue for hover state */
  background-color: #4e8dbd;
}

/* Secondary Action Button */
.slider_section .detail-box .btn-box .btn-2 {
  display: inline-block;
  padding: 12px 42px;
  background-color: #fefdfc;
  color: #050505;
  border-radius: 0;
  text-transform: uppercase;
}

.slider_section .detail-box .btn-box .btn-2:hover {
  background-color: #f8f0e9;
}

/* Carousel Indicators Styling */
.slider_section ol.carousel-indicators {
  margin: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  bottom: -75px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section ol.carousel-indicators li {
  width: 20px;
  height: 20px;
  opacity: 1;
  /* Updated to Primary Sky Blue */
  background-color: #00a1ec;
  border-radius: 100%;
}

.slider_section ol.carousel-indicators li.active {
  background-color: #ffb000;
  border: 3px solid #fefdfc;
}

/* ==========================================================================
   Offer / Features Section
   ========================================================================== */

.offer_section .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 45px 0;
}

.offer_section .content-box .img-box {
  min-width: 125px;
  min-height: 115px;
  background-color: #eeeded;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 25px;
}

.offer_section .content-box .img-box svg {
  width: 55px;
  height: auto;
}

/* Interaction: Box Hover Effect */
.offer_section .content-box:hover .img-box {
  /* Updated to Primary Dark Blue for hover depth */
  background-color: #00487e;
}

.offer_section .content-box:hover .img-box svg,
.offer_section .content-box:hover .img-box svg g,
.offer_section .content-box:hover .img-box svg path {
  fill: #fefdfc !important;
}

.offer_section .content-box .detail-box h6 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
}

.offer_section .content-box .detail-box p {
  margin: 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about_section {
  background-color: #f7f7f7;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .row .col-md-6 {
  padding: 0;
}

.about_section .img-box img {
  width: 100%;
}

.about_section .detail-box {
  padding: 45px 0;
}

.about_section .detail-box p {
  margin-top: 20px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 12px 45px;
  /* Updated to Primary Sky Blue */
  background-color: #00a1ec;
  color: #ffffff;
  border-radius: 0;
  text-transform: uppercase;
  margin-top: 25px;
}

.about_section .detail-box a:hover {
  /* Updated to Secondary Blue */
  background-color: #4e8dbd;
}

/* ==========================================================================
   Client / Testimonials Section
   ========================================================================== */

.client_section {
  font-family: "Lato", sans-serif;
  text-align: center; /* Center all text globally */
}

.client_section h2 {
  text-align: center;
}

.client_section .client_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Center text inside container */
}

.client_section .client_container .img-box {
  width: 260px;
  height: 260px;                 /* Square shape */
  
  background: #ffffff;           /* Outer white border */
  padding: 5px;                  /* 5px white border */
  
  border-radius: 14px;           /* Slight rounding (optional) */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

  box-sizing: border-box;
}

.client_section .client_container .img-box img {
  width: 100%;
  height: 100%;
  
  border: 1px solid #dcdcdc;     /* Inner default border */
  border-radius: 10px;
  
  object-fit: cover;             /* Clean square crop */
  display: block;
  margin: 0 auto; /* Ensure image stays centered */
}

.client_section .client_container .detail-box {
  margin-top: 25px;
  text-align: center; /* Center all text in details */
}

.client_section .client_container .detail-box h4,
.client_section .client_container .detail-box h6,
.client_section .client_container .detail-box p {
  margin: 0 auto; /* Auto margins for perfect centering */
}

.client_section .client_container .detail-box h4 {
  text-transform: uppercase;
  color: #1d1b28;
  font-weight: normal;
}

.client_section .client_container .detail-box h6 {
  text-transform: uppercase;
  color: #00a1ec; /* Primary Sky Blue */
}

.client_section .client_container .detail-box p {
  color: #1d1b28;
  margin: 20px auto; /* Center paragraph with vertical spacing */
}

.client_section .client_container .detail-box img {
  width: 60px;
  display: block;
  margin: 15px auto 0; /* Center small images like rating stars or icons */
}

/* Carousel Controls Styling */
.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: #00487e; /* Primary Dark Blue */
  opacity: 1;
  top: 40%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #050505;
}

.client_section .carousel-control-prev {
  background-image: url(../images/prev.png);
}

.client_section .carousel-control-next {
  background-image: url(../images/next.png);
}


/* ==========================================================================
   Contact Section (Forms)
   ========================================================================== */

.contact_section {
  position: relative;
  /* Updated to Primary Dark Blue background */
  background-color: rgb(117 211 255);
  font-family: "Poppins", sans-serif;
}

.contact_section h2 {
  text-align: center;
  margin-bottom: 65px;
}

.contact_section h2 span {
  color: #fefdfc;
}

.contact_section form {
  padding-right: 35px;
}

.contact_section input {
  width: 100%;
  border: 0;
  height: 50px;
  border-radius: 25px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: #fefdfc;
  outline: none;
  color: #101010;
}

.contact_section input::placeholder {
  color: #131313;
}

.contact_section input.message-box {
  height: 120px;
}

/* Form Submission Button */
.contact_section button {
  padding: 15px 55px;
  outline: none;
  border: none;
  border-radius: 30px;
  /* Updated border/bg to Primary Sky Blue for visibility */
  border: 1px solid #00a1ec;
  color: #fff;
  font-weight: bold;
  background-color: #00a1ec;
}

.contact_section .map_section {
  width: 100%;
  height: 450px;
}

/* ==========================================================================
   Information and Footer Sections
   ========================================================================== */

.info_section {
  /* Maintains dark contrast background */
  background-color: #00487e;
  color: #fefdfc;
  font-family: "Lato", sans-serif;
}

.info_section h5 {
  margin: 20px 0 25px 0;
  font-weight: 400;
  text-transform: uppercase;
}

.info_section .form_heading {
  font-weight: normal;
  text-transform: uppercase;
}

.info_section .info_logo a {
  display: flex;
  align-items: center;          /* Center image & text vertically */
  gap: 10px;                    /* Space between logo and text */
  margin-bottom: 25px;
}

/* Logo image */
.info_section .info_logo a img {
  height: 50px;                 /* Adjust as needed */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Logo text */
.info_section .info_logo a span {
  font-size: 24px;
  font-weight: 700;
  color: #fefdfc;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}


/* Subscription Form Layout */
.info_section .info_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_form form input {
  min-width: 100%;
  height: 45px;
  border-radius: 30px;
  border: none;
  outline: none;
  padding: 0 15px;
}

.info_section .info_form form button {
  padding: 0 45px;
  height: 40px;
  outline: none;
  border: none;
  border-radius: 30px;
  color: #ffffff;
  text-transform: uppercase;
  /* Updated to Primary Sky Blue */
  background-color: #00a1ec;
  -webkit-transform: translate(-102%);
          transform: translate(-102%);
  margin-top: 2.5px;
}

.footer_section {
  padding: 18px 20px;
  background: linear-gradient(120deg, #515d66, #5f9fcc, #0082e5); /* Base gradient */
  background-size: 200% 200%; /* For subtle movement */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1); /* Small top drop shadow */
  animation: footerFlash 3s ease-in-out infinite; /* Light flash animation */
}

.footer_section p {
  margin: 0;
  color: #fefdfc;
  font-size: 16px;          
  line-height: 1.5;
}

.footer_section a {
  color: #fefdfc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer_section a:hover {
  text-decoration: underline;
  color: #ffeb3b; /* Optional hover accent */
}

/* Subtle flash animation */
@keyframes footerFlash {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}


/* Mobile view */
@media (max-width: 576px) {
  .footer_section {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer_section p {
    font-size: 13.5px;      /* slightly adjusted for small screens */
  }
}


/*# sourceMappingURL=style.css.map */