:root {
  --color-primary: #0073e6;
  --color-text-dark: #1d2530;
  --color-text-light: #6c7c93;
  --color-white: #ffffff;
  --color-border: #dee6ed;
  --color-background-light: rgba(241, 245, 249, 0.5);
  --color-background-light-solid: #f1f5f9;
  --gradient-primary: linear-gradient(90deg, #0073e6 0%, #13b6ec 100%);
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI Symbol', sans-serif;
  background-color: var(--color-white);
  color: var(--color-text-dark);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}


/* CSS for section section:Hero */
.hero-section {
  position: relative;
  color: var(--color-text-dark);
  padding: 115px 0 0;
  background-image: url('images/hero-banner.png');
  background-repeat: no-repeat;
  height: 750px;
  background-color: #F7F9FB;
  /* 	background-color: #f2f2f2; light gray */
}

.hero-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  opacity: 90%
}

.hero-image-right {
  width: 70%;
}

.hero-background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 80%, rgba(255, 255, 255, 0) 100%);
}

.hero-container {
  padding-left: 110px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 768px;

}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(0, 116, 230, 0.20);
  border-radius: 9999px;
  font-size: 14px;
  color: #ffffff;
  border: 1px solid #fff;
}

.pulsating-dot-container {
  position: relative;
  width: 8px;
  height: 8px;
}

.pulsating-dot, .pulsating-dot-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

.pulsating-dot-outer {
  opacity: 0.75;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0.75;
  }
}

.hero-content h1 {
  font-size: 47px;
  line-height: 1;
  letter-spacing: -1.8px;
  font-weight: 400;
  color: #000;
  text-align: left;
}

.gradient-text {
  background: #79b6ff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
}

.hero-content p {
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  max-width: 615px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  position: relative;
  z-index: 10;
}

.container-section {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: 50%;
  transform: translateX(-30%);
  transition: transform 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  box-sizing: border-box;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0px 6px 8px -4px rgba(0, 0, 0, 0.1), 0px 12px 17px -3px rgba(0, 0, 0, 0.1);
}

.btn-start .btn-primary:hover+.container-section {
  transform: translateX(-30%) translateY(-6px);
}


.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid #ffffff;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.btn-secondary:hover {
  /* background-color: rgba(255, 255, 255, 0.8); */
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(222, 230, 237, 0.5);
  max-width: 768px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  color: blue;
}

.stat-item h3 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}

.stat-item p {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-light);
}

/* CSS for section section:About Us */
.about-us-section {
  background-color: #fff;
  padding: 80px 0;
}

.about-us-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  max-width: 900px;
}

.about-us-content h2 {
  font-size: 40px;
  line-height: 42px;
  font-weight: 400;
  color: #1D2530;
  margin-bottom: 24px;
}

.about-us-content p {
  font-size: 17px;
  line-height: 28px;
  color: #535353;
  max-width: 800px;
  margin-bottom: 12px;
  text-align: justify;
}

/* CSS for section section:Features */
.features-section {
  background-color: #fff;
  padding: 80px 0;
}

.features-section .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.features-header h2 {
  font-size: 40px;
  line-height: 42px;
  font-weight: 400;
  color: #1D2530;
}

.features-header p {
  font-size: 18px;
  line-height: 28px;
  color: #6C7C93;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  /* (4092-3633.34) - 434.66 = 24 */
}

.feature-card {
  background-color: var(--color-white);
  border: 1px solid rgba(222, 230, 237, 0.5);
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.feature-card:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.feature-card:hover h3 {
  color: #2B7FFF;
}

.feature-icon-wrapper {
  width: 63px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EFF6FF;
  border-radius: 10px;
  margin-bottom: 0;
}

.feature-card h3 {
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
  color: #09090B;
}

.feature-card p {
  font-size: 15px;
  line-height: 24px;
  color: #71717B;
  text-align: justify;
}

/* CSS for section section:WhyChoose */
.why-choose-section {
  padding: 80px 0;
}

.why-choose-container {
  display: flex;
  align-items: center;
  gap: 48px;
  background-image: url(images/map-img.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-color: #EFF7FF;
  padding: 45px 100px;
}

.why-choose-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 652px;
  border-bottom: 1px solid #C9E1F9;
  padding-bottom: 40px;
}

.why-choose-content h2 {
  font-size: 40px;
  line-height: 42px;
  font-weight: 400;
  color: #1D2530;
}

.why-choose-content>p {
  font-size: 16px;
  line-height: 24px;
  color: #535353;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 28px;
}

.benefits-list img {
  width: 24px;
  height: 24px;
}

.stats-card-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.stats-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.vertical-line {
  width: 1px;
  background: #C9E1F9;
  margin: 0 22px;
  height: 48px;
}

.stats-card .stats-content h3 {
  font-family: 'Inter';
  font-size: 26px;
  line-height: 28px;
  font-weight: 600;
  color: #808080;
  margin-bottom: 5px;
}

.stats-card .stats-content p {
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.why-choose-left-sec {
  position: relative;
}

.blue-box {
  border-radius: 15px;
  position: absolute;
  right: -12px;
  bottom: -12px;
  border: 8px solid #EFF7FF;
}

.blue-box p {
  background-color: #0073E6;
  width: 201px;
  height: 105px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animate-section .inner-animate {
  display: flex;
  gap: 10px;
}

.animate-section .inner-animate .left {
  animation: moveLeft 3s linear infinite alternate;
}

.animate-section .inner-animate .right {
  animation: moveRight 3s linear infinite alternate;
}

.animate-section {
  position: relative;
}

.blue-line-left {
  border-bottom: 1px dashed #0073E6;
  width: 48px;
  position: absolute;
  bottom: 12px;
  left: -26px;
  /* right: 0; */
}

.blue-line-right {
  border-bottom: 1px dashed #0073E6;
  width: 48px;
  position: absolute;
  bottom: 12px;
  right: -26px;
  /* right: 0; */
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(45px);
    opacity: 1;
  }
}

@keyframes moveLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-45px);
    opacity: 1;
  }
}


.service-section {
  padding: 80px 0;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-content h2 {
  font-size: 14px;
  line-height: 42px;
  color: #1D2530;
  font-weight: 400;
}

.service-content h3 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  color: #1D2530;
  text-align: center;
}

.service-content h3 span {
  color: #0073E6;
}

.service-name-sec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 55px;
}

.service-box {
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 3.7, 0.25);
  padding: 30px 18px;
  position: relative;
}

.service-box:hover .service-icon .service-img {
  background: #0073E6;
  transform: rotateY(180deg);
}

.service-box:hover .service-icon .service-img img {
  transform: rotate(0deg);
}

.service-box h4 {
  font-size: 17px;
  line-height: 28px;
  color: #000;
  margin-bottom: 12px;
  font-weight: 400;
}

.service-box p {
  font-size: 14px;
  line-height: 20px;
  color: #5B5B5B;
  margin-bottom: 0;
  font-weight: 400;
  /* max-width: 272px; */
  text-align: justify;
}

.service-box .service-icon {
  position: absolute;
  right: 0;
}

.service-box .service-icon .service-img {
  width: 42px;
  height: 42px;
  background: #808080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
  transition: background 0.4s ease, transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

/* .service-box .service-icon .service-img img {
  transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
  width: 30px;
  height: 30px;
} */

.service-box .service-icon {
  position: absolute;
  right: -3px;
  bottom: 0;
  border-radius: 50%;
  /* border: 10px solid #fff; */
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.35), inset 0 -3px 6px rgba(255, 255, 255, 0.25);
}

.curve {
  background: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  right: -12px;
  box-shadow: inset 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
  bottom: -10px;
  /* z-index: -1; */
}

/* CSS for section section:CTA */
.cta-section {
  padding: 60px 0;
  background: #E7F6FD;
}

a.btn.btn-demo {
  border: 1px solid #DEE6ED;
}

.cta-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 768px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.cta-card p {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-text-light);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.cta-note {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-light) !important;
}

/* CSS for section section:Footer */
.footer-section {
  background-color: var(--color-background-light);
  border-top: 1px solid var(--color-border);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 33px 42px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-col {
  display: flex;
  gap: 16px;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}

.footer-col .about-col {
  gap: 26px;
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-col p {
  font-size: 16px;
  line-height: 23px;
  color: #434F60;
  max-width: 290px;
}

.footer-col h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.footer-col nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
}

.footer-col nav a {
  font-size: 16px;
  line-height: 22px;
  color: #1E1E1E;
  transition: color 0.2s;
  font-weight: 500;
}

.footer-col nav a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--color-text-light);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a:hover {
  text-decoration: underline;
}

.social-media-sec {
  display: flex;
  gap: 15px;
  justify-content: end;
  margin-bottom: 8px;
}

.social-icon {
  background-color: rgba(0, 115, 230, 0.20);
  width: 22.5px;
  height: 22.5px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header {
  width: 100%;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #e6e6e6;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 150px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.main-nav ul li a {
  font-family: 'Inter';
  font-size: 16px;
  line-height: 20px;
  color: #1e1e1e;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}

.main-nav ul li a:hover {
  color: #0057ff;
}

.btn-small {
  padding: 10px 14px;
  font-size: 14px;
}

/* Mobile Icon */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 3px;
  background: #222;
  border-radius: 20px;
}

/* Logo Styling */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  width: auto;
  height: 70px;
  /* Fixed height for consistent sizing */
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-container {
    flex-direction: column;
  }

  .why-choose-content, .stats-card-wrapper {
    max-width: 100%;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }

  .footer-col.about-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {

  .nav-container {
    padding: 16px 20px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .main-nav li {
    border-bottom: 1px solid #eee;
  }

  .main-nav a {
    padding: 16px 20px;
    display: block;
  }

  .btn-primary.btn-small {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* ACTIVE MENU */
  .nav-container.active .main-nav {
    max-height: 400px;
  }

  /* HAMBURGER ANIMATION */
  .nav-container.active .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-container.active .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-container.active .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding: 50px 0;
    height: 510px;
  }

  .hero-background-gradient {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 0.8) 100%);
  }

  .hero-container {
    padding-left: 0;
  }

  .container-section {
    display: none;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 45px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .features-section, .about-us-section {
    padding: 50px 0;
  }

  .features-header h2, .why-choose-content h2, .service-content h3, .about-us-content h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .about-us-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card h3 {
    font-size: 20px;
    line-height: 25px;
  }

  .why-choose-section, .service-section {
    padding: 0 0 50px;
  }

  .why-choose-content {
    gap: 15px;
    padding-bottom: 25px;
  }

  .benefits-list li {
    font-size: 16px;
    line-height: 23px;
  }

  .why-choose-left-sec img, .why-choose-right-sec {
    width: 100%;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-card h2 {
    font-size: 25px;
    line-height: 33px;
  }

  .cta-card p {
    font-size: 16px;
    line-height: 26px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .service-name-sec {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-col {
    flex-direction: column;
    gap: 20px;
  }

  .service-box {
    width: calc(100% - 40px);
  }

  .stats-content {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .stats-card-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 25px;
  }

  .stats-card .stats-content h3, .service-box h4 {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 0;
  }

  .gradient-text {
    background: #79b6ff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  .vertical-line {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 16px;
    text-align: center;
  }

  .footer-col nav a {
    font-size: 14px;
  }

  .footer-col nav ul li {
    text-align: center;
  }

  .social-media-sec {
    justify-content: center;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 8px;
  }

  .footer-col nav ul {
    gap: 20px;
  }
}

/* Feature Item Styles */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item img {
  width: 22px;
  height: 22px;
  /* margin-top: 4px; */
  margin-bottom: 13px;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text .title {
  font-weight: 600;
}

.feature-text .desc {
  font-size: 12px;
  font-style: italic;
  margin-top: 4px;
  line-height: 1.5;
}
