/* inter sans g-font */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* space grotesk g-font */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container {
  padding: 0 15px;
  max-width: 1440px;
}
img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}
p,
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
a {
  text-decoration: none;
}
.cmn-btn {
  padding: 8px 15px;
  background: linear-gradient(135deg, hsl(210 90% 42%), hsl(170 65% 40%));
  color: #ffffff;
  text-transform: capitalize;
  display: inline-block;
  border-radius: 12px;
  font-weight: 600;
transition: background 0.3s ease;
}
.cmn-btn:hover {
  background: linear-gradient(135deg, #20c997, #1e90ff);
}
body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Space Grotesk", sans-serif;
}
/* header */
.header {
  background-color: #c8cdd3;
  width: 100%;
  transition: all 0.3s ease;
}
.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease;
}
.navbar-toggler {
  border: none;
}
/* Smooth slide animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header .mob-btn {
  display: none;
}
.navbar-nav .nav-link {
  text-transform: capitalize;
  font-size: 14px;
  color: #151c28;
  padding: 0 16px !important;
  font-weight: 600;
}
.navbar-nav .nav-link:hover {
  color: #0b6bcb;
}
.navbar-brand {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 700;
}
.navbar-brand span,
.offcanvas-title span {
  color: #0b6bcb;
}
/* toggle-menu start */
.menu-toggle {
  position: relative;
  width: 36px;
  height: 26px;
  cursor: pointer;
  z-index: 1051;
}
/* Common line style */
.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  left: 0;
  border-radius: 10px;

  /* 🔥 smoother animation */
  transition:
    transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6),
    opacity 0.25s ease,
    top 0.3s ease;
}
/* Default (☰) */
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 11px;
  width: 50%;
}
.menu-toggle span:nth-child(3) {
  top: 22px;
}
/* Active (❌) */
.menu-toggle.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}
.navbar-toggler:focus,
.menu-toggle:focus {
  outline: none;
  box-shadow: none;
}
/* toggle-menu end */
/* banner */
.banner {
  background-size: cover !important;
  background-position: center !important;
  min-height: 800px;
  position: relative;
  padding: 50px 0;
  z-index: 1;
}
.banner::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    hsl(220 30% 10%) 0%,
    hsl(210 50% 18%) 50%,
    hsl(200 60% 22%) 100%
  );
  opacity: 0.8;
  z-index: -1;
}
.official-bagi {
  color: #ffffff;
  border: 1px solid #737373;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  background-color: #273644;
  font-weight: 600;
  margin-bottom: 24px;
}
.banner-head h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 60%;
}
.banner-head h1 span {
  background: linear-gradient(135deg, hsl(210 90% 42%), hsl(170 65% 40%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-head p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #b9c0c7;
  max-width: 45%;
}
.btn-list .cmn-btn {
  padding: 10px 30px;
}
.btn-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-family: "Space Grotesk", sans-serif;
}
.exp-btn {
  padding: 8px 30px;
  border: 2px solid #7b8996;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  text-transform: capitalize;
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s ease;
}
.exp-btn:hover {
  background: #219559;
  border-color: #219559;
}
.stats-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 40%;
}
.stats-wrapper li {
  text-align: left;
  flex: 1;
}
.stats-wrapper li span {
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}
.stats-wrapper li p {
  font-size: 14px;
  color: #b9c0c7;
}
.stats-wrapper .divider-line {
  height: 100%;
  background-color: #ffffff;
  width: 2px;
}
.stats-wrapper li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
/* services */
.services {
  padding: 50px 0;
  background-color: #f6f7f9;
}
.cmn-head {
  text-align: center;
  margin-bottom: 50px;
}
.cmn-head span {
  color: hsl(210.63deg 86.36% 43.14%);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
}
.cmn-head h2 {
  font-size: 36px;
  text-transform: capitalize;
  font-weight: 700;
}
.cmn-head p {
  color: #6a7181;
  max-width: 50%;
  margin: 0 auto;
}
.services-card-box {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  height: 100%;
}
/* animation */
.services-card-box:hover {
  box-shadow: 0px 3px 22px 0px rgba(31, 121, 201, 0.25);
  border: 1px solid #0b6ccc4d;
}
.services-card-box .icon-box {
  display: inline-block;
  height: 48px;
  width: 48px;
  background: linear-gradient(135deg, hsl(210 90% 42%), hsl(170 65% 40%));
  color: #ffffff;
  text-align: center;
  align-content: center;
  border-radius: 10px;
  margin-bottom: 16px;
}
.services-card-box .icon-box i {
  font-size: 24px;
}
.services-card-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.services-card-box p {
  color: hsl(220 10% 46%);
  line-height: 24px;
  font-size: 14px;
}
.services .row {
  row-gap: 24px;
}
/* why-choose-us */
.why-choose-us {
  padding: 50px 0;
  background-color: #eff0f3;
}
.why-choose-card-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.why-choose-card-box .icon-box {
  padding: 8px 15px;
  text-align: center;
  align-content: center;
  background-color: #d8e3ee;
  border-radius: 10px;
}
.why-choose-card-box .icon-box i {
  color: hsl(210.63deg 86.36% 43.14%);
  font-size: 24px;
}
.why-choose-card-details h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.why-choose-card-details p {
  color: hsl(220 10% 46%);
  line-height: 24px;
  font-size: 14px;
}
.why-choose-row-box {
  margin: 0 200px;
  row-gap: 30px;
}
/* testimonials */
.testimonials {
  padding: 50px 0;
  background-color: #f6f7f9;
}
.textimonials-slider-box {
  padding: 24px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.textimonials-slider {
  margin: 0 200px;
}
.textimonials-slider-box .star {
  margin-bottom: 16px;
}
.textimonials-slider-box i {
  color: #f1ad42;
}
.textimonials-slider-box p {
  font-size: 14px;
  color: #6a7181;
  margin-bottom: 24px;
}
.textimonials-slider-box h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.textimonials-slider-box .user-desig {
  font-size: 12px;
  color: #6a7181;
}
/* get in touch */
.get-in-touch {
  padding: 50px 0;
  background-color: #eff0f3;
}
.get-in-head.cmn-head {
  text-align: left;
  margin-bottom: 30px;
}
.get-in-head.cmn-head p {
  margin: 0;
  max-width: 100%;
}
.get-in-row-box {
  margin: 0 200px;
}
.get-in-touch .contact-box li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.get-in-touch .contact-box li a{
  font-size: 14px;
  color: #6a7181;
}
.get-in-touch .contact-box li i {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #d8e3ee;
  text-align: center;
  align-content: center;
  font-size: 18px;
  border-radius: 10px;
  color: hsl(210.63deg 86.36% 43.14%);
}
.get-in-touch .contact-box li span {
  font-size: 14px;
  color: #6a7181;
}
.get-in-touch .form-box {
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
}
.get-in-touch .form-group {
  margin-bottom: 20px;
}
.get-in-touch .btn-group {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.get-in-touch .btn-group input{
  background: none;
  color: #fff;
  text-transform: capitalize;
  width: 100%;
}
.get-in-touch .text-group {
  color: #6a7181;
  font-size: 12px;
}
.form-control:focus {
  box-shadow: none;
}
.form-control {
  background-color: hsl(220 20% 97%);
}
.form-control::placeholder {
  font-size: 14px;
}
.get-in-touch label {
  font-size: 14px;
}
.get-in-touch textarea {
  min-height: 100px;
}
/* footer */
.footer {
  padding: 20px 0;
}
.footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 700;
  
}
.footer-logo a{
  color: #000;
}
.footer-logo span {
  color: #0b6bcb;
}
.footer-list li a {
  text-transform: capitalize;
  color: hsl(220 10% 46%);
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-list li a:hover {
  color: #0b6bcb;
}
.footer .copyRight {
  color: hsl(220 10% 46%);
  font-size: 14px;
}
.tc-response.tc-sent{
  color: #219559;
  text-align: center;
}
/* responsive */
@media (max-width: 991px) {
  .banner-head h1 {
    max-width: 100%;
    font-size: 40px;
  }
  .banner-head p {
    max-width: 100%;
  }
  .stats-wrapper {
    max-width: 80%;
  }
  .banner {
    min-height: auto;
  }
  .why-choose-row-box,
  .textimonials-slider,
  .get-in-row-box {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .footer .footer-row {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .cmn-head p {
    max-width: 100%;
    margin: 0;
  }
  .cmn-head h2 {
    font-size: 26px;
  }
  .stats-wrapper {
    max-width: 100%;
  }
  .banner-head p {
    font-size: 16px;
  }
  .nav-item .desk-btn {
    display: none;
  }
  .header .mob-btn {
    display: block;
  }
  .navbar-nav {
    align-items: flex-start !important;
  }
  .navbar-nav .nav-link {
    font-size: 20px;
    padding: 15px 0 !important;
  }
}
@media (max-width: 480px) {
  .btn-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .banner-head h1 {
    font-size: 24px;
  }
  .cmn-head h2 {
    font-size: 24px;
  }
  .header .mob-btn {
    display: none;
  }
  .offcanvas {
    width: 70% !important;
  }
}
