
body {
  font-family: 'Inter', sans-serif;
}



/*------------------ whatsapp-btn css code---------------------------- */

@import url("https://fonts.googleapis.com/css?family=Roboto");
/* offset-x > | offset-y ^| blur-radius | spread-radius | color */
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 100;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  margin: 0px;
}
@media (max-width: 360px) {
  .nav-bottom {
    width: 320px;
  }
}

.whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 8;
  transition: .3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: .3s;
  background-color: #77bb4a;
  animation: pulse 1.2s 4.0s ease 4;
}

.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding: 10px;
  bottom: 85px;
  right: 6px;
  transition: .5s;
  border-radius: 10px;
  background-color: white;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight .6s 0.0s both;
}
.popup-whatsapp > div {
  margin: 5px;
}
@media (max-width: 680px) {
  .popup-whatsapp p {
    font-size: 0.9em;
  }
}
.popup-whatsapp > .content-whatsapp.-top {
  display: flex;
  flex-direction: column;
}
.popup-whatsapp > .content-whatsapp.-top p {
  color: #585858;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 1.0em;
}
.popup-whatsapp > .content-whatsapp.-bottom {
  display: flex;
  flex-direction: row;
}

.closePopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin: 0px 0px 15px 0px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #f76060;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}
.closePopup:hover {
  background-color: #f71d1d;
  transition: .3s;
}

.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}
.send-msPopup:hover {
  background-color: #f8f8f8;
  transition: .3s;
}

.is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight .6s 0.0s both;
}

input.whats-input[type=text] {
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  border: 0px solid #ffffff;
  border-radius: 20px;
  font-size: 1em;
  background-color: #ffffff;
  padding: 0px 0px 0px 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  outline: none;
  transition: .3s;
}
@media (max-width: 420px) {
  input.whats-input[type=text] {
    width: 225px;
  }
}
input.whats-input::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(68, 68, 68, 0.705);
  opacity: 1;
}
input.whats-input[type=text]:focus {
  background-color: #f8f8f8;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  transition: .3s;
}

.icon-whatsapp-small {
  width: 24px;
  height: 24px;
}

.icon-whatsapp {
  width: 45px;
  height: 45px;
}

.icon-font-color {
  color: #ffffff;
}

.icon-font-color--black {
  color: #333333;
}

  /*------------------ whatsapp-btn css code---------------------------- */

/* Navbar */
.navbar {
  background-color: #ffffff;
  padding: 10px 30px;
  min-height: 70px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

/* Logo container */
.navbar-brand {
  display: flex;
  align-items: center;
}

/* ✅ Fixed logo height (works for ANY logo size) */
.logo {
  height: 50px;     /* 👈 control logo size here */
  width: auto;
  object-fit: contain;
}

/* Nav links */
.navbar-nav .nav-link {
  margin: 0 10px;
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

/* Button */
.enquire-btn {
  background-color: #f39c12;
  color: #fff;
  border-radius: 25px;
  padding: 8px 18px;
  font-weight: 500;
  transition: 0.3s;
}

.enquire-btn:hover {
  background-color: #d68910;
  color: #fff;
}

/* Tablet & Mobile */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }
}

/* Small devices */
@media (max-width: 576px) {
  .logo {
    height: 40px;
  }
}





/* HERO SECTION */

    .about-hero{
      background:#0b4567;
      padding:125px 0 65px;
      text-align:center;
    }

    .about-title{
      color:#fff;
      font-size:48px;
      font-weight:500;
      line-height:1.1;
      margin-bottom:10px;
      letter-spacing:-1px;
    }

    .about-subtitle{
      color:#d0d9e2;
      font-size:16px;
      font-weight:400;
    }

    /* CONTENT */

    .about-section{
      padding:110px 0 80px;
    }

    .about-content{
      max-width:820px;
      margin:0 auto;
    }

    .about-content p{
      font-size:18px;
      line-height:1.9;
      margin-bottom:28px;
      color:#5f7386;
      font-weight:400;
    }

    .about-content strong{
      color:#0d1f32;
      font-weight:700;
    }

    /* CONTACT CARD */

    .contact-card{
      background:#fff;
      border:1px solid #d9dee3;
      border-radius:16px;
      padding:28px 30px;
      margin-top:28px;
    }

    .contact-heading{
      font-size:20px;
      font-weight:700;
      color:#0d1f32;
      margin-bottom:12px;
    }

    .contact-name{
      font-size:17px;
      font-weight:700;
      color:#0d1f32;
      margin-bottom:4px;
    }

    .contact-role{
      font-size:16px;
      color:#75879a;
      margin-bottom:6px;
    }

    .contact-number{
      color:#11a8b5;
      text-decoration:none;
      font-size:16px;
      font-weight:500;
    }

    .contact-number:hover{
      color:#0f95a0;
    }

    /* RESPONSIVE */

    @media(max-width:768px){

      .about-title{
        font-size:40px;
      }

      .about-section{
        padding:70px 20px;
      }

      .about-content p{
        font-size:16px;
      }

    }



    

  .footer-wrapper{
      background:#0a4468;
      min-height:40vh;
      color:#fff;
      padding-top:92px;
    }

    

    /* FOOTER */

    .footer-area{
      padding-bottom:40px;
    }

    .logo{
      width:82px;
      margin-bottom:20px;
    }

    .footer-desc{
      color:#d2dbe2;
      font-size:15px;
      line-height:1.9;
      max-width:290px;
      font-weight:400;
    }

    .footer-heading{
      font-size:18px;
      font-weight:700;
      margin-bottom:22px;
      letter-spacing:.3px;
    }

    .footer-links a{
      display:block;
      text-decoration:none;
      color:#d2dbe2;
      font-size:15px;
      margin-bottom:12px;
      transition:.3s;
    }

    .footer-links a:hover{
      color:#fff;
    }

    .contact-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      color:#d2dbe2;
      font-size:15px;
      margin-bottom:16px;
      line-height:1.6;
    }

    .contact-item i{
      color:#0db2b2;
      font-size:16px;
      margin-top:3px;
    }

    .trust-item{
      display:flex;
      align-items:center;
      gap:12px;
      color:#d2dbe2;
      font-size:15px;
      margin-bottom:16px;
    }

    .trust-item i{
      color:#0db2b2;
      font-size:16px;
    }

    .trust-text{
      color:#8ba3b5;
      font-size:14px;
      margin-top:8px;
    }

    .copyright{
      border-top:1px solid rgba(255,255,255,0.1);
      text-align:center;
      color:#8ba3b5;
      font-size:14px;
      padding:20px 0;
    }

    @media(max-width:991px){

      .footer-heading{
        margin-top:30px;
      }

    }