/* ------equipment--------- */
/* Dropdown Container */
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 columns */
    text-align: left;
    gap: 15px; /* Space between grid items */
    background: #f9f9f9; /*Light background for dropdown*/
    padding: 15px;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    font-size: 1.0em;
    position: absolute;
    top: 100%;
    left: 0px;
    min-width: 100px;
    z-index: 1000;
    display: none;
    
  }
  
  /* Show Dropdown on Hover */
  .has-children:hover .dropdown-grid {
    display: grid;
  }
  
  /* Dropdown Links */
  .dropdown-grid li {
    list-style: none;
  }
  
  .dropdown-grid .nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 2px 5px;
    transition: background 0.3s;
  }
  
  .dropdown-grid .nav-link:hover {
    background: black;
    color: #fff;
    border-radius: 4px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .dropdown-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
      gap: 8px;
    }
  }
  
  @media (max-width: 480px) {
    .dropdown-grid {
      grid-template-columns: 1fr; /* Single column on mobile */
    }
  }
  
  /* --------equipments end--------- */
  
  body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    /* font-weight: bold; */
    height: 180vh;
    position: relative;
  }
  
  body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }
  
  body.offcanvas-menu:before {
    opacity: 1;
    z-index: 1002;
    visibility: visible;
  }
  
  /* ------------------ */
  .mega-box{
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    margin-top: 10px;
    top: 70px;
    opacity: 0;
    visibility: hidden;
  }
  .mega-box .content{
    background: #2c5e9f;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    opacity: 1;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .mega-box .content .row{
    width: calc(50% - 30px);
    line-height: 45px;
  }
  .content .row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .content .row header{
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
  }
  .content .row .mega-links{
    margin-left: -40px;
    border-left: 1px solid rgba(255,255,255,0.09);
  }
  .row .mega-links li{
    padding: 0 20px;
  }
  .row .mega-links li a{
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
    border-bottom: 1px solid rgb(255, 255, 255);
  }
  .row .mega-links li a:hover{
    color: #f2f2f2;
    /*background: #000000;*/
    /*border-radius: 5px;*/
  }
  .wrapper .btn{
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  .wrapper .btn.close-btn{
    position: absolute;
    right: 30px;
    top: 10px;
  }
  
  @media screen and (max-width: 1024px) {
    .wrapper .btn{
      display: block;
    }
    .wrapper .nav-links{
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 350px;
      top: 0;
      left: -100%;
      background: #a6a6a6;
      display: block;
      padding: 50px 10px;
      line-height: 50px;
      overflow-y: auto;
      box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
      transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #242526;
    }
    ::-webkit-scrollbar-thumb {
      background: #3A3B3C;
    }
    #menu-btn:checked ~ .nav-links{
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn{
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn{
      display: block;
    }
    .nav-links li{
      margin: 15px 10px;
    }
    .nav-links li a{
      padding: 0 20px;
      display: block;
      font-size: 20px;
    }
    .nav-links .drop-menu{
      position: static;
      opacity: 1;
      top: 65px;
      visibility: visible;
      padding-left: 20px;
      width: 100%;
      max-height: 0px;
      overflow: hidden;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box{
      max-height:fit-content;
    }
    .nav-links .desktop-item{
      display: none;
    }
    .nav-links .mobile-item{
      display: block;
      color: #2c5e9f;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover{
      color:#ffffff;
      background:  #2c5e9f;
    }
    .drop-menu li{
      margin: 0;
    }
    .drop-menu li a{
      /*border-radius: 5px;*/
      font-size: 18px;
    }
    .mega-box{
      position: static;
      top: 65px;
      opacity: 1;
      visibility:hidden;
      padding: 0 20px;
      max-height: 0px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .mega-box .content{
      box-shadow: none;
      flex-direction: column;
      padding: 20px 20px 0 20px;
    }
    .mega-box .content .row{
      width: 147%;
      /*margin-bottom: 15px;*/
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2){
      border-top: 0px;
    }
    .content .row .mega-links{
      border-left: 0px;
      padding-left: 15px;
    }
    .row .mega-links li{
      margin: 0;
    }
    .content .row header{
      font-size: 19px;
    }
  }
  nav input{
    display: none;
  }
  
  .drop-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
  }
  
  .drop-menu li {
    position: relative;
  }
  
  .drop-menu li:hover > .sub-menu {
    display: block;
  }
  
  .sub-menu {
    display: none;
    position: absolute;
    left: 160px;
    top: 0;
    background-color: #f9f9f9;
    min-width: 160px;
  }
  
  li:hover .drop-menu {
    display: block;
  }
  /* -------------------- */
  
  p {
    color: #b3b3b3;
    font-weight: 300;
  
  }
  
  h1, 
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    font-family: "Poppins", sans-serif;
  }
  
  a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
  }
  
  a,
  a:hover {
    text-decoration: none !important;
  }
  
  .hero {
    height: 77vh;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  .site-navbar-wrap {
    position: absolute;
    z-index: 99;
    width: 100%;
    left: 0;
  }
  
  .site-navbar-wrap a {
    color: #fff;
  }
  
  .site-navbar-wrap .site-navbar-top {
    font-size: 0.8rem;
  }
  
  .site-navbar-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  
  .site-navbar {
    margin-bottom: 0px;
    width: 100%;
  }
  
  .site-navbar .site-logo {
    font-weight: 200;
    line-height: 0;
    top: -7px;
    position: relative;
  }
  
  .site-navbar .site-logo a {
    font-weight: 200;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .site-navbar .site-navigation .site-menu {
    margin-bottom: 0;
  }
  
  .site-navbar .site-navigation .site-menu a {
    text-decoration: none !important;
    display: inline-block;
    font-weight: 900;
  }
  
  .site-navbar .site-navigation .site-menu>li {
    display: inline-block;
    padding: 10px 5px;
  }
  
  .site-navbar .site-navigation .site-menu>li>a {
    padding: 20px 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    text-decoration: none !important;
  }
  
  .site-navbar .site-navigation .site-menu>li>a.active {
    color: #fff;
  }
  
  .site-navbar .site-navigation .site-menu>li>a:hover {
    color: #fff;
  }
  
  .site-navbar .site-navigation .site-menu>li:last-child {
    padding-right: 0;
  }
  
  .site-navbar .site-navigation .site-menu>li:last-child>a {
    padding-right: 0;
  }
  
  .site-navbar .site-navigation .site-menu .has-children {
    position: relative;
  }
  
  .site-navbar .site-navigation .site-menu .has-children>a {
    position: relative;
    padding-right: 20px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children>a:before {
    position: absolute;
    content: "\e313";
    font-size: 0px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Poppins", sans-serif;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    position: absolute;
    text-align: left;
    -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 0px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s;
    border-radius: 4px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
    position: absolute;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    border-color: rgba(7, 95, 149, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown a {
    font-size: 16px;
    text-transform: none;
    letter-spacing: normal;
    -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
    color: #3675b3;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
    color: #007bff;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown .active>a {
    color: #fff !important;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li:first-child>a {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li:last-child>a {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
    padding: 9px 20px;
    display: block;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
    background: #ebeef0;
    color: #212529;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
    content: "\e315";
    right: 5px;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
    left: 100%;
    top: 0;
  }
  
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:hover>a,
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:active>a,
  .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:focus>a {
    background: #ebeef0;
    color: #212529;
  }
  
  .site-navbar .site-navigation .site-menu .has-children:hover>a,
  .site-navbar .site-navigation .site-menu .has-children:focus>a,
  .site-navbar .site-navigation .site-menu .has-children:active>a {
    color: #fff;
  }
  
  .site-navbar .site-navigation .site-menu .has-children:hover,
  .site-navbar .site-navigation .site-menu .has-children:focus,
  .site-navbar .site-navigation .site-menu .has-children:active {
    cursor: pointer;
  }
  
  .site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
  .site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
  .site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
  }
  
  .site-mobile-menu {
    width: 300px;
    position: fixed;
    right: 0;
    z-index: 2000;
    padding-top: 20px;
    background: #fff;
    height: calc(100vh);
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
  }
  
  .offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  
  .site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
    float: right;
    margin-top: 8px;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
    font-size: 30px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 0px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
    color: #dee2e6;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
    float: left;
    margin-top: 10px;
    margin-left: 0px;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
    display: inline-block;
    text-transform: uppercase;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
    max-width: 70px;
  }
  
  .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
    text-decoration: none;
  }
  
  .site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px;
  }
  
  .site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
  }
  
  .site-mobile-menu .site-nav-wrap a {
    padding: 10px 20px;
    display: block;
    position: relative;
    color: #212529;
  }
  
  .site-mobile-menu .site-nav-wrap a.active,
  .site-mobile-menu .site-nav-wrap a:hover {
    color: #007bff;
  }
  
  .site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
  }
  
  .site-mobile-menu .site-nav-wrap li.active>a {
    color: #007bff;
  }
  
  .site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 0px;
    top: 10px;
    z-index: 20;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
  }
  
  /* .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
    background: #f8f9fa;
  } */
  
  .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
    font-size: 12px;
    z-index: 20;
    font-family: "Poppins", sans-serif;
    /* content: "\f078"; */
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    -ms-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
  }
  
  .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .site-mobile-menu .site-nav-wrap>li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
  }
  
  .site-mobile-menu .site-nav-wrap>li>a {
    padding-left: 20px;
    font-size: 20px;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul>li {
    display: block;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul>li>a {
    padding-left: 40px;
    font-size: 16px;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul>li>ul {
    padding: 0;
    margin: 0;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
    display: block;
  }
  
  .site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
    font-size: 16px;
    padding-left: 60px;
  }
  
  .sticky-wrapper {
    position: absolute;
    z-index: 100;
    width: 100%;
  }
  
  .sticky-wrapper+.site-blocks-cover {
    margin-top: 96px;
  }
  
  .sticky-wrapper .site-navbar {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
  }
  
  .sticky-wrapper .site-navbar ul li.active a {
    color: #ffffff;
  }
  
  .sticky-wrapper.is-sticky .site-navbar {
    background-color: #ffffff;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li {
    display: inline-block;
    padding: 10px 5px;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li:last-child {
    padding-right: 0;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li:last-child>a {
    padding-right: 0;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li.has-children>a {
    padding-right: 20px;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a {
    padding: 10px 10px;
    color: rgba(30, 30, 30, 0.6);
    font-size: 15px;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a:hover {
    color: rgb(0, 0, 0) !important;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a.active {
    color: #121212 !important;
  }
  
  .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li.active a {
    color: rgb(18, 17, 17);
  }

  /* ========== Hero section =========== */
   @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}
.contact-bg{
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(./../images/contact-bg.jpg);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-bg h3{
    font-size: 1.3rem;
    font-weight: 400;
}
.contact-bg h2{
    font-size: 3rem;
    text-transform: uppercase;
    padding: 0.4rem 0;
    letter-spacing: 4px;
    margin-top: 20px;
}
.line div{
    margin: 0 0.2rem;
}
.line div:nth-child(1),
.line div:nth-child(3){
    height: 3px;
    width: 70px;
    background: #f7327a;
    border-radius: 5px;
}
.line{
    display: flex;
    align-items: center;
}
.line div:nth-child(2){
    width: 10px;
    height: 10px;
    background: #f7327a;
    border-radius: 50%;
}
.text{
    font-weight: 300;
    opacity: 0.9;
}
.contact-bg .text{
    margin: 1.6rem 0;
}
.contact-body{
    max-width: 1320px;
    margin: 0 auto;
    /* padding: 0 1rem; */
}
.contact-info{
    margin: 2rem 0;
    text-align: center;
    padding: 2rem 0;
}
.contact-info span{
    display: block;
}
.contact-info div{
    margin: 0.8rem 0;
    padding: 1rem;
}
.contact-info span .fas{
    font-size: 2rem;
    padding-bottom: 0.9rem;
    color: #f7327a;
}
.contact-info div span:nth-child(2){
    font-weight: 500;
    font-size: 1.1rem;
}
.contact-info .text{
    padding-top: 0.4rem;
}
.contact-form{
    padding: 2rem 0;
    border-top: 1px solid #c7c7c7;
}
.contact-form form{
    padding-bottom: 1rem;
}
.form-control{
    width: 100%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.6rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    outline: 0;
}
.form-control:focus{
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}
.contact-form form div{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.6rem;
}
.send-btn{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    background: #f7327a;
    border: none;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
}
.send-btn:hover{
    opacity: 0.8;
}
.contact-form > div img{
    width: 85%;
}
.contact-form > div{
    margin: 0 auto;
    text-align: center;
}
.contact-footer{
    padding: 2rem 0;
    background: #000;
}
.contact-footer h3{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}
.social-links{
    display: flex;
    justify-content: center;
}
.social-links a{
    text-decoration: none;
    width: 40px;
    height: 40px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.4rem;
    transition: all 0.4s ease;
}
.social-links a:hover{
    color: #f7327a;
    border-color: #f7327a;
}

@media screen and (min-width: 768px){
    .contact-bg .text{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-info{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px){
    .contact-bg .text{
        width: 50%;
    }
    .contact-form{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media screen and (min-width: 1200px){
    .contact-info{
        grid-template-columns: repeat(4, 1fr);
    }
}
  

  /* ------------main start----- */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to right, #f4faff, #ffffff);
    color: #333;
}

/* Container */
.container1 {
    display: flex;
    padding: 30px;
    gap: 20px;
    margin: 0 40px;
    /* margin: 0 auto; */
    max-width: 1200px;
}

/* Sidebar Navigation */
.sidebar {
    width: 25%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* position: sticky;
    top: 20px; */
    /* height: fit-content; */
    transition: all 0.3s ease-in-out;
}

.sidebar h2 {
    font-size: 20px;
    color: #0056b3;
    margin-bottom: 15px;
    text-align: left;
    font-weight: bold;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin: 12px 0;
}

.sidebar a {
    text-decoration: none;
    color: #0056b3;
    display: block;
    padding: 12px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}


.sidebar a:hover, 
.sidebar a.active {
    background: #0056b3;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Form Sections */
.form-section {
     flex-grow: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 20px; */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

.form-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-section h1 {
    font-size: 26px;
    color: #28a745;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-section p {
    font-size: 14px;
    color: #666;
}

 .form-container {
            border: 1px solid #ddd;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            background: #f9f9f9;
        }

        .section-title {
            font-size: 18px;
            font-weight: bold;
            color: black;
            /* color: #28a745; */
            margin-bottom: 10px;
        }

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.required {
    color: red;
}

/* Name Fields */
        .name-fields .name-inputs {
            display: flex;
            gap: 10px;
        }

        .name-fields input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 6px;
        }

        .error-message {
            color: red;
            font-size: 12px;
            display: none;
        }

/* Phone Number Field */
        .phone-group .phone-input {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .phone-group img {
            width: 24px;
            height: 16px;
        }

        .phone-group select {
            width: 60px;
            padding: 10px;
            border-radius: 6px;
        }

        
        /* Dropdown */
        .form-group select {
            appearance: none;
            cursor: pointer;
        }

        /* Helper Text */
        .helper-text {
            font-size: 12px;
            color: #666;
            margin-top: 2px;
        }


.form-group input,
.form-group select,
.form-group textarea {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.4);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.form-actions button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.form-actions button[type="submit"] {
    background: #28a745;
}

.form-actions button[type="submit"]:hover {
    background: #218838;
    transform: scale(1.05);
}

.hidden {
    display: none;
}

 /* Optional: Custom style to enhance the down arrow appearance */
    .select2-container--default .select2-selection--single .select2-selection__arrow {
      height: 100%;
      right: 8px;
    }
    .select2-container--default .select2-selection--single {
      height: 40px;
      padding: 5px 40px 5px 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

/* Add colored side borders to form sections */
#get-in-touch { border-left: 6px solid #007bff; }
#book-enquiry { border-left: 6px solid #ffc107; }
#test-water { border-left: 6px solid #17a2b8; }
#share-feedback { border-left: 6px solid #6f42c1; }
#general-queries { border-left: 6px solid #e83e8c; }
#faqs { border-left: 6px solid #28a745; }

/* Smooth Scroll Effect */
html {
    scroll-behavior: smooth;
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fade-in animation to sections when they appear */
.form-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.form-section.visible {
    opacity: 1;
    transform: translateY(0);
}



/* 🌍 Responsive for All Devices */

/* ✅ Large Screens (Desktops & Laptops) */
@media (max-width: 1200px) {
    .container1 {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .sidebar {
        width: 80%;
    }
    .form-section {
        width: 90%;
    }
}

/* ✅ Tablets (1024px and below) */
@media (max-width: 1024px) {
    .container1 {
        flex-direction: column;
        align-items: center;
    }
    .sidebar {
        width: 70%;
        margin-bottom: 20px;
    }
    .form-section {
        width: 85%;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
    }
}

/* ✅ Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        padding: 15px;
    }
    .sidebar {
        width: 100%;
    }
    .form-section {
        width: 100%;
    }
    .name-fields {
        flex-direction: column;
    }
    .name-inputs {
        flex-direction: column;
        gap: 5px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        font-size: 14px;
    }
    .form-actions button {
        width: 100%;
    }
}

/* ✅ Small Phones (480px and below) */
@media (max-width: 480px) {
    .container1 {
        padding: 10px;
        /* width: 80%; */
        /* flex-direction: column; 
        align-items: center;  */
        overflow: hidden;
        /* width: 90%; */
        
    }
    .sidebar {
        width: 100%;
        padding: 15px;
    }
    .form-section {
        padding: 15px;
    }
    .form-group label {
        font-size: 14px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 8px;
    }
    .form-actions button {
        font-size: 14px;
        padding: 10px;
    }
    /* .phone-input {
        flex-direction: column;
        align-items: flex-start;
    } */
    .phone-input select {
        width: 100%;
    }
}


/* Responsive Design */
/* @media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        padding: 15px;
    }

    .sidebar {
        width: 100%;
        position: relative;
    }

    .form-section h1 {
        font-size: 22px;
    }
}

 .error {
   border: 2px solid red; 
} */

    /*==================== 
      Footer 
  ====================== */
  
  /* Main Footer */
  footer {
    width: 100vw; /* Ensures full viewport width */
    margin: 0 !important;
    max-width: 100%;
    left: 0;
    bottom: 0;
}

  .footer-1{
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  footer .main-footer{	
    padding: 20px 0;
    	background: #252525;}
  footer ul{	padding-left: 0;	list-style: none;}
  
  /* Copy Right Footer */
  .footer-copyright {	background: #222;	padding: 5px 0;}
  .footer-copyright .logo {    display: inherit;}
  .footer-copyright nav {    float: right;    margin-top: 5px;}
  .footer-copyright nav ul {	list-style: none;	margin: 0;	padding: 0;}
  .footer-copyright nav ul li {	border-left: 1px solid #505050;	display: inline-block;	line-height: 12px;	margin: 0;	padding: 0 8px;}
  .footer-copyright nav ul li a{	color: #969696;}
  .footer-copyright nav ul li:first-child {	border: medium none;	padding-left: 0;}
  .footer-copyright p {	color: #969696;	margin: 2px 0 0;}
  
  /* Footer Top */
  .footer-top{	background: #252525;	padding-bottom: 30px;	margin-bottom: 30px;	border-bottom: 3px solid #222;}
  
  /* Footer transparent */
  footer.transparent .footer-top, footer.transparent .main-footer{	background: transparent;}
  footer.transparent .footer-copyright{	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3) ;}
  
  /* Footer light */
  footer.light .footer-top{	background: #f9f9f9;}
  footer.light .main-footer{	background: #f9f9f9;}
  footer.light .footer-copyright{	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3) ;}
  
  /* Footer 4 */
  .footer- .logo {    display: inline-block;}
  
  /*==================== 
      Widgets 
  ====================== */
  .widget{	padding: 20px;	margin-bottom: 40px;}
  .widget.widget-last{	margin-bottom: 0px;}
  .widget.no-box{	padding: 0;	background-color: transparent;	margin-bottom: 40px;
      box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none;}
  .widget.subscribe p{	margin-bottom: 18px;}
  .widget li a{	color: #ff8d1e;}
  .widget li a:hover{	color: #4b92dc;}
  .widget-title {margin-bottom: 20px;}
  .widget-title span {background: #839FAD none repeat scroll 0 0;display: block; height: 1px;margin-top: 25px;position: relative;width: 20%;}
  .widget-title span::after {background: inherit;content: "";height: inherit;    position: absolute;top: -4px;width: 50%;}
  .widget-title.text-center span,.widget-title.text-center span::after {margin-left: auto;margin-right:auto;left: 0;right: 0;}
  .widget .badge{	float: right;	background: #7f7f7f;}
  
  .typo-light h1, 
  .typo-light h2, 
  .typo-light h3, 
  .typo-light h4, 
  .typo-light h5, 
  .typo-light h6,
  .typo-light p,
  .typo-light div,
  .typo-light span,
  .typo-light small{	color: #fff;}
  
  ul.social-footer2 {	margin: 0;padding: 0;	width: auto;}
  ul.social-footer2 li {display: inline-block;padding: 0;}
  ul.social-footer2 li a:hover {background-color:#ff8d1e;}
  ul.social-footer2 li a {display: block;	height:30px;width: 30px;text-align: center;}
  .btn{background-color: #ff8d1e; color:#fff;}
  .btn:hover, .btn:focus, .btn.active {background: #4b92dc;color: #fff;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 250ms ease-in-out 0s;
  -moz-transition: all 250ms ease-in-out 0s;
  -ms-transition: all 250ms ease-in-out 0s;
  -o-transition: all 250ms ease-in-out 0s;
  transition: all 250ms ease-in-out 0s;
  
  }
  
  
  