*,*::before,*::after{box-sizing:border-box}*{margin:0}@media (prefers-reduced-motion:no-preference){html{interpolate-size:allow-keywords}}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}p{text-wrap:pretty}h1,h2,h3,h4,h5,h6{text-wrap:balance}#root,#__next{isolation:isolate}
body{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: normal;
    color: #163A49;
    overflow-x: hidden;
}
@font-face {
    font-family: 'Marons';
    src: url('../fonts/Marons-Regular.woff') format('woff'),
         url('../fonts/Marons-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
.headings{font-family: 'Marons', sans-serif;font-weight: 400;}
.text-orange{color: #F26D26;}
.text-white{color: #fff;}
.bg-white{background: #fff;}
.bg-light-orange{background: #FFECDF;}
.text-dark{color: #163A49;}
.bg-dark{background: #163A49;}
.text-black{color: #111;}
.text-center{text-align: center;}
.section-top-padding{padding-top: 2rem;}
.section-bottom-padding{padding-bottom: 2rem;}
.mt-1{margin-top: 1rem;}
.mb-1{margin-bottom: 1rem;}
.mt-2{margin-top: 1.5rem;}
.mt-3{margin-top: 2rem;}
.mt-4{margin-top: 3rem;}
.mb-2{margin-bottom: 1.5rem;}
.p-2{padding: 1.5rem;}
.ft18{font-size: 1.125rem;line-height: normal;}
.ft58{font-size: 3.625rem;}
.ft32{font-size: 2rem;line-height: normal;}
.ft30{font-size: 1.875rem;}
.ft36{font-size: 2.25rem;}
.ft20{font-size: 1.25rem;}
.cpt{cursor: pointer;}
.pos-relative{position: relative;}
.w-95{width: 95%;margin: 0 auto;}
.two-columns{display:flex;gap:2rem; align-items: center;}
.two-columns .left-column{width:55%;}
.two-columns .right-column{width:45%;}
/* #about-us .two-columns{align-items: end;} */
/* Navigation Menu */
header {
    background: #fafafa;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 95%;
    margin: 0 auto;
    padding: 0.5rem 2vw;
}
.navbar-logo img {
    height: 70px;
    width: auto;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 3vw;
}
.navbar-links a {
    text-decoration: none;
    color: #163A49;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.2s;
}
.navbar-links a:hover {
    color: #F26D26;
}
.navbar-contact {
    margin-left: 2vw;
}
.slidebtn, .inverse {
    background: #fff;
    color: #163A49;
    border: 2px solid #163A49;
    padding: 0.8em 2.5em;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.65s ease-in-out;
}
.slidebtn:hover {
    color: #fff;
}
.slide-left:hover {
  box-shadow: inset 500px 0 0 0 #163A49;
}
.slide-left.orange:hover {
  box-shadow: inset 500px 0 0 0 #F26D26;
}
.inverse{
    background: #163A49;
    color: #fff;
    border: 2px solid #163A49;
}
.inverse:hover{
    color: #163A49;
}
.slide-right:hover {
    box-shadow: inset -500px 0 0 0 #fff;
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.navbar-toggle span {
    height: 4px;
    width: 100%;
    background: #163A49;
    position: absolute;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.navbar-toggle span:nth-child(1) {
    top: 0px;
}
.navbar-toggle span:nth-child(2) {
    top: 10px;
}
.navbar-toggle span:nth-child(3) {
    top: 20px;
}
.navbar-toggle.open span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-10px, 3px);
    -moz-transform: rotate(-45deg) translate(-10px, 3px);
    -o-transform: rotate(-45deg) translate(-10px, 3px);
    transform: rotate(-45deg) translate(-10px, 3px);
}
.navbar-toggle.open span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.navbar-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-10px, -5px);
    -moz-transform: rotate(45deg) translate(-10px, -5px);
    -o-transform: rotate(45deg) translate(-10px, -5px);
    transform: rotate(45deg) translate(-10px, -5px);
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fafafa;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 100;
    padding-bottom: 1.5em;
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    padding: 1em 2em;
    text-decoration: none;
    color: #183e2c;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}
.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu .mobile-contact {
    margin: 1em 2em 0 2em;
}
.mySwiper .swiper-slide img{width: 100%; height: 100%;}
.nav-btns{position: absolute; top: 50%; transform: translateY(-50%); display: flex; justify-content: space-between; z-index: 1;width: 100%;}
.nav-btns .prev-btn{transform: rotate(180deg);}
.swiper-pagination-bullet-active{background: #F26D26;}
.swiper-pagination{margin-top: 5px;display: none;}
.feature-box{padding: 2.25rem 1.5rem;}
.featured-grid{display: grid;grid-template-columns: repeat(4,1fr);gap: 2rem; padding: 2rem 0;}
.gridtwo{display:grid;grid-template-columns: repeat(2,1fr);gap:1rem;}
.three-col{display: grid; grid-template-columns:25% 50% 25%; gap: 1rem;align-items: center;}
.three-grid{display: grid; gap: 2rem;margin-top: 2.5rem;}
.d-flex{display: flex; gap: 1rem;align-items: center;}
.three-grid .d-flex svg{width: 30px; height: 30px;}
/* tabs */
.tab {
  position: relative;
}
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__label{ padding: 10px; background: #fff;border: 2px solid #163A49;transition: all .8s ease-in-out;}
.tab__label:hover {color: #fff;background: #163A49;}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.tab input:checked ~ .tab__label {
  background: #163A49;
  color: #fff;
  border: 2px solid #163A49;
}
.tab input:checked ~ .tab__content {
  max-height: 20rem;
  background: #FFECDF;
  padding: 20px 10px
}
/* tabs end */
  .mySwiper2 {
      height: 80%;
      width: 100%;
    }

    .mySwiper3 {
      height: 20%;
      box-sizing: border-box;
      padding: 10px 0;
    }

    .mySwiper3 .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.4;
    }

    .mySwiper3 .swiper-slide-thumb-active {
      opacity: 1;
    }
    .mySwiper2 .swiper-slide img{
        margin: 0 auto;
    }
  .mySwiper4 .swiper-wrapper{width: 90%; margin: 0 auto;}
.contact-form {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    min-width: 260px;
    justify-content: center;
  }

  .contact-form input,
  .contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #b2c8b2;
    color: #fff;
    font-size: 1.08rem;
    padding: 0.7em 0.2em;
    outline: none;
    transition: border 0.2s;
    font-family: "Montserrat", sans-serif;
    ;
    resize: none;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #dbe7db;
    opacity: 1;
    font-weight: 400;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-bottom: 2px solid #F26D26;
  }

  .contact-form textarea {
    min-height: 38px;
    max-height: 120px;
  }

  .submit-row {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-top: 0.5em;
  }

  .submit-btn {
    background: #fff;
    color: #163A49;
    border: 2px solid #163A49;
    padding: 0.7em 2.2em;
    font-size: 1.08rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(40, 93, 67, 0.07);
    position: relative;
    z-index: 1;
  }

  .submit-btn:hover {
    background: #F26D26;
    color: #fff;
    border-color: #F26D26;
  }

  .social-row {
    display: flex;
    gap: 1.1em;
    margin-top: 1.2em;
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 1.5em;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 1.7em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
  }
.social-icon svg{width: 30px; height: 30px;}
  .social-icon:hover {
    background: #F26D26;
    color: #fff;
    box-shadow: 0 2px 8px #F26D2644;
  }
  .submitting{
    display: none;
  }
@media (max-width: 768px) {
   .nav-btns,.navbar-contact,.navbar-links{display:none}
    .two-columns .left-column,.two-columns .right-column{width:100%}
    .two-columns{flex-direction:column}
    .featured-grid, .three-col{grid-template-columns: 1fr;}
    .three-col{gap: 2rem}
    .w-95{width: 90%;}
    .w-95.p-2{padding: 8px 0;}
    .swiper-pagination{
        display: block;
    }
    .navbar-toggle {
        display: flex;
    }
}
