body {
  font-family: "Roboto", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}
.layout_padding {
  padding: 50px 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;
}
.heading_container h2 {
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #78853f, #db5806, #78853f);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}
.heading_container h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #78853f, #db5806);
  transition: width 0.5s ease;
}
.heading_container:hover h2::after {
  width: 100%;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
/*header section*/
.hero_area {
  position: relative;
  background-color: #78853f;
  height: auto;
}
.sub_page .hero_area {
  height: auto;
}
.hero_area.sub_pages {
  height: auto;
}
.header_section {
  background-color: white;
}
.header_section .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}
.header_section .nav_container {
  margin: 0 auto;
}
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 15px;
  color: black;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.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;
  background-color: #db5806;
  bottom: 8px;
  margin: 0 auto;
  display: block;
  transform: translateX(-50%);
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
a:hover,
a:focus {
  color: initial;
}
.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}
/* Navbar Flex Layout */
/* Full width header */
.header_section .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
/* Navbar flex */
.navbar {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 0;
}
/* Brand on left */
.navbar-brand {
  padding-left: 5px; /* 5px from left edge */
  display: flex;
  align-items: center;
}
/* Brand image */
.navbar-brand img {
  height: auto;
  max-height: 100px; /* adjust as needed */
}
/* Menu on right */
.navbar-collapse {
  margin-left: auto; /* push to right */
  padding-right: 5px; /* 5px from right edge */
  justify-content: flex-end;
}
/* Navbar links */
.navbar-nav .nav-link {
  padding: 8px 15px;
  text-transform: uppercase;
  color: black;
}
/* Active underline */
.navbar-nav .nav-item.active .nav-link {
  position: relative;
}
.navbar-nav .nav-item.active .nav-link::after {
  content: "";
  position: absolute;
  width: 65%;
  left: 50%;
  height: 2.5px;
  background-color: #db5806;
  bottom: 8px;
  transform: translateX(-50%);
}
/* Toggler icon */
.navbar-toggler {
  border: none;
  outline: none;
  background-color: #101010;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 25px;
}
/* Responsive */
@media (max-width: 991px) {
  .navbar {
    flex-wrap: wrap;
  }
  .navbar-brand {
    padding-left: 15px; /* more padding on mobile */
    margin-bottom: 10px;
  }
  .navbar-collapse {
    margin-left: 0;
    padding-right: 15px;
  }
}
/*end header section*/
/* slider section */
/* ===== Owl Slider Section ===== */
.slider_section {
  width: 100%;
  height: 300px; /* adjust as needed */
  position: relative;
  overflow: hidden;
}
.slider_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(120, 133, 63, 0.3), rgba(139, 148, 64, 0.2));
  z-index: 1;
  pointer-events: none;
}
/* Make the carousel and slides fill the section */
.slider_section .owl-carousel,
.slider_section .owl-item,
.slider_section .item {
  width: 100%;
  height: 100%;
}
/* Make images fill their container properly */
.slider_section .item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 ensures perfect fit, crops edges */
  display: block;
  transition: transform 0.5s ease-in-out;
}
.slider_section .item:hover img {
  transform: scale(1.05);
}
/* Slider responsive */
@media (max-width: 768px) {
  .slider_section {
    height: 300px; /* smaller height for tablets */
  }
}
@media (max-width: 480px) {
  .slider_section {
    height: 200px; /* smaller height for mobile */
  }
}
/* offer section */
.offer_section {
  margin-top: 3rem;
  padding-top: 0;
}
.offer_section .content-box {
  display: flex;
  align-items: center;
  margin: 30px 0;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.offer_section .content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.offer_section .content-box .img-box {
  min-width: 100px;
  min-height: 100px;
  background-color: #eeeded;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.offer_section .content-box:hover .img-box {
  background-color: #8f9440;
  transform: rotate(5deg);
}
.offer_section .content-box .img-box img {
  max-width: 95%;
  height: auto;
  transition: transform 0.3s ease;
}
.offer_section .content-box:hover .img-box img {
  transform: scale(1.1);
}
.offer_section .content-box .detail-box h6 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
}
.offer_section .content-box .detail-box p {
  margin: 0;
  font-size: 14px;
}
/* about section */
.about_section {
  background-color: #f7f7f7;
}
.about_section .row {
  align-items: center;
}
.about_section .img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.about_section .img-box:hover img {
  transform: scale(1.02);
}
.about_section .detail-box {
  padding: 30px 15px;
}
.about_section .detail-box p {
  margin-top: 15px;
  font-size: 14px;
}
.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #ffff00;
  color: #050505;
  border-radius: 0;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.about_section .detail-box a:hover {
  background-color: #e6e600;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
/* client section */
.client_section {
  font-family: "Lato", sans-serif;
}
.client_section h2 {
  text-align: center;
}
.client_section .client_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.client_section .client_container .img-box {
  width: 200px;
  border: 5px solid #7f7f31;
  border-radius: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}
.client_section .client_container .img-box:hover {
  border-color: #8f9440;
  transform: scale(1.05);
}
.client_section .client_container .img-box img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.client_section .client_container .img-box:hover img {
  transform: scale(1.1);
}
.client_section .client_container .detail-box {
  margin-top: 20px;
}
.client_section .client_container .detail-box h4 {
  text-transform: uppercase;
  color: #1d1b28;
  font-weight: normal;
  font-size: 18px;
}
.client_section .client_container .detail-box h6 {
  text-transform: uppercase;
  color: #7f7f31;
  font-size: 14px;
}
.client_section .client_container .detail-box p {
  color: #1d1b28;
  margin: 15px;
  font-size: 14px;
}
.client_section .client_container .detail-box img {
  width: 50px;
}
.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: #7f7f31;
  opacity: 1;
  top: 40%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #050505;
  transform: scale(1.1);
}
.client_section .carousel-control-prev {
  background-image: url(../images/prev.png);
}
.client_section .carousel-control-next {
  background-image: url(../images/next.png);
}
/* contact section */
.contact_section {
  position: relative;
  background-color: #90973b;
  font-family: "Poppins", sans-serif;
}
.contact_section h2 {
  text-align: center;
  margin-bottom: 50px;
}
.contact_section h2 span {
  color: #fefdfc;
}
.contact_section form {
  padding-right: 15px;
}
.contact_section input {
  width: 100%;
  border: 0;
  height: 45px;
  border-radius: 25px;
  margin-bottom: 20px;
  padding-left: 20px;
  background-color: #fefdfc;
  outline: none;
  color: #101010;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.contact_section input:focus {
  box-shadow: 0 0 0 3px rgba(139, 148, 64, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
}
.contact_section input::placeholder {
  color: #131313;
}
.contact_section input.message-box {
  height: 100px;
}
.contact_section button {
  padding: 12px 45px;
  outline: none;
  border: none;
  border-radius: 25px;
  border: 1px solid #fa0909;
  color: #fff;
  font-weight: bold;
  background-color: #fa0909;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(250, 9, 9, 0.3);
}
.contact_section button:hover {
  background-color: #d80404;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(250, 9, 9, 0.4);
}
.contact_section .map_section {
  width: 100%;
  height: 300px;
}
/* info section */
.info_section {
  background-color: #252525;
  color: #fefdfc;
  font-family: "Lato", sans-serif;
}
.info_section h5 {
  margin: 15px 0 20px 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: flex-end;
  margin-bottom: 20px;
}
.info_section .info_logo a span {
  font-size: 20px;
  font-weight: 700;
  color: #fefdfc;
  margin-left: 8px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.info_section .info_form form {
  display: flex;
}
.info_section .info_form form input {
  min-width: 100%;
  height: 40px;
  border-radius: 25px;
  border: none;
  outline: none;
  padding: 0 12px;
  transition: all 0.3s ease;
}
.info_section .info_form form input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 0, 0.3);
}
.info_section .info_form form button {
  padding: 0 35px;
  height: 35px;
  outline: none;
  border: none;
  border-radius: 25px;
  color: #050505;
  text-transform: uppercase;
  background-color: #ffff00;
  transform: translate(-102%);
  margin-top: 2.5px;
  transition: all 0.3s ease;
}
.info_section .info_form form button:hover {
  background-color: #e6e600;
  transform: translate(-102%) scale(1.05);
}
/* footer section */
.footer_section {
  background-color: #7a772d;
  padding: 15px;
}
.footer_section p {
  margin: 0;
  text-align: center;
  color: #fefdfc;
}
.footer_section a {
  color: #fefdfc;
}
/* gallery section */
.gallery_section {
  background-color: #f7f7f7;
}
.gallery_section .gallery-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.gallery_section .gallery-box img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery_section .gallery-box:hover img {
  transform: scale(1.1);
}
.gallery_section .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fefdfc;
  padding: 8px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery_section .gallery-box:hover .gallery-overlay {
  opacity: 1;
}
.gallery_section .gallery-overlay h5 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
}
/* school, ntt, computer, music, enquiry sections */
.school_section,
.ntt_section,
.computer_section,
.music_section,
.enquiry_section {
  background-color: #f7f7f7;
}
.school_section .detail-box,
.ntt_section .detail-box,
.computer_section .detail-box,
.music_section .detail-box,
.enquiry_section .detail-box {
  text-align: center;
}
.school_section .detail-box p,
.ntt_section .detail-box p,
.computer_section .detail-box p,
.music_section .detail-box p,
.enquiry_section .detail-box p {
  margin-top: 15px;
  font-size: 14px;
}
.school_section .detail-box a,
.ntt_section .detail-box a,
.computer_section .detail-box a,
.music_section .detail-box a,
.enquiry_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #ffff00;
  color: #050505;
  border-radius: 0;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.school_section .detail-box a:hover,
.ntt_section .detail-box a:hover,
.computer_section .detail-box a:hover,
.music_section .detail-box a:hover,
.enquiry_section .detail-box a:hover {
  background-color: #e6e600;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section {
  animation: fadeInUp 0.8s ease-out forwards;
}
section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }
section:nth-child(6) { animation-delay: 0.6s; }
/* Responsive adjustments */
@media (max-width: 576px) {
  .navbar-brand {
    width: 50%;
  }
  .navbar-brand img {
    width: 100%;
    max-width: 156.8px;
    margin-right: 4px;
  }
  .navbar-brand span {
    font-size: 16px;
    margin-left: 6px;
  }
  .slider_section {
    height: 300px;
    margin-top: 0px;
  }
  .slider_section .item {
    height: 100%;
    overflow: hidden;
  }
  .slider_section .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slider_section .detail-box {
    width: 90%;
    max-width: 100%;
    padding: 8px;
  }
  .slider_section .detail-box h1 {
    font-size: 1rem;
  }
  .slider_section .detail-box span {
    font-size: 1.8rem;
  }
  .slider_section .detail-box p {
    font-size: 0.7rem;
  }
  .slider_section .detail-box .btn-box .btn-1,
  .slider_section .detail-box .btn-box .btn-2 {
    padding: 7px 15px;
    font-size: 0.7rem;
    margin-right: 5px;
  }
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    font-size: 18px;
    padding: 8px;
  }
  .offer_section {
    margin-top: 10px;
    padding-top: 0;
  }
  .offer_section .content-box {
    flex-direction: column;
    text-align: center;
  }
  .offer_section .content-box .img-box {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .about_section .detail-box {
    padding: 20px 10px;
  }
  .about_section .detail-box h2 {
    font-size: 1.5rem;
  }
  .client_section .client_container .img-box {
    width: 150px;
  }
  .client_section .client_container .detail-box h4 {
    font-size: 16px;
  }
  .client_section .client_container .detail-box p {
    font-size: 12px;
  }
  .contact_section .row {
    flex-direction: column;
  }
  .contact_section form {
    padding-right: 0;
  }
  .contact_section .map_section {
    height: 200px;
    margin-top: 20px;
  }
  .info_section .row {
    flex-direction: column;
  }
  .info_section .col-md-3 {
    margin-bottom: 20px;
  }
  .info_section .info_form form {
    flex-direction: column;
  }
  .info_section .info_form form input {
    width: 100%;
    margin-bottom: 10px;
  }
  .info_section .info_form form button {
    transform: none;
    width: 100%;
  }
  .heading_container h2 {
    font-size: 1.4rem;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .navbar-brand {
    width: 50%;
  }
  .navbar-brand img {
    width: 100%;
    max-width: 256px;
    margin-right: 5px;
  }
  .navbar-brand span {
    font-size: 18px;
    margin-left: 7px;
  }
  .slider_section {
    height: 400px;
    margin-top: 0px;
  }
  .slider_section .item {
    height: 100%;
    overflow: hidden;
  }
  .slider_section .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slider_section .detail-box {
    width: 85%;
    max-width: 400px;
    padding: 10px;
  }
  .slider_section .detail-box h1 {
    font-size: 1.3rem;
  }
  .slider_section .detail-box span {
    font-size: 2.2rem;
  }
  .slider_section .detail-box p {
    font-size: 0.8rem;
  }
  .slider_section .detail-box .btn-box .btn-1,
  .slider_section .detail-box .btn-box .btn-2 {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    font-size: 20px;
    padding: 8px;
  }
  .offer_section {
    margin-top: 10px;
    padding-top: 0;
  }
  .offer_section .content-box {
    flex-direction: row;
  }
  .about_section .detail-box {
    padding: 25px 15px;
  }
  .client_section .client_container .img-box {
    width: 180px;
  }
  .contact_section .map_section {
    height: 250px;
  }
  .heading_container h2 {
    font-size: 1.6rem;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .navbar-brand {
    width: 50%;
  }
  .navbar-brand img {
    width: 100%;
    max-width: 145.2px;
    margin-right: 5px;
  }
  .navbar-brand span {
    font-size: 19px;
    margin-left: 8px;
  }
  .slider_section {
    height: 500px;
    margin-top: 0px;
  }
  .slider_section .item {
    height: 100%;
    overflow: hidden;
  }
  .slider_section .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slider_section .detail-box {
    width: 80%;
    max-width: 500px;
    padding: 15px;
  }
  .slider_section .detail-box h1 {
    font-size: 1.5rem;
  }
  .slider_section .detail-box span {
    font-size: 2.8rem;
  }
  .slider_section .detail-box p {
    font-size: 0.9rem;
  }
  .slider_section .detail-box .btn-box .btn-1,
  .slider_section .detail-box .btn-box .btn-2 {
    padding: 10px 30px;
    font-size: 0.9rem;
  }
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    font-size: 22px;
    padding: 9px;
  }
  .offer_section {
    margin-top: 10px;
    padding-top: 0;
  }
  .heading_container h2 {
    font-size: 1.8rem;
  }
}
.row-about {
    display: flex;
    gap: 14vw;
}
/*# sourceMappingURL=style.css.map */