* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

/* Top Bar */
.top-bar {
  background: #00035f;
  margin: 0 auto;
}

.logo {
  width: 180px;
  margin: 0 auto;
  /* Adjust this size as per your design */
}

.tpc {
  width: 87%;
}

/* Navbar */
.navbar {
  background: #fff;
  width: 80%;
  margin: 0 auto;
  height: 120px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  /* Ensures equal spacing between logo, menu, and icons */
  align-items: center;
  width: 1350px;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

li,
dl,
ul {
  margin-bottom: 0px;
}

.nav-menu li {
  margin-right: 40px;
}

.nav-menu li a {
  text-decoration: none;
  color: #373737;
  font-size: 18px;
}

.nav-menu li a:hover,
.nav-menu li a:active {
  color: #fd8f14;
}

.nav-icons {
  display: flex;
  align-items: center;
}


.nav-icons a {
  margin: 0 10px;
  color: #03acff;
  font-size: 22px;
}

/* Mobile Menu */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin-bottom: 15px;
  }

  .hamburger-menu {
    display: block;
  }

  .nav-icons a {
    margin: 0 10px;
    color: #323232;
    font-size: 20px;
  }
}

/* Adjustments for extra small devices */
@media (max-width: 576px) {
  .logo {
    width: 80px;
    /* Further adjustments for smaller screens */
  }

  .nav-icons a {
    font-size: 18px;
  }

  .hamburger-menu {
    font-size: 1.6rem;
  }
}

/************   Banner  *****************/

.banner {
  background-image: url(../images/banner.png);
  background-size: cover;
  width: 100%;
  height: 587px;
}

.c_width {
  width: 74%;
  margin: 0 auto;
}

.banner1 {
  font-size: 35px;
  text-align: left;
  line-height: 1.5;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 800;
  color: #343434;
  margin: 0 auto;
  margin-top: 17%;
  margin-bottom: 15px;
}


.onban {
  width: 22%;
}

.onbanc {
  width: 70%;
  margin: 0 auto;
  position: relative;
  z-index: 1000;
  margin-top: -110px;
}

.carad {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}

/****************** About Us ****************/

.abttxt {
  font-size: 40px;
  text-align: left;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #424242;
  margin-top: 50px;
  margin-bottom: 15px;
}

.abttxt2 {
  font-size: 22px;
  text-align: left;
  font-weight: 500;
  color: #343434;
  margin-bottom: 10px;
}

.abouttext {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: left;
  color: #343434;
  font-weight: 400;
}

.abtimg {
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
}

.withabt {
  width: 30%;
  float: left;
  margin: 0 auto;
}

.blueban {
  background-image: url(../images/blueban.png);
  background-size: cover;
  width: 100%;
}

.work {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.contact-form {
  margin: 0 auto;
  padding: 50px;
}

form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.formtxt {
  font-size: 26px;
  text-align: left;
  margin-bottom: 20px;
}

.form-left,
.form-right {
  width: 48%;
}

label {
  font-size: 14px;
  font-weight: 400;
  color: #6e6969;
  display: block;
  float: left;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 18px 10px;
  background: transparent;
  font-size: 14px;
  margin-bottom: 20px;
  border: 2px solid #ebebeb;
  border-radius: none;
}

textarea {
  resize: none;
}

.send-button {
  background-color: #f7b531;
  color: white;
  padding: 15px 30px;
  font-weight: 500;
  border: none;
  font-weight: bold;
  cursor: pointer;
  float: left;
  border-radius: none;
}

.send-button:hover {
  background-color: #e5a022;
}

/* Tablet and below (up to 768px) */
@media screen and (max-width: 768px) {

  .form-left,
  .form-right {
    width: 100%;
  }

  .send-button {
    width: 100%;
  }
}

/* Mobile and below (up to 480px) */
@media screen and (max-width: 480px) {

  input,
  textarea {
    font-size: 16px;
    padding: 12px;
  }

  label {
    font-size: 16px;
  }

  .send-button {
    font-size: 16px;
    padding: 12px;
  }
}


/************** Footer ******************/
.footer_box {
  background: #081d2e;
  border-top: 20px solid #3f3f3f;
  padding: 30px 20px;
}

.purple {
  background: #3f3f3f;
  text-align: center;
  padding: 12px 0px;
}


.cp {
  color: #fff;
  text-align: center;
  font-size: 16px;
  margin-bottom: 0px;
}

.map {
  width: 80%;
  height: 400px;
}

.footer_head {
  font-size: 17.5px;
  color: #fff;
  text-align: left;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}

.footer_text {
  font-size: 16px;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;

}

.aa,
.aa:hover {
  color: #fff;
  text-decoration: none;
}


/**************************************************************************/
@media only screen and (min-width:280px) and (max-width:480px) {

  .navbar-light .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-link:hover {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
  }

  .nav__link {
    color: #292929;
    transition: all 0.2s;
    font-size: 16px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .onban {
    width: 68%;
  }

  .contact-form {
    padding: 50px 0px;
  }

  .blueban {
    background: #00035f;
  }

  .navbar .container {
    flex-wrap: nowrap;
  }

  .navbar {
    background: #fff;
  }

  .quote-btn {
    width: 100%;
  }

  .logo {
    width: 110px;
  }

  input,
  select {
    width: 100% !important;
  }

  .quote-form {
    width: 100%;
    margin: 0 auto;
  }

  .submit-button {
    width: 100%;
  }

  .banner {
    height: 590px;
  }


  .banner1 {
    font-size: 30px;
    margin-top: 45px !important;
  }

  .banbtn {
    width: 70%;
    margin-bottom: 40px;
  }

  textarea {
    width: 100%;
  }

  .formtxt {
    font-size: 29px;
  }

  .abttxt {
    font-size: 22px !important;
    margin-top: 20px !important;
  }

  br {
    display: none;
  }


  .c_width {
    width: 92%;
  }

  .abouttext {
    font-size: 18px;
  }
}


/**************************************************************************/
@media only screen and (min-width:480px) and (max-width:576px) {

  .navbar-light .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-link:hover {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
  }

  .subscribe-container {
    width: 100%;
  }

  .navbar {
    background: #fff;
    height: auto;
  }

  .nav__link {
    color: #292929;
    transition: all 0.2s;
    font-size: 16px;
  }

  .logo {
    width: 110px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .onban {
    width: 57%;
  }


  .blueban {
    background: #00035f;
  }

  .logo__img {
    width: 180px;
  }

  .quote-form {
    width: 85%;
    margin: 0 auto;
  }

  .submit-button {
    width: 100%;
  }

  .banner {
    height: 475px;
  }

  .banbtn {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .banner1 {
    margin-top: 25px;
  }

  .abttxt {
    font-size: 22px;
    margin-top: 20px;
  }

  br {
    display: none;
  }

  .abouttext br {
    display: inherit;
  }

  input,
  select {
    width: 100% !important;
  }

  textarea {
    width: 100% !important;
  }

  .c_width {
    width: 89%;
  }

  .abouttext {
    font-size: 18px;
  }

}


/**************************************************************************/
@media only screen and (min-width:576px) and (max-width:768px) {

  .navbar-light .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-link:hover {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
  }

  .navbar {
    background: #fff;
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: inline-block;
  }

  .onban {
    width: 40%;
  }

  .blueban {
    background: #00035f;
  }

  .carad {
    width: 69%;
  }

  .nav__link {
    color: #292929;
    transition: all 0.2s;
    font-size: 16px;
  }

  .quote-btn {
    width: 53%;
  }

  .blue {
    width: 45%;
  }

  .top-header {
    padding: 10px 30px;
  }

  .middle-header {
    width: 100%;
  }

  .bottom-header {
    width: 100%;
    background: #fff;
  }

  .logo__img {
    width: 180px;
  }

  .quote-form {
    margin: 0 auto;
    text-align: center;
    width: 90%;
  }

  .submit-button {
    width: 97%;
  }

  .contacts2 {
    width: 60%;
  }

  br {
    display: none;
  }


  .banner {
    height: 450px;
  }

  .banner1 {
    margin-top: 50px;
  }

  .banbtn {
    width: 65%;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  input,
  select {
    width: 97% !important;
  }

  .servicesban {
    height: 300px;
  }

  .contactsban {
    height: 300px;
  }

  .donaban {
    height: 300px;
  }

  .camban {
    height: 300px;
  }

  .banner2 {
    font-size: 47px;
    margin-top: 30%;
  }

  .tests {
    width: 50%;
  }

  .abttxt {
    font-size: 22px;
    margin-top: 20px;
  }


  .abouttext br {
    display: inherit;
  }


  .abouttext {
    font-size: 18px;
  }

}

/**************************************************************************/
@media only screen and (min-width:768px) and (max-width:991px) {

  .navbar-light .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-link:hover {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
  }

  .navbar {
    background-color: #fff;
  }

  .menu-toggle {
    display: block;
  }


  .quote-btn {
    width: 47%;
  }

  .subscribe-container {
    width: 98%;
  }

  .request-form {
    width: 100%;
  }

  .form-container {
    padding: 55px 15px;
  }

  .inooo {
    width: 32%;
  }


  .contactsban {
    height: 300px;
  }

  .donaban {
    height: 300px;
  }

  .servicesban {
    height: 300px;
  }

  .camban {
    height: 300px;
  }

  .top-header {
    padding: 10px 30px;
  }

  .middle-header {
    width: 100%;
  }

  .bottom-header {
    width: 100%;
    background: #fff;
  }

  .greenbtn {
    width: 34%;
  }

  .cards-container {
    display: flex;
    flex-direction: column;
  }

  .card {
    width: 80%;
    margin: 0 auto;
  }

  .logo__img {
    width: 122px;
  }

  .quote-form {
    width: 100%;
    padding: 20px;
  }

  .submit-button {
    width: 95%;
  }

  input,
  select {
    width: 95%;
  }

  textarea {
    width: 95%;
  }

  .banner {
    height: 440px;
  }

  .blue {
    width: 35%;
  }

  .banner1 {
    margin-top: 83px;
  }

  .banbtn {
    width: 83%;
  }

  .pt-4 {
    font-size: 29px !important;
  }

  .servicesban {
    height: 368px;
  }

  .camban {
    height: 368px;
  }

  .banner2 {
    font-size: 42px;
    margin-top: 22%;
  }



  .tests {
    width: 35%;
  }

  .abouttext {
    font-size: 18px;
  }

}

/**************************************************************************/
@media only screen and (min-width:991px) and (max-width:1300px) {

  .navbar-light .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-link:hover {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
  }

  .blog-link,
  .phone-link,
  .faq-link,
  .support-link,
  .signin-link {
    padding-right: 7px;
  }

  .navbar {
    flex-wrap: nowrap;
  }

  .nav-menu li {
    margin-right: 20px;
  }



  .logo__img {
    width: 120px;
  }

  .camban {
    height: 424px;
  }

  .contactsban {
    height: 424px;
  }

  .donaban {
    height: 424px;
  }

  .servicesban {
    height: 424px;
  }

  .quote-form {
    width: 127%;
  }

  .banner {
    height: 495px;
  }

  .onban {
    width: 32%;
  }

  .c_width {
    width: 83%;
  }

  .banner1 {
    margin-top: 120px;
  }

  .abttxt {
    font-size: 22px !important;
    margin-top: 20px !important;
  }


  br {
    display: none;
  }

  .contact-form {
    width: 88%;
    padding: 0px;
  }

  .contact-form form .input-group input {
    display: block;
    width: 100%;
  }

  .contact-form button {
    width: 40%;
    padding: 10px 3px;
    left: 0px;
  }

  .contact-form {
    padding: 30px 0px;
  }
}



/**************************************************************************/
@media only screen and (min-width:1300px) and (max-width:1400px) {
  .nav__link {
    color: #fff;
    transition: all 0.2s;
    font-size: 14px;
  }

  .main-menu {
    gap: 10px;
  }

  .navbar {
    flex-wrap: nowrap;
  }

  .banner1 {
    margin-top: 17%;
  }

  .bottom-header {
    width: 1201px;
  }

  .servicesban {
    height: 538px;
  }

  .camban {
    height: 538px;
  }

  .banner2 {
    margin-top: 20%;
  }


  div.col-lg-8:nth-child(1)>p:nth-child(2) {
    font-size: 18px !important;
  }

  .c_width {
    width: 80%;
  }
}