:root {
  --font-family-Space: "Space Grotesk", serif;
  --font-family-Outfit: "Outfit", sans-serif;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
      margin: 0;
      padding: 0;
}


.top-header {

  background-color: #06306d;
  font-size: 14px;
  color: #333;
}

.mission-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0px 20px;
  text-align: center;
  flex-wrap: wrap;
  padding-top: 11px;
}
.mission-bar strong{
  font-family: var(--font-family-Space);
  color: #2b4d42;
  font-size: 15px;
}

.mission-bar .mission-text {
font-weight: 600;
    font-size: 18px;
  color: #182f27;
  font-family: var(--font-family-Outfit);
}
.mission-bar .icon {
  font-size: 16px;
  color: #7fb800;
}

.join-link {
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 18px;
    font-family: var(--font-family-Space);
    padding-left: 15px;
}

.join-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-row .contact-item-colour{
  color: #ffffff !important;
  font-weight: 400;
}

.contact-item {
  flex: 1;
  text-align: left;
  padding: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 18px;
    font-weight: 500;
    font-family: var(--font-family-Outfit);
}

.contact-item:last-child {
  border-right: none;
}

.icon {
  color: #7fb800;
  font-size: 16px;
}

.social span {
  font-weight: 600;
}

@media (max-width: 768px) {
  .mission-bar, .social {
    display: none;
  }

  .contact-row {
    flex-direction: column;
    align-items: center; /* ✅ Center the items horizontally */
    border-top: none;
  }

  .contact-item {
    flex: unset;
    border-right: none;
    justify-content: center; /* ✅ Center content inside each item */
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 10px 15px;
    text-align: center;
     border-bottom: none; 
  }

  .contact-item:nth-child(1),
  .contact-item:nth-child(2),
  .contact-item:nth-child(3) {
    display: flex;
    margin-bottom: 0;
  }

  .contact-item:nth-child(n+4) {
    display: none;
  }
}




/* Second Header and Banner */
.smart-header {
  background-color: #d1d3d7;
  color: #3a3e91;
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1001; /* Increased from 1000 to 1001 */
  transition: all 0.4s ease;
}
        .smart-header.scrolled {
            background-color: #002922;
            backdrop-filter: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .smart-container {
            max-width: 1500px;
            margin: auto;
            padding: 10px 0px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0px;
            justify-content: space-between;
        }
        .smart-logo img {
            height:68px;
        }
        .smart-nav {
            display: flex;
            gap: 20px;
            flex: 1;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 9999;
        }
        .smart-nav a {
            text-decoration: none;
            color: #3a3e91;
            font-weight: 700;
            font-size: 20px;
            position: relative;
            font-family: var(--font-family-Space);
        }
        .smart-nav a:hover {
            color: #c5e96b;
        }


        .dropdown-wrapper {
  position: relative;
  z-index: 10000;
}

.dropdown-toggle {
  cursor: pointer;
  position: relative;

}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  min-width: 220px;
  z-index: 10001;
}

.dropdown-menu-custom a {
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  display: block;
}

.dropdown-menu-custom a:hover {
  background-color: #f2f2f2;
}

/* Show dropdown on hover (desktop) */
.dropdown-wrapper:hover .dropdown-menu-custom {
  display: flex;
}

/* Optional: responsive support for mobile tap */
@media (max-width: 991px) {
  .dropdown-menu-custom {
    position: static;
    box-shadow: none;
    display: block;
  }
}

        .smart-search {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.01);
  
            padding: 8px 16px;
            transition: all 0.3s ease;
        }
        .smart-header.scrolled .smart-search {
            opacity: 0;
            width: 0;
            padding: 0;
            overflow: hidden;
        }
        .smart-search input {
            background: transparent;
            border: none;
            color: white;
            outline: none;
            font-size: 18px;
            font-family: var(--font-family-Outfit);
        }
        .smart-started {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        .chat-icon-circle {
            width: 52px;
            height: 52px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #002922;
        }
        .get-started-text {
            display: flex;
            flex-direction: column;
            font-weight: 600;
            font-size: 18px;
            font-family: var(--font-family-Space);
            margin-right: 10px;
        }
        .smart-header.scrolled .get-started-text {
            background: linear-gradient(to bottom, #002B22, #A3B993);

            padding: 8px 20px;
            border-radius: 30px;
            color: white;
            flex-direction: row;
            align-items: center;
        }
        .smart-header.scrolled .chat-icon-circle {
    display: none;
}
.smart-header.scrolled .smart-flag{
    display: none;
}
.smart-header.scrolled .smart-line{
    display: none;
}
        .zigzag-arrow {
            width: 90px;
            height: 12px;
            background-image: url("arrowUp.png");
            background-repeat: no-repeat;
            background-size: contain;
            margin-top: 5px;
        }
        .smart-header.scrolled .zigzag-arrow {
            display: none;
        }
        .smart-line {
            width: 1px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            margin: 0 20px;
        }
        .smart-flag {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
        }
.smart-menu {
    width: 48px;
    height: 48px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: white;
}

.menu_bar{
    width: 22px;
    height: 22px;
}


@media (max-width: 920px) {
  .smart-nav,
  .smart-search,
  .smart-started {
    display: none;
  }
  .smart-container {
    justify-content: center;
    gap: 24px;
  }
  .smart-logo img{
    height: 50px;
  }
}
@media (max-width: 768px) {
  .smart-nav,
  .smart-search,
  .smart-started {
    display: none;
  }
  .smart-container {
    justify-content: center;
    gap: 24px;
  }
  .smart-logo img{
    height: 50px;
  }
}


@media (max-width: 920px) {
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 920px) {
  .smart-nav,
  .smart-started {
    display: none;
  }
}
/* New UPDATE  */
/* Hide mobile nav by default */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #002922;
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
  width: 100%;
  z-index: 1000;
}

.mobile-nav a {
  color: white;
  padding: 10px 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav a:last-child {
  border-bottom: none;
}

/* Hamburger Icon Style */
.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}


@media (max-width: 920px) {
  .mobile-menu-toggle {
    display: block;
    margin-top: 10px;
  }

  /* Show menu when active */
  .mobile-nav.active {
    display: none;
  }
}
.logo-mobile-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 920x) {
  .logo-mobile-wrap {
      order: 1;
  }

  .smart-logo {
    margin-bottom: 0px;
  }

  .mobile-menu-toggle {
    margin-bottom: 10px;
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #002922;
    padding: 15px 20px;
    margin-top: 5px;
    border-radius: 10px;
    width: 100%;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }
}




@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    margin-top: 10px;
  }

  /* Show menu when active */
  .mobile-nav.active {
    display: flex;
  }
}
.logo-mobile-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .logo-mobile-wrap {
      order: 1;
  }

  .smart-logo {
    margin-bottom: 0px;
    order: 1;
  }

  .mobile-menu-toggle {
    margin-bottom: 10px;
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #002922;
    padding: 15px 20px;
    margin-top: 5px;
    border-radius: 10px;
    width: 100%;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }
}

/* Smart Menu Popup Modal Start  */
.smart-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: flex;
  justify-content: center; /* 👈 Center the popup again */
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.smart-popup.active {
  visibility: visible;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  inset: 0;
}

/* Slide in from left to center */
.popup-content {
  background-color: #03342b;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 40px;
  border-radius: 20px;
  max-width: 1300px;
  width: 100%;
  max-height: 933px;
  position: relative;
  display: flex;
  flex-direction: column;
  color: white;
  font-family: "Space Grotesk", serif;
  overflow: auto;

  /* 👉 Start from left */
  transform: translateX(-100vw);
  transition: transform 0.4s ease;
}

.smart-popup.active .popup-content {
  transform: translateX(0); /* Slide to center */
}

/* Optional: make close button stay top right */
.popup-close-global {
  position: absolute;
  top: 20px;
  right: 20px;
  background: red;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 100000;
}


.popup-grid {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.popup-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
      max-width: 522px;
    max-height: 455px;
}

.popup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  margin-left: 25px;
}

.popup-info h2 {
  font-size: 54px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--font-family-Space);
}
.popup_para{
  font-size: 20px;
  font-family: var(--font-family-Outfit);
}
.popup-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.contact-block {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 50px;
}

.icon-circle-outline {
  width:50px;
  height: 50px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid #c5e96b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle-outline i {
  color: #c5e96b;
  font-size: 28px;
}

.contact-block_strong{
  font-size: 18px;
  font-family: var(--font-family-Space);
}
.contact-block_span{
  font-size: 18px;
  font-family: var(--font-family-Outfit);
}

.popup-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-family: var(--font-family-Outfit);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-circle {
  width: 40px;
  height: 40px;
  border: 2px solid #1C443C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-circle:hover {
  background-color: #1C443C;
}

.social-circle i {
  font-size: 18px;
  color: #fff;
}
.social-circle:hover {
  background:  #c5e96b;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 920px) {
  .popup-content {
    flex-direction: column;
    padding: 25px 20px;
    border-radius: 16px;
    max-height: 90vh;
    max-width: 95%;
    overflow-y: auto;
  }

  .popup-grid {
    flex-direction: column;
    gap: 20px;
  }

  .popup-image {
    max-width: 100%;
    max-height: auto;
    width: 100%;
    height: auto;
  }

  .popup-info {
    margin-left: 0;
    text-align: left;
    font-size: 16px;
  }

  .popup-info h2 {
    font-size: 36px;
  }

  .popup_para {
    font-size: 16px;
  }

  .popup-contact {
    grid-template-columns: 1fr;
  }

  .contact-block {
    gap: 10px;
  }

  .contact-block_strong,
  .contact-block_span {
    font-size: 16px;
  }

  .popup-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    font-size: 16px;
  }

  .social-icons {
    gap: 8px;
  }

  .popup-close-global {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 16px;
  }
}




@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    padding: 25px 20px;
    border-radius: 16px;
    max-height: 90vh;
    max-width: 95%;
    overflow-y: auto;
  }

  .popup-grid {
    flex-direction: column;
    gap: 20px;
  }

  .popup-image {
    max-width: 100%;
    max-height: auto;
    width: 100%;
    height: auto;
  }

  .popup-info {
    margin-left: 0;
    text-align: left;
    font-size: 16px;
  }

  .popup-info h2 {
    font-size: 36px;
  }

  .popup_para {
    font-size: 16px;
  }

  .popup-contact {
    grid-template-columns: 1fr;
  }

  .contact-block {
    gap: 10px;
  }

  .contact-block_strong,
  .contact-block_span {
    font-size: 16px;
  }

  .popup-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    font-size: 16px;
  }

  .social-icons {
    gap: 8px;
  }

  .popup-close-global {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 16px;
  }
}


/* Smart Menu Popup Modal End  */







/* Hero Section */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}
.swiper-slide {
  overflow: visible !important; /* ✅ allow border/shadow to show */
}
.hero-slider .swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.hero-content {
  padding-left: 0px;
  color: #fff;
  max-width: 700px;
  z-index: 2;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent black overlay */
  z-index: 1;
}
/* Overlay if needed */
.hero-slide::before,
.overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* dim overlay */
  z-index: 1;
}

/* Hero Content Wrapper */
.container {
  max-width: 1200px;
  margin: 0 auto; /* ✅ ye auto center karega */
  padding: 0 20px; /* ✅ thoda spacing sides me */
  width: 100%;
}

.hero-container{
    height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

.btn-tagline {
  font-size: 16px;
  background: #C5E96B;
  color: #182F27;
  display: inline-block;
  font-weight: 600;
  padding: 7px 24px 6px 25px;
  border-radius: 50px 50px 50px 50px;
  font-family: var(--font-family-Space);
  margin-bottom: 25px;
}

.hero-content h1 {
      font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
  margin-bottom: 20px;
  font-family: var(--font-family-Space);
}
.text-font_adjust{
  font-size: 60px;
  font-weight: 100;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: var(--font-family-Outfit);
}

.btn-services {
  background: white;
  color: #182F27;
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  font-family: var(--font-family-Space);
}
.btn-services:hover{
  background-color: #C5E96B;
  color: #182F27;
}

/* Swiper Pagination Dots */
.swiper-pagination {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
      margin-bottom: 275px;
    margin-left: 60px;
  color: #fff;
}

.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.4); /* soft white */
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  border: none;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;

  box-shadow: 0 0 0 6px rgba(198, 233, 108, 0.3); /* outer circle ring */
  
}

/* Animations */
.animate-top {
  animation: slideTop 1s ease forwards;
}
.animate-bottom {
  animation: slideBottom 1s ease forwards;
}
.animate-right {
  animation: slideRight 1s ease forwards;
}
.animate-up {
  animation: slideUp 1s ease forwards;
}



@keyframes slideTop {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideBottom {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 992px) {
  .hero-content {
    padding-left: 30px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .text-font_adjust {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn-services {
    padding: 8px 16px;
    font-size: 14px;
  }

  .btn-tagline {
    font-size: 12px;
    padding: 6px 20px;
  }

  .swiper-pagination {
    left: 10px;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .text-font_adjust {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .swiper-pagination {
    display: none;
  }
}




/* About us section start */
expert-col-1-2 {
  width: calc(100% * 2 / 3); /* 2 of 3 columns */
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Optional inner-row structure */
.inner-row {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .expert-col-1-2,
  .about-col {
    width: 100%;
  }

  .inner-row {
    flex-direction: column;
  }
}


.about-section {
  padding: 80px 0;
  color: #fff;
  font-family: "Space Grotesk", serif;
}

.about-container {
  max-width: 1335px;
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;

}

.left {
display: flex;
    justify-content: center;
    margin-top: 20px;
}

.about-tag {
  display: inline-block;
  padding: 4px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #002922;
  background-color: #fff;
  border-radius: 30px;
  background-image: 
    linear-gradient(to right, rgba(0,0,0,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-family: var(--font-family-Space);
}

.about-heading {
  font-size: 54px;
  font-weight: 700;
  color: #002922;
}

.about-buttons {
  display: flex;
  gap: 20px;
  padding: 10px 0px;
  font-size: 18px;
  width: 600px;
  height: 70px;
}

.btn-dark {
  background-color: #002922;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  transition: 0.3s;
}

.btn-light {
  background-color: #f7f4eb;
  color: #002922;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  transition: 0.3s;
}


.right {
display: flex;
    justify-content: center;
    margin-top: 15px;
}

.about-subtext {
  font-size: 18px;
  color: #000000;
  font-family: var(--font-family-Outfit);
  margin-left: 51px;
}

.about-highlight {
  font-size: 22px;
  font-weight: 600;
  color: #002922;
 width: 49%;
}
.animate-words span {
  opacity: 0;
  transform: translate(50px, 30px);
  animation: wordEnter 0.6s ease forwards;
  display: inline-block;
  margin-right: 5px; /* Add spacing between words */
}

@keyframes wordEnter {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 1024px) {
  .about-heading {
    font-size: 42px;
    text-align: center;
  }

  .about-subtext {
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
  }

  .left {
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .about-heading {
    font-size: 34px;
  }

  .about-subtext {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .about-heading {
    font-size: 28px;
  }

  .about-subtext {
    font-size: 14px;
  }
}

/*  */
.about-section {
  padding: 50px 0;
  background: #fff;
}
.about-container {
  max-width: 1335px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  margin-top: 50px;
}
.about-row {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 40px;
  margin-top: 10px;
  gap: 20px;
}


/* Award Card */
.award-card {
  background: #f9f8f2;
  border-radius: 20px;
  padding: 40px 20px 16px;
  position: relative;
  text-align: center;
  overflow: hidden;
  font-family: 'Inter', sans-serif; /* ✅ Use correct font */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
    min-height: 314px;
    width: 295px;
    height: 320px;

}

.award-card-second{
    background: #f9f8f2;
  border-radius: 20px;
  padding: 40px 20px 16px;
  position: relative;
  text-align: center;
  overflow: hidden;
  font-family: 'Inter', sans-serif; /* ✅ Use correct font */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
    min-height: 314px;
    width: 295px;
    height: 320px;
    margin-bottom: 15px;
}

.ribbon {
    position: absolute;
    top: 21px;
    right: -37px;
    width: 158px;
    height: 35px;
    background: #002b22;
    color: #fff;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 3;
    letter-spacing: 0.5px;
}

.award-icon-bg {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}

.award-icon-font {
  font-size: 100px;
  color: #002922;
  opacity: 0.06;
}

.award-content {
  position: relative;
  z-index: 2;
  max-width: 220px;
  margin: 0 auto 20px;
  padding-bottom: 10px;
  color: #002b22;
}

.award-icon-img {
  width: 44px; /* ✅ Make it bigger */
  height: 44px;
  object-fit: contain;
  margin-bottom: 10px;
}

.award-content h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-family: var(--font-family-Space);
}

.award-by {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin-top: 50px;
    justify-content: left;
    display: flex;
    text-align: left;
}

.award-year {
    position: absolute;
    right: 10px;
    bottom: 90px;
    transform: rotate(90deg);
    opacity: 0.8;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
    padding-left: 10px;
}

@media (max-width: 768px) {
  .about-container {
    margin-top: 30px;
    padding: 0 15px;
  }

  .about-row {
    flex-direction: column;
    gap: 25px;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .award-card {
    width: 100%;
    min-height: auto;
    padding: 30px 20px 20px;
  }

  .ribbon {
    top: 16px;
    right: -46px;
    width: 140px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }

  .award-icon-bg {
    top: 40px;
  }

  .award-icon-font {
    font-size: 80px;
  }

  .award-icon-img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .award-content {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .award-content h4 {
    font-size: 14px;
    line-height: 1.5;
  }

  .award-by {
    font-size: 15px;
    margin-top: 40px;
    text-align: left;
  }

  .award-year {
    bottom: 20px;
    right: 10px;
    font-size: 14px;
    transform: rotate(90deg);
  }
}

/* Testimonial */
.testimonial-box {
    margin-top: 0px;
    padding-top: 25px;
    background: #fff;
    border-radius: 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
    min-height: 407px;
    box-sizing: border-box;
    width: 295px;
    height: 320px;
}
.quote-bg {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  height: 191px;
  background: url('./images/about/quote-1.png') no-repeat center;
  background-size: contain;
  opacity: 0.08;
  z-index: 1;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.testimonial-text {
  font-size: 16px;
  z-index: 2;
  position: relative;
  color: #6b6a66;
  margin: 20px 0;
}

.signature {
  width: 130px;
  margin: 15px auto;
  display: block;
}

.ceo-title {
  font-size: 15px;
  color: #6b6a66;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-family-Outfit);
}


/* Strategy Box */
.strategy-box {
    border: 1px solid #ecebe4;
    border-radius: 15px;
    padding: 24px;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 339px;
    width: 880px;
    height: 328px;
    margin-bottom: 15px;
}
.strategy-box h4 {
  font-size: 32px;
  margin-bottom: 87px;
  color: #1d1d1f;
  font-weight: 600;
}
.strategy-box p {
    font-size: 17px;
    line-height: 26px;
    color: #000000;
    margin: 0px;
    margin-top: -70px;
    font-family: var(--font-family-Outfit);
}


/* Image Box */
.image-box_5 {
  display: flex;
  align-items: stretch;
  flex: 0 0 calc(33.3333% - 13.33px);
  max-width: calc(33.3333% - 13.33px);
  box-sizing: border-box;
  min-height: 420px;
  margin-bottom: 15px;
}



.image-box_4 {
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    width: 100%;
    height: 321px;
}
.img-rounded_4{
    margin-top: 0px;
    width: 879px;
    /* height: 329px; */
    border-radius: 15px;
    object-fit: cover;
    display: block;
    min-height: 375px;
}
.img-rounded {
  min-width: 365px;
  min-height: 420px;
  width: 100%;
  height: 100%;
  max-height: 420px;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

/* US Box */
/* Outer wrapper just for spacing and background color */
.us-box {
  background: #002b22;
  color: #fff;
  border-radius: 16px;
  padding: 25px;
  box-sizing: border-box;
    width: 365px;
    height: 294px;
    min-height: 275px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.us-top, .us-middle {
  display: flex;
  align-items: center;
  gap: 15px;
}

.us-icon, .trust-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.us-top h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #ffffff;
}

.trust-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #cfd8dc;
  line-height: 1.4;
}

.trust-text .year {
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  font-family: var(--font-family-Space);
}
.since{
  font-family: var(--font-family-Outfit);
      font-size: 18px;
    margin-top: 25px;
}
.explore {
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  margin-top: 0px;
  color: #fff;
  margin-left: 10px;
}

/* Force inner text wrapping if needed */
.us-box * {
  word-break: break-word;
  line-height: 1.5;
}

/* Optional: image safety */
.us-box img {
  max-width: 100%;
  height: auto;
  display: block;
}


.expertise-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
}

.expert-col-1 {
  width: 365px;
  margin-right: 15px;
}

.expert-col-2 {
  width: 879px;
  /* margin-right: 28px; */
}

.expert-col-3 {
  width: 295px;
}
@media (max-width: 992px) {
  .expertise-columns {
    flex-direction: column;
    align-items: center;
  }

  .expert-col-1,
  .expert-col-2,
  .expert-col-3 {
    width: 100%;
  }
}



/* Responsive */
@media (max-width: 992px) {
  .about-row {
    flex-direction: column;
    margin-bottom: 24px;
    gap: 0px;
  }
  .award-card,
  .strategy-box,
  .us-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .img-rounded {
    height: auto;
  }
}

@media (max-width: 992px) {
  .about-container {
    padding: 0 15px;
  }

  .about-heading {
    font-size: 36px;
    text-align: center;
  }

@media (max-width: 768px) {
  .right {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-top: 30px;
  }

  .about-buttons {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 12px;
    font-size: 16px;
    align-items: stretch;
  }

  .btn-dark,
  .btn-light {
    width: 100%;
    font-size: 16px;
    padding: 12px 20px;
    text-align: center;
  }

  .about-highlight {
    width: 100%;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
  }

  .about-subtext {
    margin-left: 0;
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
  }

  .animate-words span {
    display: inline-block;
    opacity: 0;
    transform: translate(30px, 20px);
    animation: wordEnter 0.6s ease forwards;
  }
}


  .about-left,
  .about-right {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .about-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .award-card,
  .testimonial-box,
  .strategy-box,
  .us-box {
    width: 100%;
    min-height: auto;
  }

  .strategy-box h4 {
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;
  }

  .strategy-box p {
    font-size: 15px;
    margin-top: -40px;
    text-align: center;
  }

  .image-box_4,
  .image-box_5 {
    width: 100%;
    max-width: 100%;
  }

  .img-rounded,
  .img-rounded_4 {
    max-height: 320px;
    border-radius: 12px;
    margin-top: -11px;
  }

  .us-box {
    padding: 20px;
  }

  .us-top h4 {
    font-size: 15px;
  }

  .explore {
    text-align: center;
  }

  .award-year {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-heading {
    font-size: 28px;
  }

  .about-tag {
    font-size: 12px;
    padding: 4px 15px;
  }

  .btn-dark,
  .btn-light {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .about-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .testimonial-text {
    font-size: 15px;
    padding: 0 10px;
  }

  .strategy-box h4 {
    font-size: 20px;
  }

  .strategy-box p {
    font-size: 14px;
  }

  .about-subtext,
  .about-highlight {
    font-size: 15px;
    margin-left: 0;
    text-align: center;
    font-family: var(--font-family-Outfit);
  }
}

/* New Update Responsive */

@media (max-width: 768px) {
  .about-buttons {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 12px;
  }

  .btn-dark,
  .btn-light {
    width: 100%;
    font-size: 16px;
    padding: 12px 20px;
  }
}

@media (max-width: 768px) {
  .img-rounded_4,
  .img-rounded {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    margin-top: 10px;
  }
}
@media (max-width: 992px) {
  .expert-col-1,
  .expert-col-2,
  .expert-col-3 {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .strategy-box {
    width: 100%;
    padding: 20px;
    min-height: auto;
    height: auto;
  }

  .strategy-box h4 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
  }

  .strategy-box p {
    font-size: 15px;
    margin: 0;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .us-box {
    width: 100%;
    padding: 20px;
  }

  .us-top h4 {
    font-size: 16px;
  }

  .explore {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .testimonial-box,
  .award-card-second {
    width: 100%;
    height: auto;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .image-box_4,
  .image-box_5 {
    width: 100%;
    max-width: 100%;
  }
}

/* NEW UPdate Responsive  */


@media (max-width: 992px) {
  .about-row {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin-top: 30px !important;
    gap: 25px;
  }

  .expert-col-1-2 {
    width: 100% !important;
    display: flex;
    flex-direction: column;
  }

  .strategy-box {
    width: 100% !important;
    height: auto;
    padding: 20px;
    margin-bottom: 20px;
  }

  .strategy-box h4 {
    font-size: 22px;
    text-align: center;
  }

  .strategy-box p {
    font-size: 15px;
    margin-top: 10px;
    text-align: center;
  }

  .inner-row {
    flex-direction: column;
    gap: 20px;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .testimonial-box {
    width: 100% !important;
    height: auto;
    min-height: auto;
  }

  .image-box_4 {
    width: 100% !important;
  }

  .img-rounded_4 {
    width: 100% !important;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    margin-top: 10px;
  }

  .expert-col-1 {
    width: 100% !important;
    margin-top: 20px;
  }

  .image-box_5 {
    width: 100% !important;
    max-width: 100%;
  }

  .img-rounded {
    width: 100% !important;
    height: auto;
    max-height: 420px;
    border-radius: 12px;
  }

  .us-box {
    width: 100% !important;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .strategy-box h4 {
    font-size: 20px;
  }

  .strategy-box p {
    font-size: 14px;
  }

  .img-rounded_4,
  .img-rounded {
    border-radius: 10px;
  }

  .testimonial-box {
    padding: 20px;
  }

  .us-box {
    padding: 15px;
  }

  .about-row {
    margin-top: 20px !important;
    gap: 20px;
  }
}


/* About END  */

/* Business Section Start  */

.business-stats-wrapper {
  background-color: #FAFAF5;
  font-family: 'Inter', sans-serif;
  padding: 60px 0;
  width: 100%;
  margin: 0;
}

.business-stats-section  {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
}


    .left-chart {
      flex: 1;
      min-width: 400px;
      display: flex;
      justify-content: center;
      font-weight: 600;
    font-size: 11px;
    }

.chart-label{
font-size: 14px;
 font-family: var(--font-family-Space);
    baseline-shift: 35px;
    font-weight: 600;
        letter-spacing: -1.6px;
}


.ver_line{
  width: 1px;
  height: 550px;
  background: #ddd;
  margin: 0 20px;
}


.right-content {
  padding: 0px 0px;
  max-width: 637px;

}

.tag {
  display: inline-block;
  padding: 4px 23px;
  font-size: 16px;
  font-weight: 600;
  color: #002922;
  background-color: #f9f8f2;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-image: 
    linear-gradient(to right, rgba(0,0,0,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  font-family: var(--font-family-Space);
  margin-bottom: 10px;
}

.heading {
  font-size: 53px;
  font-weight: 500;
  color: #1d352c;
  margin: 30px 0;
  line-height: 1.2;
  font-family: var(--font-family-Space);
}
.animated-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.6s ease forwards;
}

.animated-heading span:nth-child(1) { animation-delay: 0.1s; }
.animated-heading span:nth-child(2) { animation-delay: 0.3s; }
.animated-heading span:nth-child(3) { animation-delay: 0.5s; }
.animated-heading span:nth-child(4) { animation-delay: 0.7s; }
.animated-heading span:nth-child(5) { animation-delay: 0.9s; }

@keyframes riseUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Wrapper */
.custom-growth-block {
  background: #fcfcf6;
  font-family: 'Outfit', sans-serif;
  padding: 0px 20px;
}

.custom-growth-row {
  display: flex;
  align-items: center;
  position: relative;
  padding: 20px 0;
}

.custom-left,
.custom-right {
  flex: 1;
  display: flex;
  align-items: center;
}
.custom-right-two{
  margin-right: 20px;
}

.custom-left {
  gap: 20px;
}

.custom-icon {
  width: 70px;
  height: 70px;
  background-color: #d3fa6f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.custom-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.custom-text {
  font-size: 18px;
  color: #6b6a66;
  line-height: 1.5;
  width: 250px;
  font-family: var(--font-family-Outfit);
}

.custom-right {
  justify-content: flex-end;
  font-size: 54px;
  font-weight: 600;
  color: #0e1e19;
  font-family: var(--font-family-Space);
}

.custom-divider-horizontal {
  height: 1px;
  background-color: #e4e4e4;
  width: 100%;
}

.custom-divider-vertical {
  width: 1px;
  height: 100%;
  background-color: #e4e4e4;
}

@media (max-width: 992px) {
  .left-chart {
    min-width: 280px;
  }

  .chart-label {
    font-size: 12px;
    letter-spacing: -1.2px;
  }

  .percent-text {
    font-size: 16px !important;
  }

  .circle-label {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .business-stats-wrapper {
    padding: 40px 10px;
  }

  .left-chart {
    width: 100%;
    justify-content: center;
    padding: 0 10px;
  }

  .left-chart svg {
    width: 100%;
    height: auto;
  }

  .chart-label {
    font-size: 11px;
    letter-spacing: -1px;
  }

  .percent-text {
    font-size: 14px !important;
  }

  .circle-label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .chart-label {
    font-size: 10px;
    letter-spacing: -0.8px;
  }

  .percent-text {
    font-size: 12px !important;
  }

  .circle-label {
    font-size: 10px;
  }

  .left-chart svg {
    width: 90%;
  }
}
/* 992px and below: tablets */
@media (max-width: 992px) {
  .heading {
    font-size: 42px;
  }

  .right-content {
    padding: 0 15px;
  }

  .custom-growth-row {
    padding: 16px 0;
  }

  .custom-text {
    font-size: 16px;
    width: auto;
  }

  .custom-right {
    font-size: 42px;
  }

  .custom-icon {
    width: 55px;
    height: 55px;
  }

  .custom-icon img {
    width: 24px;
    height: 24px;
  }
}

/* 768px and below: mobiles */
@media (max-width: 768px) {
  .ver_line {
    display: none; /* hide vertical divider on small screens */
  }

  .right-content {
    padding: 0 10px;
    max-width: 100%;
  }

  .tag {
    font-size: 14px;
    padding: 4px 18px;
  }

  .heading {
    font-size: 34px;
    line-height: 1.3;
    margin: 20px 0;
  }

  .custom-growth-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
  }

  .custom-left {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
    width: 100%;
  }

  .custom-right {
    justify-content: flex-start;
    font-size: 32px;
    width: 100%;
    margin-bottom: 10px;
  }

  .custom-icon {
    width: 45px;
    height: 45px;
  }

  .custom-icon img {
    width: 20px;
    height: 20px;
  }

  .custom-text {
    font-size: 15px;
    width: auto;
    line-height: 1.4;
  }

  .custom-divider-vertical {
    display: none;
  }

  .custom-divider-horizontal {
    margin: 15px 0;
  }

  .custom-growth-block {
    padding: 0 12px;
  }
}

/* 480px and below: extra small screens */
@media (max-width: 480px) {
  .tag {
    font-size: 13px;
    padding: 4px 14px;
  }

  .heading {
    font-size: 28px;
    margin: 15px 0;
  }

  .custom-text {
    font-size: 14px;
  }

  .custom-right {
    font-size: 28px;
  }

  .custom-icon {
    width: 40px;
    height: 40px;
  }

  .custom-icon img {
    width: 18px;
    height: 18px;
  }
}

/*  Business Section Start */


/* Tailored consulting section start  */

.services-section {
    display: flex;
    justify-content: center;
    padding: 80px 200px;
    background-color: #f9f8f3;
    padding-bottom: 14%;
}

.container_service{
  max-width: 1200px;
}

.left-side {
    width: 45%;
    text-align: left;
    padding-left: 79px;
}

.services-label  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a3028;
    padding: 16px 19px;
    border-radius: 999px;
    border: 1px solid #e0e0d8;
    background-color: #ffffff;
    font-family: var(--font-family-Space);

  /* Grid lines (both directions) */
  background-image:
    repeating-linear-gradient(
      to right,
      transparent,
      transparent 14px,
      rgba(0, 0, 0, 0.05) 15px,
      transparent 16px
    ),
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 14px,
      rgba(0, 0, 0, 0.05) 15px,
      transparent 16px
    );
  background-size: 100% 100%;
  background-repeat: no-repeat;

  height: 28px;
    line-height: 4;
}


.left-side h1 {
   font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 9px;
    font-family: var(--font-family-Space);
}
.animated-h1 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseWord 0.6s ease forwards;
}

.animated-h1 span:nth-child(1) { animation-delay: 0.1s; }
.animated-h1 span:nth-child(2) { animation-delay: 0.3s; }
.animated-h1 span:nth-child(3) { animation-delay: 0.5s; }
.animated-h1 span:nth-child(4) { animation-delay: 0.7s; }

@keyframes riseWord {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.description {
    font-size: 18px;
    color: #6c6c6c;
    margin-bottom: 30px;
    font-family: var(--font-family-Outfit);
}

.all-services-btn {
    background-color: #002f18;
    color: white;
    border: none;
    padding: 14px 36px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 40px;
    font-weight: 100;
    font-family: var(--font-family-Space);
}

.all-services-btn:hover {
    background-color: #b2d45b; /* popat light green */
    color: #002f18;
    transition: 0.7s;
}

.circle-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 6px;
}

.circle-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.circle-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    margin-top: -11px;
    margin-left: -5px;
    font-family: var(--font-family-Space);
}

.circle-text p {
    font-size: 18px;
    color: #6c6c6c;
    margin-bottom: 10px;
    margin-left: -5px;
    line-height: 1.6;
    font-family: var(--font-family-Outfit);
}

.circle-link {
    font-size: 18px;
    color: #002f18;
    text-decoration: none;
    font-weight: 600;
    margin-left: 3px;
    font-family: var(--font-family-Space);
}

.right-side {
    width: 52%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.service-card {
    height: 60%;
    width: 48%;
    background-color: #f8f7f2;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
    min-height: 180px;

    /* background-image: url('./images/TailoredImg/service-home-1-ime.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
    background-color: #fff;
    border: 1px solid #eee;
}
.service-card1{
  background-image: url('./images/TailoredImg/eclassroom.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
}
.service-card2{
  background-image: url('./images/TailoredImg/meetingroom.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
}
.service-card3{
  background-image: url('./images/TailoredImg/trainingroom.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
}
.service-card4{
  background-image: url('./images/TailoredImg/VideoWallSolutions.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
}



.service-card h4 {
    font-size: 30px;
    font-weight: 500;
    color: #fff9f9;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
    font-family: var(--font-family-Space);
}

.service-card p {
    font-size: 18px;
    color: #6c6c6c;
    padding-top: 10px;
    font-family: var(--font-family-Outfit);
}

.icon-area {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 20px; /* smaller gap for better responsiveness */
  flex-wrap: wrap;
}   

.more-btn {
  background-color: #002922;   /* Dark green */
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-family-Space);
  cursor: pointer;
  transition: 0.3s ease;
}

.more-btn:hover {
  background-color: #014d3c;
}

/* Responsive adjustment */
@media (max-width: 576px) {
  .icon-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    bottom: 15px;
    right: 15px;
  }

  .more-btn {
    width: 100%;
    text-align: center;
  }
}

.icon {
    font-size: 18px;
}

.step {
    background-color: #fff;
    border-radius: 50%;
    padding: 9px 12px;
    font-weight: bold;
    color: #333;
    font-size: 20px;
    border: 1px solid #eee;
    font-family: var(--font-family-Space);
}







.discussion-banner {
  background-color: #fff;
  border-radius: 999px;
  padding: 19px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
  max-width: 1200px;
  margin: auto;
  margin-bottom: 70px;
  margin-top: 40px;
}

.discussion-text {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 22px;
  color: #0d2d1e;
  font-family: var(--font-family-Space);
}

.discussion-text strong {
  font-weight: 700;
  font-size: 36px;
   font-family: var(--font-family-Space);
}

.arrow-icon {
 
  height: auto;
}

.call-box {
  background-color: #f6f3ea;
  border-radius: 999px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-icon {
 max-width: 100%;
  height: 30px;
}

.separator {
  width: 1px;
  height: 40px;
  background-color: #d3d3d3;
  margin: 0 12px;
}

.call-text {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}

.call-label {
  font-weight: 600;
  color: #182F27;
  font-size: 18px;
  font-family: var(--font-family-Space);
}

.call-number {
  font-size: 18px;
  color: #6b6a66;
  text-decoration: underline;
  font-family: var(--font-family-Outfit);
}

/* Responsive  */
@media (max-width: 992px) {
  .services-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .left-side, .right-side {
    width: 100%;
    padding-left: 0;
  }

  .left-side h1 {
    font-size: 30px;
    text-align: center;
    font-family: var(--font-family-Space);
  }

  .services-label {
    font-size: 13px;
    padding: 12px 16px;
    margin-bottom: 10px;
    text-align: center;
    font-family: var(--font-family-Space);
  }

  .description {
    font-size: 16px;
    text-align: center;
    font-family: var(--font-family-Outfit);
  }

  .all-services-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin: 20px 0;
  }

  .circle-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .circle-img {
    width: 120px;
    height: 120px;
  }

  .circle-text h4 {
    font-size: 18px;
    margin: 10px 0 6px;
     font-family: var(--font-family-Space);
  }

  .circle-text p,
  .circle-link {
    font-size: 15px;
    margin-left: 0;
    font-family: var(--font-family-Outfit);
  }

  .right-side {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
  }

  .icon-area {
    gap: 20px;
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 30px 15px;
  }

  .left-side h1 {
    font-size: 24px;
    font-family: var(--font-family-Space);
  }

  .services-label {
    font-size: 11px;
    line-height: 1.8;
    font-family: var(--font-family-Space);
  }

  .description {
    font-size: 14px;
    font-family: var(--font-family-Outfit);
  }

  .all-services-btn {
    font-size: 15px;
  }

  .circle-img {
    width: 100px;
    height: 100px;
  }

  .circle-text p {
    font-size: 14px;
    font-family: var(--font-family-Outfit);
  }

  .service-card p {
    font-size: 16px;
  }

  .discussion-banner {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 30px;
  }

  .discussion-text {
    flex-direction: column;
    font-size: 16px;
    text-align: center;
     font-family: var(--font-family-Space);
     font-weight: 500;
  }

  .discussion-text strong {
    font-size: 18px;
     font-family: var(--font-family-Space);
  }

  .call-box {
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    width: 100%;
  }

  .separator {
    display: none;
  }

  .call-label,
  .call-number {
    font-size: 18px;
    text-align: center;
    font-family: var(--font-family-Outfit);
  }
}

/* Tailored consulting section End  */

/* Industries Served start  */

.industry-expertise-section {
  background-color: #002922;
  padding-bottom: 0px;
  position: relative;
 font-family: "Space Grotesk", serif;
  color: white;
  padding-top: 80px;
}

/* ======== CONTAINER ======== */
.industry-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
    overflow: hidden;
}

.industry-header .industry-label {
    display: inline-block;
    padding: 16px 18px;
    border-radius: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", serif;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgb(224 224 216);
    background-image: repeating-linear-gradient(to right, transparent, transparent 14px, rgba(224, 224, 216, 0.2) 15px, transparent 16px), repeating-linear-gradient(to bottom, transparent, transparent 14px, rgba(224, 224, 216, 0.2) 15px, transparent 16px);
    height: 28px;
    line-height: 4;
}


.industry-header .industry-title {
  margin-top: 10px;
  font-family: "Space Grotesk", serif;
  font-size: 54px;
  font-weight: 600;
  justify-content: center;
}

.animated-industry-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseIndustry 0.6s ease forwards;
}

.animated-industry-title span:nth-child(1) { animation-delay: 0.1s; }
.animated-industry-title span:nth-child(2) { animation-delay: 0.3s; }
.animated-industry-title span:nth-child(3) { animation-delay: 0.5s; }

@keyframes riseIndustry {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======== IMAGE WRAPPER + SCROLL EFFECT ======== */
.industry-image-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 30px;
  margin-right: 0%;

  height: 500px; /* You can adjust this value to reduce height */
  overflow: hidden;
  border-radius: 20px;

}

.scroll-image {
    min-width: 191%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.4s ease-out;
      /* border-top-left-radius: 220px;
border-top-right-radius: 220px; */

height: 100%;
object-fit: cover;
object-position: center;

}
.industry-image-scroll {
  height: 100%;

  display: flex;
  justify-content: center;
  padding-left: 0; /* or adjust */
}


/* ======== OVERLAPPING BOX ======== */
.industry-overlap-box {
  position: relative;
  background-color: #002922;
  z-index: 2;
  max-width: 1200px;
  margin: 0px auto 0 auto;
  padding: 40px 30px;
  border-radius: 0px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
.industry-expertise-section {
  background-color: #002922;
  padding-bottom: 0px; /* enough space at bottom */
  position: relative;
  overflow: visible; /* 🟢 Important */
}

/* ======== FLEX WRAPPER ======== */
.industry-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* ======== ICON GRID (LEFT SIDE) ======== */
.industry-icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 530px; /* Adjust based on your desired row width */
  padding: 0px 0px;
}

.industry-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(255, 255, 255, 0.06);
  padding: 5px 16px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: var(--font-family-Space);
}


.icon-circle_industry img {
  width: 21px;
  height: 21px;
}
.icon-circle_industry {
    border: 1px solid #6b6a66;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin: 0px auto 0px;
    display: flex;
    align-items: cnter;
    justify-content: center;
    margin-right: 0px;
    padding: 10px;
}

/* Optional: Make each item auto-width */
/* .industry-tag {
  flex: 0 1 auto;
} */


/* ======== DIVIDER (MIDDLE LINE) ======== */
.industry-divider {
  width: 1px;
  background-color: #3c5f53;
  min-height: 250px;
}

/* ======== TEXT & LINK AREA (RIGHT SIDE) ======== */
.industry-info-panel {
  flex: 0 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.industry-description-text p {
  font-size: 18px;
  color: #808480;
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-family-Outfit);
}

.industry-list-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
   font-family: var(--font-family-Outfit);
   font-size: 18px;
}

.industry-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 148x;
}

.industry-list-item img {
  width: 12px;
  height: 12px;
}

.industry-list-item a {
  color: #808480;
  text-decoration: underline;
}

/* ======== BUTTON ======== */
.industry-button-wrap {
  margin-top: 10px;
  color: white;
  font-size: 18px;
  font-family: var(--font-family-Space);
}

.industry-button {
  color: white;
  border: 1px solid white;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.industry-button:hover {
  background-color: white;
  color: #002922;
}

/* ======== CIRCLE (FAR RIGHT) ======== */
.industry-circle-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.industry-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: white;
  color: #002922;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  line-height: 1.4;
  font-family: var(--font-family-Outfit);
  font-weight: 500;
}

@media (max-width: 768px) {
  .industry-expertise-section {
    padding-top: 50px;
  }

  .industry-header .industry-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .industry-header .industry-label {
    padding: 10px 14px;
    font-size: 14px;
    height: auto;
    line-height: 1.6;
  }

  .industry-image-wrapper {
    margin: 30px auto 0;
    margin-right: 0;
    width: 100%;
    overflow: hidden;
  }

  .industry-image-scroll {
    padding-left: 0;
    justify-content: center;
  }

  .scroll-image {
    width: 200%;
    max-width: none;
    height: auto;
    transform-origin: center center;
  }

  .industry-overlap-box {
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
  }

  .industry-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .industry-icon-list {
    justify-content: center;
    max-width: 100%;
  }

  .industry-divider {
    display: none;
  }

  .industry-info-panel {
    flex: 1;
    max-width: 100%;
    gap: 16px;
    margin-top: 20px;
  }

  .industry-description-text p {
    font-size: 16px;
    line-height: 1.5;
  }

  .industry-list-links {
    gap: 10px;
    font-size: 16px;
  }

  .industry-button-wrap {
    margin-top: 20px;
  }

  .industry-circle-box {
    margin-top: 30px;
    justify-content: center;
  }

  .industry-circle {
    width: 130px;
    height: 130px;
    font-size: 16px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .industry-header .industry-title {
    font-size: 26px;
  }

  .industry-header .industry-label {
    font-size: 12px;
    padding: 8px 12px;
  }

  .scroll-image {
    margin-right: 900px;
    width: 260%;
  }

  .industry-tag {
    font-size: 14px;
    padding: 4px 12px;
  }

  .industry-list-item a {
    font-size: 15px;
  }

  .industry-circle {
    width: 110px;
    height: 110px;
    font-size: 14px;
  }
}

/* Industries Served end  */


 /* Why Choose Us start  */

.dag-why-choose {
  display: flex;
  flex-wrap: wrap;
  padding: 80px 5%;
  gap: 60px;
  align-items: flex-start;
  background-color: #ffffff;
  color: #1a1f1c;
}
.dag-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;

}
.dag-left-section {
  flex: 1;
  min-width: 320px;
  position: relative;
  z-index: 1;
}

.dag-bg-text {
  position: absolute;
  top:280px;
  left: 0;
  font-size: 150px; /* adjust as needed */
  font-weight: 700;
  color: #F9F8F2; /* subtle background text */
  writing-mode: sideways-lr;
  text-orientation: mixed;
  font-family: 'Space Grotesk', serif;
  z-index: 0;
  pointer-events: none; /* prevent blocking clicks */
  user-select: none;
  line-height: 1;
  transform: translateX(-20px);
}

.dag-label {
  display: inline-block;
  padding: 4px 24px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fff;
  background-image:
    repeating-linear-gradient(to right, transparent, transparent 14px, rgba(0, 0, 0, 0.05) 15px, transparent 16px),
    repeating-linear-gradient(to bottom, transparent, transparent 14px, rgba(0, 0, 0, 0.05) 15px, transparent 16px);
  background-size: 100% 100%;
  font-family: 'Space Grotesk', serif;
}

.dag-heading {
  font-family: 'Space Grotesk', serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 0;
  margin-right: 61px;
}

.animated-dag-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseDag 0.6s ease forwards;
}

.animated-dag-heading span:nth-child(1) { animation-delay: 0.1s; }
.animated-dag-heading span:nth-child(2) { animation-delay: 0.3s; }
.animated-dag-heading span:nth-child(3) { animation-delay: 0.5s; }
.animated-dag-heading span:nth-child(4) { animation-delay: 0.7s; }
.animated-dag-heading span:nth-child(5) { animation-delay: 0.9s; }
.animated-dag-heading span:nth-child(6) { animation-delay: 1.1s; }
.animated-dag-heading span:nth-child(7) { animation-delay: 1.3s; }

@keyframes riseDag {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.dag-discussion-circle {
  margin-top: 200px;
  margin-left: 60px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 1px solid #e4e4e4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  background-color: #fff;
  z-index: 1;
  position: sticky;
}

.dag-discussion-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: var(--font-family-Space);
}

.dag-discussion-sub {
  font-size: 18px;
  color: #6b6b6b;
  margin-bottom: 15px;
}

.dag-read-more {
  font-size: 18px;
  border: 1px solid #1a1f1c;
  border-radius: 50px;
  padding: 6px 24px;
  font-family: 'Space Grotesk', serif;
  font-weight: 500;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dag-read-more_name{
  font-size: 18px;
}
.dag-read-more:hover {
  background-color: #dbfcd4;
  color: #002f18;
}

.dag-right-section {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.dag-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 31px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
  width: 383px;
    height: 507px;
}

.dag-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.dag-card-label {
  font-size: 16px;
  color: #6b6a66;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', serif;
  margin-left: 6px;
  margin-top: 10px;
}

.dag-card-heading {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Space Grotesk', serif;
  margin-bottom: 30px;
  color: #182F27;
}

.dag-divider {
  height: 1px;
  background-color: #eaeaea;
  margin-bottom: 30px;
}

.dag-icon-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.dag-icon-circle {
  width: 91px;
  height: 91px;
  background-color: #f4f4ef;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e2e2e2;
}

.dag-icon-circle img {
  width: 28px;
  height: 28px;
}

.dag-number-circle {
  background-color: #f4f4ef;
  border-radius: 50%;
  padding: 15px 18px;
  font-weight: 500;
  font-size: 18px;
  color: #1a1f1c;
  margin-left: -30px;
  font-family: var(--font-family-Outfit);
}

.dag-card-desc {
  font-size: 18px;
  color: #6B6A66;
  line-height: 1.6;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 30px;
}


@media (max-width: 992px) {
  .dag-why-choose {
    flex-direction: column;
    padding: 50px 20px;
    gap: 40px;
  }

  .dag-container {
    flex-direction: column;
    padding: 0;
  }

  .dag-left-section {
    width: 100%;
    min-width: 100%;
    text-align: center;
  }

  .dag-bg-text {
    font-size: 100px;
    top: 240px;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-lr;
    opacity: 0.08;
  }

  .dag-heading {
    font-size: 36px;
    margin-right: 0;
    margin-top: 10px;
  }

  .dag-discussion-circle {
    position: static;
    margin: 40px auto 0;
    width: 220px;
    height: 220px;
    padding: 20px;
  }

  .dag-discussion-title {
    font-size: 20px;
  }

  .dag-discussion-sub,
  .dag-read-more,
  .dag-read-more_name {
    font-size: 16px;
  }

  .dag-right-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .dag-card {
    width: 100%;
    height: auto;
    padding: 25px;
  }

  .dag-card-heading {
    font-size: 20px;
  }

  .dag-card-label {
    font-size: 14px;
  }

  .dag-card-desc {
    font-size: 16px;
  }

  .dag-icon-circle {
    width: 70px;
    height: 70px;
  }

  .dag-icon-circle img {
    width: 24px;
    height: 24px;
  }

  .dag-number-circle {
    font-size: 16px;
    padding: 12px 15px;
  }
}

@media (max-width: 576px) {
  .dag-heading {
    font-size: 28px;
  }

  .dag-bg-text {
    font-size: 80px;
    top: 200px;
  }

  .dag-label {
    font-size: 13px;
    padding: 4px 16px;
  }

  .dag-discussion-circle {
    width: 180px;
    height: 180px;
    padding: 16px;
  }

  .dag-discussion-title {
    font-size: 18px;
  }

  .dag-discussion-sub,
  .dag-read-more {
    font-size: 14px;
  }

  .dag-card-heading {
    font-size: 18px;
  }

  .dag-card-desc {
    font-size: 15px;
  }

  .dag-number-circle {
    font-size: 14px;
    padding: 10px 12px;
  }

  .dag-icon-circle {
    width: 60px;
    height: 60px;
  }

  .dag-icon-circle img {
    width: 20px;
    height: 20px;
  }
}

 /* Why Choose Us End  */






/* Work Process start  */





.work-process {
  padding: 80px 20px;
  background-color: #ffffff; /* 🎯 Background only here */
  text-align: center;
}


.section-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-Space);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a3028;;
  padding: 16px 17px;
  border-radius: 999px;
  border: 1px solid #e0e0d8;
  background-color: #f8f8f2;

  /* Grid lines (both directions) */
  background-image:
    repeating-linear-gradient(
      to right,
      transparent,
      transparent 14px,
      rgba(0, 0, 0, 0.05) 15px,
      transparent 16px
    ),
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 14px,
      rgba(0, 0, 0, 0.05) 15px,
      transparent 16px
    );
  background-size: 100% 100%;
  background-repeat: no-repeat;

  height: 28px;
    line-height: 4;
}

.section-title::before,
.section-title::after {
  font-family: var(--font-family-Space);
  content: "";
  flex: 1;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    #ccc,
    #ccc 4px,
    transparent 4px,
    transparent 8px
  );
}


.section-heading {
  font-size: 53px;
  font-weight: 600;
  color: #0b2f25; /* dark green-black tone */
  line-height: 1.1;
  letter-spacing: 0.3px;
  text-align: center;
  margin: 20px 0 40px 0;
  font-family: var(--font-family-Space);
  justify-content: center;
}
.animated-section-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseSection 0.6s ease forwards;
}

.animated-section-heading span:nth-child(1) { animation-delay: 0.1s; }
.animated-section-heading span:nth-child(2) { animation-delay: 0.3s; }
.animated-section-heading span:nth-child(3) { animation-delay: 0.5s; }
.animated-section-heading span:nth-child(4) { animation-delay: 0.7s; }
.animated-section-heading span:nth-child(5) { animation-delay: 0.9s; }
.animated-section-heading span:nth-child(6) { animation-delay: 1.1s; }
.animated-section-heading span:nth-child(7) { animation-delay: 1.3s; }

@keyframes riseSection {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.steps-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #f9f8f3;

}



.process-container {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.process-box {
  min-width: 320px;
  width: 23%;
  background-color: #fff;
  padding: 74px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.step-label {
  color: #7a7a7a;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-weight: bold;
  font-family: var(--font-family-Space);
}

.step-number {
  display: inline-block;
  padding: 10px 15px;
  border: 1px dashed #e0ded6;
  border-radius: 50px;
  font-weight: 600;
  font-size: 22px;
  color: #0b2f25;
  margin-bottom: 20px;
  background-color: #f9f8f3;
  font-family: var(--font-family-Space);
}

.step-title {
  background-color: #022c1b;
  color: white;
  padding: 20px 15px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 25px;
  margin-top: 18px;
  font-family: var(--font-family-Space);
}

.step-description {
  color: #6c6c6c;
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: var(--font-family-Outfit);
}

.step-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #cde672;
  border-radius: 50%;
}

.arrow {
  font-size: 18px;
  color: #cfd1b5;
  transform: translateY(-1px);
}


@media (max-width: 991px) {
  .section-title {
    font-size: 14px;
    padding: 12px 16px;
    line-height: 2.5;
    font-family: var(--font-family-Space);
  }

  .section-heading {
    font-size: 34px;
    margin: 20px 0 30px;
    font-family: var(--font-family-Space);
  }

  .steps-container,
  .process-container {
    gap: 20px;
    padding: 0 10px;
  }

  .process-box {
    width: 100%;
    max-width: 100%;
    padding: 50px 20px;
  }

  .step-title {
    font-size: 20px;
    padding: 16px;
    border-radius: 15px;
    font-family: var(--font-family-Space);
  }

  .step-description {
    font-size: 16px;
  }

  .step-number {
    font-size: 20px;
    padding: 8px 14px;
    font-family: var(--font-family-Space);
  }
}

@media (max-width: 576px) {
  .section-heading {
    font-size: 26px;
    font-family: var(--font-family-Outfit);
  }

  .section-title {
    font-size: 12px;
    padding: 8px 12px;
    font-family: var(--font-family-Space);
  }

  .process-box {
    padding: 40px 16px;
  }

  .step-title {
    font-size: 18px;
    padding: 14px;
    font-family: var(--font-family-Space);
  }

  .step-description {
    font-size: 14px;
  }

  .step-number {
    font-size: 18px;
    padding: 6px 12px;
    font-family: var(--font-family-Space);
  }

  .step-dots {
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .arrow {
    font-size: 14px;
  }
}


/* Work Process end  */



/* case study start  */

.cs-section {
  padding: 80px 0;
  background: #f9f8f3;
  font-family: 'Outfit', sans-serif;
}

.cs-container {
  max-width: 1335px;
  margin: 0 auto;
  padding: 0 20px;
}

.cs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cs-label {
  font-size: 16px;
  padding: 5px 23px;
  border-radius: 999px;
  font-weight: 600;
  background: #fff;
 background-image: repeating-linear-gradient(to right, transparent, transparent 14px, rgba(0, 0, 0, 0.05) 15px, transparent 16px), repeating-linear-gradient(to bottom, transparent, transparent 14px, rgba(0, 0, 0, 0.05) 15px, transparent 16px);
  font-family: var(--font-family-Space);
border: 1px solid #f9f8f3;
}

.cs-heading {
  font-size: 54px;
  margin-top: 20px;
  color: #182f27;
  font-family: var(--font-family-Space);
}
.animated-cs-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseCS 0.6s ease forwards;
}

.animated-cs-heading span:nth-child(1) { animation-delay: 0.1s; }
.animated-cs-heading span:nth-child(2) { animation-delay: 0.3s; }
.animated-cs-heading span:nth-child(3) { animation-delay: 0.5s; }
.animated-cs-heading span:nth-child(4) { animation-delay: 0.7s; }

@keyframes riseCS {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cs-readmore {
    font-size: 18px;
    color: #1a3028;
    font-weight: 600;
    text-decoration: none;
    padding-top: 40px;
    font-family: var(--font-family-Space);
}

.cs-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
margin-bottom: 32px;
}


/* Large Card */
.cs-card.cs-large {
  flex: 1.5;
  min-width: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.cs-img {
  height: 485px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
}

.cs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #002b22 5%, rgba(0, 0, 0, 0));
  transition: 0.5s ease-in-out;
  opacity: 0;
}

.cs-card:hover .cs-overlay {
  opacity: 1;
}

.cs-tags {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.cs-tag {
  font-size: 16px;
    padding: 5px 20px;
  background: #fff;
  border-radius: 25px;
  color: #182f27;
    border: 1px solid #dfdfdf;
}

.cs-plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 100;
  border: 1px solid #dfdfdf;
  color: #dfdfdf;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  transition: 0.3s ease;
  font-family: var(--font-family-Space);
}

.cs-plus2{
    width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 100;
  border: 1px solid #dfdfdf;
  color: #bcb6b6;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  transition: 0.3s ease;
}

.cs-bottom-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs-left-text {
  font-weight: 500;
  font-size: 1.7vw;
      font-family: "Space Grotesk", serif;
}

.cs-right-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-badge {
  position: relative;
  background: conic-gradient(#d6f267 0% 90%, #fff 50% 100%);
  color: #002b22;
  padding: 15px 12px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 17px;
  min-width: 60px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  font-family: var(--font-family-Space);
}

.cs-badge::before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #fff;
  border-radius: 50px;
  z-index: -1;
}

/* vartical line  */

.cs-vline {
    position: absolute;
    top: 367px;
    right: 255px;
    width: 1px;
    height: calc(58% - 148px);
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 2;
}
/* horizontal line  */
.cs-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 5); /* soft gray line */
  margin: 15px 0; /* spacing above/below */
}



/* Small Card */
.cs-card.cs-small {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
}

.cs-img-wrap {
  position: relative;
  height: 361px;
}

.cs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-badge-wrap {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
}

.cs-badge-text {
  margin-left: 10px;
  font-size: 20px;
    font-family: "Space Grotesk", serif;
}

.cs-desc-text {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding-right: 20px;
    font-family: var(--font-family-Space);
}

.cs-content {
  padding: 20px;
}

.cs-content h4 {
  font-size: 25px;
  color: #1a3028;
  margin-bottom: 8px;
      font-family: "Space Grotesk", serif;
}

.cs-content p {
  font-size: 19px;
  color: #666;
      font-family: "Outfit", sans-serif;
}

.cs-content hr {
  border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 15px ;
}

.cs-tags-row {
  display: flex;
  gap: 10px;
}


@media (max-width: 768px) {
  .cs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cs-heading {
    font-size: 28px;
    margin-top: 0;
  }

  .cs-label {
    font-size: 12px;
    padding: 10px 16px;
  }

  .cs-readmore {
    font-size: 16px;
    padding-top: 20px;
  }

  .cs-cards {
    flex-direction: column;
    gap: 20px;
  }

  .cs-card.cs-large .cs-img {
    height: 350px;
  }

  .cs-bottom-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cs-left-text {
    font-size: 18px;
  }

  .cs-badge {
    font-size: 15px;
    padding: 10px 10px;
  }

  .cs-img-wrap {
    height: 220px;
  }

  .cs-content h4 {
    font-size: 20px;
  }

  .cs-content p {
    font-size: 16px;
  }

  .cs-vline {
    display: none;
  }
}

@media (max-width: 576px) {
  .cs-heading {
    font-size: 24px;
  }

  .cs-label {
    font-size: 11px;
    padding: 8px 14px;
  }

  .cs-left-text {
    font-size: 16px;
  }

  .cs-badge-text {
    font-size: 16px;
  }

  .cs-content h4 {
    font-size: 18px;
  }

  .cs-content p {
    font-size: 15px;
  }

  .cs-desc-text {
    font-size: 16px;
  }

  .cs-tag {
    font-size: 14px;
    padding: 3px 12px;
  }

  .cs-plus,
  .cs-plus2 {
    width: 32px;
    height: 32px;
    font-size: 24px;
  }
}



/* case study end  */

/* Testimonials Start   */
.ts-section {
  background: #faf9f4;
  padding: 0px 0 122px;  /* extra bottom padding to make space for pulled card */
  position: relative;
  z-index: 1;
}

.ts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ts-header {
  text-align: center;
}

.ts-label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 21px;
  border-radius: 999px;
  background: #fbfaf4;
  display: inline-block;
  background-image: repeating-linear-gradient(to right, transparent, transparent 14px, rgba(0, 0, 0, 0.05) 15px, transparent 16px), repeating-linear-gradient(to bottom, transparent, transparent 14px, rgba(0, 0, 0, 0.05) 15px, transparent 16px);
  font-weight: 600;
  border: 1px solid #E4E2D7;
  font-family: var(--font-family-Space);
}

.ts-heading {
  font-size:56px;
  color: #1a3028;
  margin-top: 20px;
  font-family: var(--font-family-Space);
}
.animated-ts-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseTS 0.6s ease forwards;
}

.animated-ts-heading span:nth-child(1) { animation-delay: 0.1s; }
.animated-ts-heading span:nth-child(2) { animation-delay: 0.3s; }
.animated-ts-heading span:nth-child(3) { animation-delay: 0.5s; }
.animated-ts-heading span:nth-child(4) { animation-delay: 0.7s; }
.animated-ts-heading span:nth-child(5) { animation-delay: 0.9s; }
.animated-ts-heading span:nth-child(6) { animation-delay: 1.1s; }

@keyframes riseTS {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ts-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 423px;
  width: 79vw;
    width: 79vw;
    max-width: 105vw;
    margin-left: calc(-50vw + 64%);

   /* ✅ Add this */
  transform: translateY(80px);
  z-index: 10;
}

.ts-left-box {
  position: relative;
  background: #002c1c;
  color: #fff;
  flex: 1;
  padding: 5px;
  border-radius: 24px 0 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
}

.ts-rating-label {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
  margin-left: 30px;
  z-index: 5;
  font-family: var(--font-family-Space);
}

.ts-rating-score {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: var(--font-family-Space);
  margin-left: 30px;
}

.ts-stars {
  font-size: 26px;
  margin: 0px 0;
  color: #d6f267;
  margin-left: 30px;
  z-index: 5;
}

.ts-rating-summary {
  font-size: 17px;
  color: #cfcfcf;
      margin-left: 30px;
    margin-top: 5px;
    z-index: 100;
    font-family: var(--font-family-Outfit);
}

.ts-rating-summary strong {
  color: #fff;
}

.ts-right-box {
  flex: 2;
  position: relative;
  padding: 40px 30px 40px 80px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: 300px;
}

.ts-profile-img {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  border: 3px solid #fff;
  border-radius: 50%;
  width: 183px;
  height: 183px;
  overflow: hidden;
  z-index: 2;
}

.ts-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ts-semicircle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #43423f;
  border-right-color: transparent;
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
  background: transparent;
  z-index: 0;
}
.ts-semicircle_2{
   position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 120px; /* Can change as needed */
  width: 120px;
  border: 1px solid #43423f;
  border-radius: 50%; /* Makes it a full circle */
  background: transparent;
  z-index: 0;
}
.ts-arc-one {
height: 449px;
    width: 225px;
    left: -30%;
}

.ts-arc-two {
    height: 333px;
    width: 165px;
    left: -177px;
}

.ts-arc-three {
    height: 186px;
    width: 124px;
    left: -95px;
        height: 216px;
    width: 216px;
    left: -120px;
}
.ts-semicircle-vLine{
      width: 1px;
    background-color: #6B6A66;
    min-height: 464px;
    position: absolute;
  right: 12px;
  top: 0;
}
.ts-semicircle-vLine2{
      width: 3px;
    background-color: #faf9f4;
    min-height: 127px;
    position: absolute;
  right: 82%;
  top: 0;
}
.ts-review-box {
  flex: 1;
  position: relative;
}

.ts-rating-badge {
  position: absolute;
  top: 84px;
  left: 30px;
  background: #faf9f4;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 20px;
  font-weight: 600;
  color: #1a3028;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
}
.ts-rating-badge_number{
  margin-top: 15px;
  font-family: var(--font-family-Space);
}
.ts-rating-badge-stars{
font-size: 22px;
    color: #d6f267;
    margin-bottom: 36px;
    margin-right: -25px;
}
.ts-quote-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.ts-quote-icon img {
    width: 800%;
    height: 280%;
  object-fit: contain;
  margin-top: 20px;
}


.ts-review-title {
font-size: 29px;
    font-weight: 600;
    color: #1a3028;
    margin-bottom: 10px;
    margin-left: 130px;
    margin-top: 75px;
    font-family: var(--font-family-Space);
}

.ts-review-text {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-left: 130px;
  font-family: var(--font-family-Outfit);
}

.ts-author strong {
  color: #1a3028;
  font-weight: 600;
  margin-left: 91px;
  font-size: 20px;
  font-family: var(--font-family-Space);
}

.ts-author span {
  display: block;
  font-size: 17px;
  color: #888;
  margin-top: 5px;
  margin-left: 91px;
  font-family: var(--font-family-Outfit);
}

.ts-arrows {
  display: flex;
  gap: 10px;
      margin-left: 500px;
}

.ts-arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 23px;
  color: #1a3028;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.ts-arrow-btn:hover {
  background: #002c1c;
  color: #ffffff;
  border-color: #d6f267
}
.ts-author-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 80px;
  overflow: hidden;
  margin: auto;
}

.ts-author {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  text-align: left;
}

.ts-author.active {
  opacity: 1;
  position: relative;
}


.ts-author-floating-img {
    position: absolute;
    top: 308px;
    left: 12px;
    height: 10;
    overflow: hidden;
    z-index: 999;
}

.ts-author-floating-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 768px) {
  .ts-heading {
    font-size: 32px;
    line-height: 1.3;
  }

  .ts-card-wrapper {
    flex-direction: column;
    transform: translateY(40px);
    margin-left: auto;
    width: 95%;
    max-width: 100%;
  }

  .ts-left-box {
    border-radius: 24px 24px 0 0;
    padding: 20px;
  }

  .ts-right-box {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .ts-rating-label,
  .ts-rating-score,
  .ts-stars,
  .ts-rating-summary {
    margin-left: 0;
    text-align: center;
  }

  .ts-rating-score {
    font-size: 36px;
  }

  .ts-stars {
    font-size: 22px;
  }

  .ts-rating-summary {
    font-size: 16px;
  }

  .ts-profile-img {
    position: static;
    transform: none;
    margin: 0 auto;
    width: 120px;
    height: 120px;
  }

  .ts-semicircle,
  .ts-semicircle_2,
  .ts-semicircle-vLine,
  .ts-semicircle-vLine2 {
    display: none;
  }

  .ts-review-box {
    padding: 0 10px;
  }

  .ts-rating-badge {
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    font-size: 16px;
  }

  .ts-review-title {
    font-size: 22px;
    margin: 20px 0 10px;
    margin-left: 0;
    text-align: center;
  }

  .ts-review-text {
    font-size: 16px;
    margin-left: 0;
    text-align: center;
  }

  .ts-author strong,
  .ts-author span {
    margin-left: 0;
    text-align: center;
    display: block;
  margin-bottom: -20px;
  }

  .ts-author {
    position: relative;
    text-align: center;
  }

  .ts-author-floating-img {
    position: relative;
    top: auto;
    left: auto;
    margin: 10px auto;
    width: 80px;
    height: 80px;
  }

  .ts-arrows {
    justify-content: center;
    margin: 20px auto 0;
  }

  .ts-quote-icon {
    margin: 10px auto;
  }

  .ts-quote-icon img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .ts-heading {
    font-size: 26px;
  }

  .ts-label {
    font-size: 12px;
    padding: 3px 10px;
  }

  .ts-card-wrapper {
    transform: translateY(20px);
    padding: 10px;
  }

  .ts-rating-score {
    font-size: 30px;
  }

  .ts-stars {
    font-size: 20px;
  }

  .ts-arrow-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .ts-content h4 {
    font-size: 18px;
  }

  .ts-review-title,
  .ts-review-text {
    padding: 0 10px;
  }
}

/* Testimonials End   */

/* Recent Blog Start   */


/* Container Section */
.blog_section {
  background: #fff;
  padding-top: 150px;
  padding-bottom: 90px;
}

.blog_container {
  width: 80%;
  margin: 0 auto;
}

/* Header */
.blog_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.left_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recent_blog_btn {
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 4px 23px;
  background: #fff;
  font-weight: 600;
  color: #1a2e22;
 background-image: repeating-linear-gradient(to right, transparent, transparent 14px, rgba(0, 0, 0, 0.05) 15px, transparent 16px), repeating-linear-gradient(to bottom, transparent, transparent 14px, rgba(0, 0, 0, 0.05) 15px, transparent 16px);
 font-family: var(--font-family-Space);
}

.blog_title {
  font-size: 55px;
  font-weight: 700;
  color: #1a2e22;
  margin: 15px 0 0;
  font-family: var(--font-family-Space);
}
.animated-blog-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseBlog 0.6s ease forwards;
}

.animated-blog-title span:nth-child(1) { animation-delay: 0.1s; }
.animated-blog-title span:nth-child(2) { animation-delay: 0.3s; }
.animated-blog-title span:nth-child(3) { animation-delay: 0.5s; }

@keyframes riseBlog {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.read_more_blog {
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  color: #1a2e22;
  display: flex;
  align-items: center;
  margin-right: 0;
  margin-top: 50px;
  font-family: var(--font-family-Space);
}
.read_more_blog:hover{
  color:#c4e86b ;
  cursor: pointer;
   transition: all 0.3s ease-out;
}

.read_more_blog::before {
  content: '→';
  margin-right: 5px;
  transition: 0.5s ease-in-out;
}

/* Blog Card */
.blog_card_container {
  margin-top: 20px;
}

.blog_card {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 34px;
  border-radius: 20px;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); */
  border: 2px solid #f9f8f2;
  align-items: center;
}

/* Date + Author */
.blog_date {
  width: 225px;
  border-right: 1px solid #e4e4e4;
  padding-right: 20px;
  text-align: center;
}

.date_number {
  font-size: 24px;
  background-color: #c4e86b;
  color: #1a2e22;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin: 0 auto;
      margin-right: 150px;
      font-family: var(--font-family-Space);
}

.date_text {
  margin-top: 10px;
  color: #6B6A66;
  font-size: 17px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  margin-right: 80px;
}

/* Author Info */
.author {
  display: flex;
  align-items: center;
  margin-top: 60px;
  gap: 0px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: bold;
  justify-content: center;

  margin-left: -36px;
  width: 100%;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
      margin-left: 20px;
}

.author_name {
  font-weight: 600;
  margin: 0;
  padding-left: 2px;
      font-size: 18px;
      line-height: 2;
}

.more_posts {
  font-size: 16px;
  text-decoration: underline;
  color: #1a2e22;
  display: block;
  padding-left: 14px;
}

/* Blog Content */
.blog_content {
  flex: 1;
  padding: 0 30px;
}

.blog_heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 21px;
  color: #1a2e22;
  font-family: var(--font-family-Space);
  margin-left: 10px;
}

.blog_description {
  font-size: 18px;
  color: #6B6A66;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  margin-left: 10px;
}

.blog_meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  color: #6B6A66;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
}

.blog_meta span:not(:first-child) {
  border-left: 1px solid #e4e4e4;
  padding-left: 15px;
  margin-left: 15px;
}

.read_icon {
  background: #f9f8f2;
  border-radius: 50%;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8%;
}
.read_icon i {
  font-size: 22px;
  color: #333;
}

/* Blog Image */
.blog_image_container {
  position: relative;
  width: 264px;
  height: 182px;
  flex-shrink: 0;
  z-index: 0;
  margin-right: -120px;
}

.blog_image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  z-index: 1;
}

.blog_category {
    position: relative;
    top: -89px;
    right: 3px;
    background-color: #c4e86b;
    color: #1a2e22;
    font-weight: 600;
    font-size: 19px;
    font-family: 'Outfit', sans-serif;
    padding: 6px 16px 6px 18px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 0px;
    z-index: 2;
    border-bottom-left-radius: 18px;
    font-family: var(--font-family-Space);
}

/* folded tail */
.blog_category::before {
content: "";
    position: absolute;
    left: -2.5px;
    top: 0px;
    width: 0;
    height: 0;
    border-left: 17px solid transparent;
    border-bottom: 19px solid #c4e86b;
    transform: translateX(-85%);
    border-bottom-right-radius: 4px;
    z-index: 3;
}





/* Hover shadow on entire card */
.blog_card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

/* Smooth zoom effect on image */
.blog_image_container{
  overflow: hidden; 
  border-radius: 20px;
}

.blog_image {
  transition: transform 0.4s ease;
}

.blog_card:hover .blog_image {
  transform: scale(1.05);
}

.LoadMore{
  display: flex;
  justify-content: center;
}

.Load_btn{
    color: white;
    background-color: #002c1c;
    min-height: 52px;
    font-size: 18px;
    width: 12%;
    height: auto;
    border-radius: 25px;
    font-weight: 500;
    margin-top: 50px;
    font-family: var(--font-family-Space);
}

.Load_btn:hover{
  background-color: #c4e86b;
  color: black;
  cursor: pointer;
}

@media (max-width: 768px) {
  .blog_section {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .blog_container {
    width: 90%;
  }

  .blog_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .blog_title {
    font-size: 32px;
  }

  .read_more_blog {
    font-size: 16px;
    margin-top: 0;
  }

  .blog_card {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .blog_date {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e4e4e4;
    padding-right: 0;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .date_number {
    margin-right: 0;
    font-size: 20px;
    padding: 6px 16px;
  }

  .date_text {
    margin-right: 0;
    font-size: 15px;
  }

  .author {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-top: 30px;
  }

  .author img {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .author_name {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
  }

  .more_posts {
    padding-left: 0;
    font-size: 15px;
  }

  .blog_content {
    padding: 0;
  }

  .blog_heading {
    font-size: 22px;
    margin-left: 0;
  }

  .blog_description {
    font-size: 16px;
    margin-left: 0;
  }

  .blog_meta {
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
    gap: 10px;
  }

  .blog_meta span:not(:first-child) {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  .blog_image_container {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-top: 20px;
  }

  .blog_image {
    height: 200px;
  }

  .blog_category {
    font-size: 15px;
    padding: 4px 12px;
    top: -75px;
  }

  .Load_btn {
    width: 60%;
    font-size: 16px;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .blog_title {
    font-size: 26px;
  }

  .read_more_blog {
    font-size: 14px;
  }

  .date_number {
    font-size: 18px;
    padding: 5px 14px;
  }

  .date_text {
    font-size: 14px;
  }

  .blog_heading {
    font-size: 20px;
  }

  .blog_description {
    font-size: 15px;
  }

  .blog_category {
    top: -65px;
    font-size: 14px;
  }

  .Load_btn {
    width: 80%;
    font-size: 15px;
  }
}



/* Recent Blog End  */











/* Footer Start  */
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

}

.footer-section {
  position: relative;
  background-color: #002B22;
  color: #fff;
  font-family: "Space Grotesk", serif;
  overflow: hidden;
}

.footer-overlay {
  content: "";
  background-image: url('./images/footer/bg-pattern-3.png');
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.05;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.footer-top {
  position: relative;
  padding: 116px 0 60px;
  z-index: 1;
}

.footer-top-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
  padding-left: 50px;
  padding-right: 86px;
  box-sizing: border-box;
}

.appointment-box {
  max-width: 500px;
  flex: 1;
}

.footer-heading {
  font-size: 36px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-heading .word {
  opacity: 0;
  transform: translateY(30px);
  animation: riseOneByOne 0.6s ease forwards;
}

@keyframes riseOneByOne {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.footer-desc {
  margin-top: 20px;
  font-size: 18px;
  color: #7f9590;
  font-family: var(--font-family-Outfit);
}

.demo-button-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.circle-button {
  width: 120px;
  height: 120px;
  background-color: #b2d45b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #002B22;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.circle-button .arrow {
  font-size: 32px;
  transform: rotate(45deg);
  font-weight: 400;
  color: black;
}
.circle_para{
  font-size: 14px;
}
.demo-image img {
  width: 97px;
  height: auto;
  margin-left: 115px;
}

.footer-links-wrapper {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  
}

.footer-column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
    color: #7f9590;
    line-height: 2;
    font-family: var(--font-family-Outfit);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 18px;
  color: #7f9590;
  text-decoration: none;
  transition: color 0.3s;

}

.footer-column ul li a:hover {
  color: #ffffff;
}

.vertical-line {
  width: 1px;
  background-color: rgba(255,255,255,0.2);
  margin: 0 30px;
}

.footer-bottom {
  background-color: #05352B;
  padding: 31px 0;
  z-index: 1;
  position: relative;
  padding-left: 150px;
  padding-right: 170px;
  font-family: var(--font-family-Outfit);
}
.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
 color: #7f9590; 
 font-size: 18px;
}
.social-connect {
  display: flex;
  align-items: center;
 
  flex-wrap: wrap; /* Optional: allows wrapping if space is tight */
}


.social-connect span {
  margin-right: 20px;
  
}

.social-icons {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons .icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0f3c32;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7f9590;
  border: 1px solid transparent;
  transition: border 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

/* Tooltip Text Box */
.social-icons .icon::before {
  content: attr(data-label);
  position: absolute;
  bottom: 150%; /* Moves box above the icon */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85); /* dark tooltip */
  color: #ffffff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
}

/* Triangle Arrow */
.social-icons .icon::after {
  content: '';
  position: absolute;
  bottom: 138%; /* just below the tooltip box */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.85); /* triangle matches tooltip bg */
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9;
}

/* Show Tooltip and Arrow on Hover */
.social-icons .icon:hover::before,
.social-icons .icon:hover::after {
  opacity: 1;
}

.social-icons .icon:hover {
  border: 1px solid #C7F464;
  color: #ffffff;
}


@media (max-width: 768px) {
  .footer-top {
    padding: 60px 20px 40px;
  }

  .footer-top-content {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
  }
  .appointment-box,
  .footer-links-wrapper {
    width: 100%;
  }

  .demo-image img {
    margin-left: 0;
    width: 80px;
  }

  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .circle-button {
    width: 100px;
    height: 100px;
    font-size: 12px;
  }

  .footer-heading {
    font-size: 28px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-heading {
    font-size: 24px;
    justify-content: center;
    text-align: center;
  }

  .footer-desc {
    font-size: 14px;
    margin-top: 15px;
  }

  .demo-button-group {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .circle-button {
    width: 90px;
    height: 90px;
    font-size: 11px;
  }

  .circle-button .arrow {
    font-size: 20px;
  }

  .circle_para {
    font-size: 12px;
  }

  .demo-image img {
    margin: 0 auto;
    display: block;
  }

  .footer-links-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column h4 {
    font-size: 18px;
    text-align: center;
  }

  .footer-column ul {
    text-align: center;
    font-size: 15px;
  }

  .vertical-line {
    display: none;
  }

  .footer-bottom {
    padding: 20px;
    text-align: center;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 20px;
  }

  .social-connect {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .top-contact-bar {
    padding: 12px 0;
  }

  .top-contact-container {
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
    text-align: center;
  }

  .top-contact-left {
    justify-content: center;
  }

  .top-contact-right p {
    font-size: 14px;
  }

  .top-contact-right a {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .footer-heading {
    font-size: 20px;
  }

  .footer-desc {
    font-size: 13px;
  }

  .circle-button {
    width: 75px;
    height: 75px;
    font-size: 10px;
  }

  .circle-button .arrow {
    font-size: 18px;
  }

  .circle_para {
    font-size: 11px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-column ul {
    font-size: 14px;
  }

  .footer-bottom {
    padding: 15px;
  }

  .top-contact-container {
    padding: 0 15px;
  }

  .top-contact-left {
    gap: 15px;
    font-size: 14px;
  }

  .top-contact-right p,
  .top-contact-right a {
    font-size: 14px;
  }
}


.fotter_link{
  text-decoration: none;
}



/*  */













/* About Us section  */

/* ABout US Section  */


 .top-contact-bar {
  background: linear-gradient(to right, #002b22 45%, #a3bc90 80%);
  color: #cfd5d4;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  padding:0;
}

.top-contact-bar .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 0px;
  color: #7f9590;
  font-size: 18px;
}

.contact-item i {
  color: #cdf86b;
  font-size: 18px;
}

.offer-text {
  margin-left: auto;
  color: #0f2d22;
  font-weight: 400;
  font-size: 18px;
}

.offer-text a {
  color: #0f2d22;
  font-weight: 400;
  text-decoration: none;
}
 /* Header Section Start  */
.container_header{
   max-width: 1400px;
  margin: 0 auto;
}
 
  .coreit-header-fixed {
    background-color: #fff;
    padding: 22px 0;
    font-family: 'Outfit', sans-serif;
    border-bottom: 1px solid #e6e6e6;
  
  }

  .coreit-logo-box {
    gap: 10px;
  }

  .coreit-logo-img {
    width: 50%;
  }

  .coreit-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 45px;
        margin-right: 15%;
        font-family: var(--font-family-Space);
  }

  .coreit-nav li {
    display: inline-block;
  }

  .coreit-nav a {
    text-decoration: none;
    color: #0a2c23;
    font-weight: 500;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .coreit-nav a.active,
  .coreit-nav a:hover {
    color: #b3e464;
  }

  .coreit-header-right .coreit-lang-selector {
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 7px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }

  .coreit-lang-selector img {
    width: 19px;
    height: auto;
        min-height: 14px;
  }

  .coreit-get-started {
    background-color: #002b22;
    color: #fff;
    padding: 11px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    font-family: var(--font-family-Space);
  }
   .coreit-get-started:hover{
    background-color: #b3e464;
    color: #333333;
   }
@media (max-width: 991px) {
  .container_header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
  }

  .coreit-header-fixed {
    padding: 12px 0;
  }

  .coreit-logo-img {
    width: 180px;
  }

  .coreit-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
    margin-right: 0;
    margin-top: 15px;
  }

  .coreit-nav li {
    display: none;
    width: 100%;
  }

  .coreit-nav a {
    padding: 10px 0;
    display: block;
    width: 100%;
    font-size: 16px;
  }

  .coreit-header-right {
    flex-direction: unset;
    align-items: flex-start;
    gap: 10px;

    width: 100%;
    justify-content: right;
  }

  .coreit-get-started {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    display: none;
  }

  .coreit-header-right .coreit-lang-selector {
    width: 22%;
    justify-content: center;
    padding: 6px 27px;
  }

  .smart-menu {
    align-self: flex-end;
    margin-top: 10px;
  }
}

/* ✅ Mobile nav toggle and dropdown styles */
.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  color: #002922;
  cursor: pointer;
}

.coreit-mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #002922;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 10px;
  width: 100%;
}

.coreit-mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.coreit-mobile-nav a:last-child {
  border-bottom: none;
}

/* ✅ Toggle visibility on mobile */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }

  .coreit-nav,
  .coreit-get-started {
    display: none;
  }

  .coreit-mobile-nav.active {
    display: flex;
  }
}
.gap-3 {
    gap: 1rem !important;
    justify-content: center;
}

/* New Update  */
/* Responsive Styles */
@media (max-width: 991px) {
  .contact-container {
    flex-direction: column;
    padding: 20px 15px;
  }

  .left-contact-block,
  .right-contact-info {
    flex: 1 1 100%;
    width: 100%;
    border-right: none;
  }

  .contact-header-block {
    padding: 25px 20px 20px;
  }

  .main-contact-heading {
    font-size: 32px;
    gap: 8px;
  }

  .contact-subtext {
    font-size: 16px;
  }

  .contact-form-block {
    padding: 0 20px 30px;
  }

  .input-grid {
    flex-direction: column;
    gap: 12px;
  }

  .form-box {
    flex: 1 1 100%;
  }

  .consent-send-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .submit-contact-btn {
    width: 100%;
    text-align: center;
  }

  .faq-box-area,
  .contact-details-box,
  .social-section {
    padding: 20px;
  }

  .detail-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-heading-animated,
  .social-heading-animated {
    font-size: 18px;
  }

  .faq-meta,
  .faq-meta a,
  .faq-meta p {
    font-size: 16px;
  }

  .social-icons span,
  .tooltip-icon {
    margin-right: 6px;
    padding: 10px;
    width: 40px;
    height: 40px;
  }

  .tooltip-icon::before {
    font-size: 12px;
    top: -35px;
  }
}

/* Main Layout */
.contact-section-wrapper {
  padding: 50px 20px;
  font-family: var(--font-family-Outfit);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  align-items: stretch;
}


/* Secondary Sticky Header Start  */

.secondary-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #d1d3d7;
  padding: 15px 0;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.secondary-header.show {
  transform: translateY(0);
}
.secondary-header .nav-links a {
  color: #3a3e91;
  text-decoration: none;
  font-weight: 500;
  margin: 0 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.secondary-header .divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255,255,255,0.3);
  margin: 0 16px;
}
.search-link {
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.get-started-btn {
  background-color: #06306d;
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
      font-size: 18px;
}
.smart-menu {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .secondary-header {
    display: none;
  }
}

@media (max-width: 768px) {
  .secondary-header {
    padding: 12px 16px;
  }

  .secondary-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .coreit-logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .nav-links a {
    margin: 0;
    font-size: 15px;
    padding: 8px 0;
    width: 100%;
  }

  .secondary-header .divider {
    display: none;
  }

  .search-link {
    width: 100%;
    justify-content: flex-start;
    font-size: 15px;
  }

  .header-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
  }

  .get-started-btn {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 16px;
  }

  .smart-menu {
    align-self: flex-end;
    order: 2;
  }
}

 /* about Hero section start  */

.about-hero-section {
  background-image: url('./images/AboutSection/about_heroImg.jpg');
  background-size: cover;
  background-position: center;
  height: 363px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  z-index: 1000; /* Explicitly set lower than header and dropdown */
}

.about-hero-overlay {
  background-color:#182f27 ;
  opacity: 0.6;
  padding: 60px 20px;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-hero-overlay h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 30px;
}

.about-hero-overlay .breadcrumb {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 20px;
}

.about-hero-overlay .breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.about-hero-overlay .breadcrumb span {
  margin: 0 6px;
}
@media (max-width: 768px) {
  .about-hero-section {
    height: 240px; /* reduce height for mobile */
    background-position: center top;
  }

  .about-hero-overlay {
    padding: 40px 16px;
  }

  .about-hero-overlay h1 {
    font-size: 36px; /* reduced from 60px */
    margin-top: 10px;
  }

  .about-hero-overlay .breadcrumb {
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .about-hero-overlay h1 {
    font-size: 28px;
  }

  .about-hero-overlay .breadcrumb {
    font-size: 13px;
  }
}


/* about Hero section  end  */
/* business-growth-section start  */

.business-growth-section {
  background-color: #fcfaf5;
  padding: 100px 0;
  font-family: 'Outfit', sans-serif;
  color: #0a2c23;
  border-bottom-left-radius: 30%;
  border-bottom-right-radius: 30%;
  padding-bottom: 20%;
}

.container_business {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

.business-growth-header {
  display: flex;
  /* justify-content: space-between; */
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 62px;
}

.animated-heading {
  font-size: 54px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  font-family: var(--font-family-Space);
  color: #002f25;
  overflow: hidden;
}

.animated-heading .line {
  display: inline-block;
  white-space: nowrap;
}

.animated-heading .line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: waveUp 0.6s ease-out forwards;
}
/* active class triggers animation */
.animated-heading.active .line span {
  animation: waveUp 0.6s ease-out forwards;
}
.animated-heading .line-1 span:nth-child(1) { animation-delay: 0.1s; }
.animated-heading .line-1 span:nth-child(2) { animation-delay: 0.3s; }
.animated-heading .line-1 span:nth-child(3) { animation-delay: 0.5s; }

.animated-heading .line-2 span:nth-child(1) { animation-delay: 1s; }
.animated-heading .line-2 span:nth-child(2) { animation-delay: 1.2s; }
.animated-heading .line-2 span:nth-child(3) { animation-delay: 1.4s; }
.animated-heading .line-2 span:nth-child(4) { animation-delay: 1.6s; }

@keyframes waveUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.growth-paragraph-right {
  max-width: 525px;
  padding-top: 20px;
}

.growth-paragraph-right p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.business-growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px 59px;
}

.growth-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.icon-wrapper {
  flex-shrink: 0;
}

.icon-circle_about {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffffff 55%, #f2f0e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px #f2f0e8, 0 0 0 12px #ffffff;
  margin-top: 20px;
}

.icon-circle_about img {
  width: 22px;
  height: 22px;
}

.content-wrapper{
  margin-bottom: 26px;
}

.content-wrapper h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: var(--font-family-Space);
  color: #002f25; /* default color */
  transition: all 0.3s ease-in-out;
  display: inline-block; /* required for transform */
  cursor: pointer;
}

.content-wrapper h4:hover {
  color: #b2d45b;
  transform: translateY(-4px);
}

.content-wrapper p {
  font-size: 18px;
  line-height: 1.5;
  color: #555;
  margin: 0;
  max-width: 292px;
  font-family: var(--font-family-Outfit);
}

@media (max-width: 768px) {
  .business-growth-section {
    padding: 60px 20px 80px;
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
  }

  .business-growth-header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }

  .animated-heading {
    font-size: 32px;
    text-align: left;
    line-height: 1.3;
  }

  .growth-paragraph-right {
    max-width: 100%;
    padding-top: 0;
  }

  .growth-paragraph-right p {
    font-size: 16px;
    line-height: 1.5;
  }

  .business-growth-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .growth-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .icon-circle_about {
    width: 36px;
    height: 36px;
    box-shadow: 0 0 0 4px #f2f0e8, 0 0 0 8px #ffffff;
  }

  .icon-circle_about img {
    width: 18px;
    height: 18px;
  }

  .content-wrapper h4 {
    font-size: 18px;
  }

  .content-wrapper p {
    font-size: 15px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .animated-heading {
    font-size: 26px;
  }

  .growth-paragraph-right p {
    font-size: 15px;
  }

  .content-wrapper h4 {
    font-size: 16px;
  }

  .content-wrapper p {
    font-size: 14px;
  }

  .icon-circle_about {
    width: 32px;
    height: 32px;
    box-shadow: 0 0 0 3px #f2f0e8, 0 0 0 6px #ffffff;
  }

  .icon-circle_about img {
    width: 16px;
    height: 16px;
  }
}


/* business-growth-section end */

 /* Who We are Section Start  */
.who-we-are-section-overlap {
  margin-top: -225px;
  padding-top: 0;
  position: relative;
  z-index: 4;
  background: transparent;
  margin-bottom: 80px;
}

.who-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0;
}

.who-wrapper-box {
  display: flex;
  justify-content: center;
}

.who-image-box {
  position: relative;
  height: 560px;
  border-radius: 26px;
  overflow: hidden;
  width: 100%;
  background: #fff;
}

.who-image-scroll {
  height: 100%;
  width: 100%;
  position: absolute;     /* 👈 make it fill entire area */
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;    
}

.who-image-scroll img {
  height: 100%;
  width: 145%;
  transition: transform 0.5s ease-out;
   object-fit: cover;
   transform: translateX(-200px);
}

.who-icon-label {
  position: absolute;
  top: 20px;
  left: 90px;
  background-color: #fff;
  color: #0a2c23;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 3;
  transition: all 0.3s ease;
  font-family: var(--font-family-Space);
}

.who-sidebar {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #002922;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 10px 10px;
  gap: 20px;
  z-index: 3;
}

.sidebar-icon {
  color: #fff;
  font-size: 18px;
  padding: 8px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.3s ease;
  position: relative;
}

.sidebar-icon.active,
.sidebar-icon:hover {
  background-color: #fff;
  color: #002922;
}

.who-video-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #002922;
  padding: 30px 50px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius:0px;
  border-top-right-radius: 24px;
  z-index: 2;
}
.who-video-button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 5px 15px;
  background-color: #002922;  /* ✅ SOLID background */
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-family-Space);
  z-index: 3;
  cursor: pointer;
}
.who-video-button i {
  background-color: #fff;
  color: #002922;
  border-radius: 50%;
  padding: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}





.who-experience-wrapper {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
}


.half-green-circle {
    position: absolute;
    bottom: 10px;
    width: 240px;
    height: 240px;
    background-color: #b5e76f;
    border-radius: 50%;
    transform: rotate(29deg);
    clip-path: inset(50% 0 0 0);
    z-index: 1;
    right: 72px;
}



.experience-badge-circle {
  width: 210px;
  height: 210px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  text-align: center;
  padding-top: 30px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  bottom: 10px;
}

.experience-badge-circle i {
  color: #0a2c23;
  font-size: 24px;
  margin-bottom: 10px;
}

.experience-badge-circle h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-family-Space)
}

.experience-badge-circle p {
  font-size: 20px;
  color: #0a2c23;
  margin: 0;
  line-height: 1.4;
padding-top: 10px;
font-family: var(--font-family-Outfit);
}
.watch{
  background-color: #0a2c23;
  color: white;
  border-radius: 1px solid white;
}

@media (max-width: 768px) {
  .who-we-are-section-overlap {
    margin-top: -100px;
    margin-bottom: 50px;
  }

  .who-wrapper-box {
    padding: 0 15px;
  }

  .who-image-box {
    height: 500px;
    border-radius: 18px;
  }

  .who-image-scroll img {
    width: 190%;
    transform: none;
    object-fit: cover;
  }

  .who-icon-label {
    font-size: 14px;
    padding: 8px 16px;
    top: 16px;
    left: 70px;
    border-radius: 10px;
  }

  .who-sidebar {
    top: 15px;
    left: 12px;
    padding: 8px;
    gap: 14px;
    border-radius: 12px;
  }

  .sidebar-icon {
    font-size: 14px;
    padding: 6px;
  }

  .who-video-bg {
    padding: 15px 20px;
    border-radius: 14px;
    bottom: 12px;
    left: 10px;
  }

  .who-video-button {
    font-size: 14px;
    padding: 5px 12px;
    gap: 10px;
  }

  .who-video-button i {
    width: 30px;
    height: 30px;
    font-size: 12px;
    padding: 8px;
  }

  .who-experience-wrapper {
    bottom: 20px;
    right: 15px;
  }

  .half-green-circle {
    width: 150px;
    height: 150px;
    right: 35px;
    bottom: 5px;
  }

  .experience-badge-circle {
    width: 140px;
    height: 140px;
    padding-top: 20px;
    right: 20px;
    bottom: 10px;
  }

  .experience-badge-circle h2 {
    font-size: 26px;
  }

  .experience-badge-circle p {
    font-size: 14px;
    padding-top: 6px;
  }
}

@media (max-width: 480px) {
  .who-image-box {
    height: 440px;
  }

  .who-icon-label {
    top: 12px;
    left: 60px;
    font-size: 13px;
    padding: 6px 12px;
  }

  .sidebar-icon {
    font-size: 12px;
    padding: 5px;
  }

  .who-video-bg {
    padding: 12px 15px;
    bottom: 8px;
    left: 8px;
  }

  .who-video-button {
    font-size: 13px;
    padding: 4px 10px;
    gap: 8px;
  }

  .who-video-button i {
    width: 26px;
    height: 26px;
    font-size: 10px;
    padding: 6px;
  }

  .half-green-circle {
    width: 130px;
    height: 130px;
    right: 25px;
  }

  .experience-badge-circle {
    width: 120px;
    height: 120px;
    padding-top: 16px;
  }

  .experience-badge-circle h2 {
    font-size: 22px;
  }

  .experience-badge-circle p {
    font-size: 13px;
  }
}


  /* Who We are Section end  */

/* Company Partners Section Start  */
  .company-partner-section {
    padding: 80px 0;
    background-color: #fff;
  }

  .company-partner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .company-partner-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }

  .company-partner-left {
    flex: 1;
    min-width: 320px;
  }

  .company-partner-badge {
    display: inline-block;
    padding: 4px 20px;
    font-size: 16px;
    font-weight: 600;
    background-image: 
      linear-gradient(to right, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 20px 16px;
    border-radius: 30px;
    font-family: var(--font-family-Space);
    border: 2px solid #f9f8f3;
    color: #182F27;
    margin-bottom: 20px;
  }

  .company-partner-heading {
    font-size: 48px;
    color: #182F27;
    font-family: var(--font-family-Outfit);
    font-weight: 600;
  }

  .company-partner-right {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
  }

  .company-partner-description {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    font-family: var(--font-family-Outfit);
  }

  @media (max-width: 768px) {
    .company-partner-content {
      flex-direction: column;
      align-items: flex-start;
    }

    .company-partner-heading {
      font-size: 36px;
    }

    .company-partner-description {
      font-size: 16px;
    }
  }



    .timeline-full-section {
      background: #fff;
      padding: 60px 0;
    }

    .timeline-container {
      max-width: 1200px;
      margin: 0 auto;
      overflow-x: auto;
      padding-inline: 40px;
    }

    .timeline-wrapper {
      display: flex;
      gap: 36px;
      position: relative;
      min-width: max-content;
    }

    .timeline-card {
      position: relative;
      width: 206px;
      flex-shrink: 0;
    }

    .timeline-line-vertical {
      position: absolute;
      top: 0;
      left: 0%;
      transform: translateX(-50%);
      width: 1px;
      height: calc(95% - 20px);
      background-color: #dcdcdc;
      z-index: 0;
    }

    .timeline-dot-top {
      width: 12px;
      height: 12px;
      background: #fff;
      border: 1px solid #dcdcdc;
      border-radius: 50%;
      position: absolute;
      top: 0;
      left: 0%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .timeline-content {
      margin-top: 20px;
      text-align: center;
    }

    .timeline-title {
      font-size: 22px;
      font-weight: 700;
      color: #002922;
      margin-bottom: 8px;
      font-family: "Space Grotesk", serif;
      
    }

    .timeline-text {
      font-size: 18px;
      color: #444;
      line-height: 1.6;
      font-family:  "Outfit", sans-serif;
    width: 183px;
    height: 196px;
    text-align: left;
    margin-left: 35px;
    }

    .timeline-circle {
      width: 80px;
      height: 80px;
      background-color: #f7f4eb;
      color: #002922;
      font-weight: 700;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      position: absolute;
      bottom: 160px;
      left: 0%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .timeline-circle.active {
      background-color: #c6e96c;
    }

    .timeline-horizontal {
      position: absolute;
      bottom: 36px;
      left: 23%;
      display: flex;
      align-items: center;
      transform: translateX(-50%);
    }

    .timeline-horizontal-line {
      width: 85px;
      height: 1px;
      background: #dcdcdc;
    }

    .timeline-dot-small {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #dcdcdc;
      margin-left: 0px;
      margin-top: 9px;
    }

    .timeline-image {
      margin-top: 160px;
      display: flex;
      justify-content: end;
    }

    .timeline-image img {
      width: 90px;
      height: 90px;
      object-fit: cover;
      border-radius: 50%;
    }

    /* Smooth scrolling */
    .timeline-container::-webkit-scrollbar {
      display: none;
    }
    .timeline-horizontal-main-line {
  position: absolute;
  top: calc(108% - 240px); /* Aligns to vertical middle of the circle */
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #dcdcdc;
  z-index: 1; /* Should be behind the circles */
}


.partner-arrows {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}



.partner-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0e1e19;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner-btn:hover {
  background: #182f27;
  color: white;
  transition: 0.5s ease-in-out;
}

#timelineWrapper {
  cursor: grab;
  user-select: none;
}

#timelineWrapper.grabbing {
  cursor: grabbing;
}


/* Company Partners Section End  */




/* our mission start  */
:root {
  --font-family-Space: "Space Grotesk", serif;
  --font-family-Outfit: "Outfit", sans-serif;
}

.mission-section {
  background: #fcfaf5;
  border-radius: 60px;
  padding: 80px 0;
  font-family: var(--font-family-Outfit);
      margin-left: 25px;
    margin-right: 25px;
}

.container_mission {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

.mission-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.mission-left {
  flex: 1;
  min-width: 260px;
  margin-bottom: 100px;
  margin-left: 0px;
}

.mission-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: #182f27;
  font-family: var(--font-family-Space);
  margin-bottom: 20px;
  text-align: left;
}

.mission-left p {
  font-size: 18px;
  color: #6b6a66;
  line-height: 1.7;
  width: 98%;
  font-family: var(--font-family-Outfit);
}

.mission-image-box {
  margin-bottom: 50px;
  min-height: 450px;
  flex: 1;
  min-width: 440px;
  /* max-width: 400px;  */
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4 / 2.8; /* force shape control */

}

.scroll-image-box {
  width: 100%;
  height: 100%;
}

.scroll-image-box img {
  width: 135%;
  height: 160%;
  object-fit: cover;  /* ensures perfect fit inside box */
  display: block;
   transition: transform 0.4s ease;
  transform: scale(1.1); /* slightly zoom */
  will-change: transform;
}


.mission-right {
    margin-bottom: 70px;
    text-align: left;
    position: relative;
    left: 0px;
    width: 18%;
}

.icon-circle {
  border: 1px solid #c9df9f;
  background-color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 191px;
}

.icon-circle img {
  width: 32px;
  height: 32px;
}

.mission-right p {
  font-size: 18px;
  color: #6b6a66;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: var(--font-family-Outfit);
}

.mission-right h3 {
  font-size: 54px;
  font-weight: bold;
  color: #182f27;
  margin: 0;
  font-family: var(--font-family-Space);
}

/*  */
.mission-contentCenter{
    display: flex;
    justify-content: center;
    margin-left: 0px;
        padding-top: 60px;
    padding-bottom: 60px;
}

.mission-rightcenter{
    flex: 1;
  min-width: 260px;
      margin-left: 30px;
}
.mission-rightcenter h2 {
  font-size: 30px;
  font-weight: 700;
  color: #002B22;
  font-family: var(--font-family-Space);
  margin-bottom: 20px;
  text-align: left;
}

.mission-rightcenter p {
  font-size: 18px;
  color: #6b6a66;
  line-height: 1.6;
  width: 95%;
  font-family: var(--font-family-Outfit);
}


.mission-leftCenter{
    margin-bottom: 70px;
    text-align: left;
    position: relative;
    left: 0px;
    width: 21%;
}
.icon-circle {
  border: 1px solid #c9df9f;
  background-color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 191px;
}

.icon-circle img {
  width: 28px;
  height: 28px;
}

.mission-leftCenter p {
  font-size: 18px;
  color: #6b6a66;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: var(--font-family-Outfit);
}

.mission-leftCenter h3 {
  font-size: 48px;
  font-weight: bold;
  color: #002B22;
  margin: 0;
  font-family: var(--font-family-Space);
}



.wave-heading {
  font-size: 27px;
  font-weight: 700;
  color: #002B22;
  font-family: var(--font-family-Space);
  margin-bottom: 20px;
  overflow: hidden;
}

.wave-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.wave-heading.animate span {
  animation: waveFadeUp 0.6s ease forwards;
}

.wave-heading.animate span:nth-child(1) { animation-delay: 0.1s; }
.wave-heading.animate span:nth-child(2) { animation-delay: 0.3s; }
.wave-heading.animate span:nth-child(3) { animation-delay: 0.5s; }

@keyframes waveFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.count-number {
  font-size: 48px;
  font-weight: bold;
  color: #002B22;
  margin: 0;
}



@media (max-width: 920px) {
  .mission-section {
    padding: 40px 16px;
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 30px;
  }

  .mission-content {
    flex-direction: column;
    gap: 30px;
  }

  .mission-left,
  .mission-right,
  .mission-leftCenter,
  .mission-rightcenter {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .mission-left h2,
  .mission-rightcenter h2 {
    font-size: 22px;
    text-align: center;
  }

  .mission-left p,
  .mission-rightcenter p,
  .mission-right p,
  .mission-leftCenter p {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }

  .mission-right h3,
  .mission-leftCenter h3,
  .count-number {
    font-size: 36px;
    text-align: center;
  }

  .mission-image-box {
    max-width: 100%;
    min-width: auto;
    aspect-ratio: 16 / 10;
  }

  .scroll-image-box img {
    width: 100%;
    height: 237%;
    object-fit: cover;
    transform: scale(1.05);
  }

  .mission-contentCenter {
    flex-direction: column;
    padding: 40px 0;
    margin: 0;
  }

  .icon-circle {
    margin: 0 auto 16px;
    width: 50px;
    height: 50px;
  }

  .icon-circle img {
    width: 22px;
    height: 22px;
  }

  .wave-heading {
    font-size: 22px;
    text-align: center;
  }
}



@media (max-width: 768px) {
  .mission-section {
    padding: 40px 16px;
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 30px;
  }

  .mission-content {
    flex-direction: column;
    gap: 30px;
  }

  .mission-left,
  .mission-right,
  .mission-leftCenter,
  .mission-rightcenter {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .mission-left h2,
  .mission-rightcenter h2 {
    font-size: 22px;
    text-align: center;
  }

  .mission-left p,
  .mission-rightcenter p,
  .mission-right p,
  .mission-leftCenter p {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }

  .mission-right h3,
  .mission-leftCenter h3,
  .count-number {
    font-size: 36px;
    text-align: center;
  }

  .mission-image-box {
    max-width: 100%;
    min-width: auto;
    aspect-ratio: 16 / 10;
  }

  .scroll-image-box img {
    width: 210%;
    height: 150%;
    object-fit: cover;
    transform: scale(1.05);
  }

  .mission-contentCenter {
    flex-direction: column;
    padding: 40px 0;
    margin: 0;
  }

  .icon-circle {
    margin: 0 auto 16px;
    width: 50px;
    height: 50px;
  }

  .icon-circle img {
    width: 22px;
    height: 22px;
  }

  .wave-heading {
    font-size: 22px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mission-left h2,
  .mission-rightcenter h2 {
    font-size: 20px;
  }

  .mission-right h3,
  .mission-leftCenter h3,
  .count-number {
    font-size: 28px;
  }

  .wave-heading {
    font-size: 18px;
  }

  .scroll-image-box img {
    width: 210%;
    height: auto;
    transform: none;
  }
}

/* our mission end  */



/* Team section Start  */
.team-section {
  padding: 80px 0;
  font-family: 'Outfit', sans-serif;
  background-color: #fff;
}
.team-section .container {
  max-width: 1200px; /* or 1100px or same as other containers */
  margin: 0 auto;
  padding: 0 20px;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-heading {
  text-align: center;
  margin-bottom: 50px;
}

.team-heading h2 {
  font-size: 49px;
  font-weight: 700;
  color: #112D24;
  line-height: 1.3;
  font-family: var(--font-family-Space);
}
.wave-heading {
  font-size: 49px;
  font-weight: 700;
  color: #112D24;
  line-height: 1.3;
  font-family: var(--font-family-Space);
  overflow: hidden;
  text-align: center;
}

.wave-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.wave-heading.animate span {
  animation: waveFadeUp 0.6s ease-out forwards;
}

.wave-heading.animate span:nth-child(1) { animation-delay: 0.1s; }
.wave-heading.animate span:nth-child(2) { animation-delay: 0.3s; }
.wave-heading.animate span:nth-child(3) { animation-delay: 0.5s; }
.wave-heading.animate span:nth-child(4) { animation-delay: 0.7s; }

@keyframes waveFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.team-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  flex: 1 1 30%;
  min-width: 280px;
  transition: all 0.3s ease;
}

.team-image {
  position: relative;
  overflow: hidden; /* important to prevent image overflow on zoom */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.team-image img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease; /* smooth animation */
}

.team-image:hover img {
  transform: scale(1.05); /* slight zoom on hover */
}

.share-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Show social wrapper on hover */
.share-wrapper:hover .share-social-wrapper {
  transform: translateY(0%);
  opacity: 1;
}

/* Change color on hover */
.share-wrapper:hover .share-icon {
  background-color: #c8f560;
  color: #112D24;
}



.share-icon {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: #002F25;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  z-index: 3;
}

/* Social Share Bar Hidden by Default */
.share-social-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  background: transparent;
  gap: 5px;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

/* When Active */
.share-social-wrapper.active {
  transform: translateY(0%);
  opacity: 1;
}

/* Individual Social Icons */
.share-social-icons {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 40px;
}

.share-social-icons li {
  width: 40px;
  height: 40px;
  background: #f4f4f4;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #002f25;
  transition: 0.3s ease;
}

.share-social-icons li a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 40px;
}

.share-social-icons li:hover {
  background: #c8f560;
  color: #112D24;
}


.team-info {
  padding: 20px;
  text-align: left;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #112D24;
  font-family: var(--font-family-Space);
}

.team-role {
  background-color: #C8F560;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

.team-info p {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}

.Team-btn{
  display: flex;
    justify-content: center;
}

.team_btn{
  color: white;
    background-color: #002c1c;
    min-height: 52px;
    font-size: 18px;
    width: 12%;
    height: auto;
    border-radius: 25px;
    font-weight: 500;
    margin-top: 50px;
    font-family: var(--font-family-Space);
    transition: 0.3s ease-in-out;
}

.team_btn:hover{
  background-color: #C5E96B;
  color: black;
  transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .team-heading h2,
  .wave-heading {
    font-size: 30px;
    text-align: center;
  }

  .team-cards {
    flex-direction: column;
    gap: 24px;
  }

  .team-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .team-info {
    padding: 16px;
    text-align: center;
  }

  .team-info h3 {
    font-size: 18px;
  }

  .team-info p {
    font-size: 16px;
  }

  .team-role {
    font-size: 15px;
    padding: 5px 12px;
  }

  .Team-btn {
    justify-content: center;
  }

  .team_btn {
    width: 80%;
    font-size: 16px;
    min-height: 45px;
    margin-top: 40px;
  }

  .share-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .share-social-icons li {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-right: 8px;
  }

  .share-social-icons li a {
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  .wave-heading {
    font-size: 26px;
  }

  .team_btn {
    font-size: 15px;
    padding: 10px;
  }

  .team-role {
    font-size: 14px;
    padding: 4px 10px;
  }

  .share-social-icons li {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* Team section end  */

















/* testimonial-section start  */
.testimonial-section {
  background: #fcfaf5;
  padding: 80px 0;
  font-family: "Outfit", sans-serif;
}

.container.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

/* LEFT IMAGE GRID */
.testimonial-images {
  display: grid;
  grid-template-columns: repeat(2, 140px);
  grid-gap: 145px;
  flex: 1;
  justify-content: left;
  row-gap: 22px
}
.img-box {
  border-radius: 15px;
  overflow: hidden;
  width: 265px;
  height: 265px;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-box.img-one {
  width: 163px;
  height: 161px;
  align-self: center;      /* ✅ vertical center in the grid */
  justify-self: center;    /* ✅ horizontal center in the grid */
  
  padding: 0px;
  border-radius: 50%;      /* optional for round icon */
    margin-top: 104px;
    margin-left: 117px;
}
.img-box.img-one img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* ✅ prevent stretch */
}

/* RIGHT CONTENT */
.testimonial-slider {
  flex: 1;
  min-width: 320px;
}

.choose-tag {
  background: #d4f27d;
  color: #003229;
  padding: 6px 14px;
  font-weight: bold;
  border-radius: 20px;
  font-size: 16px;
  font-family: var(--font-family-Space);
}

.testimonial-heading {
  font-size: 51px;
  color: #0e1e19;
  font-weight: 700;
  margin: 15px 0;
  font-family: var(--font-family-Space);
  text-align: left;
}

.rating {
  color: #3c6b0a;
  font-size: 20px;

}

.slider-content {
  position: relative;

}

.slide {
  display: none;
  transition: all 0.5s ease-in-out;
}

.slide.active {
  display: block;
}

.testimonial-text {
  font-size: 18px;
  color: #5e5e5e;
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: var(--font-family-Outfit);
  width: 102%;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.info h4 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-family-Space);
}

.info span {
  font-size: 18px;
  color: #777;
  font-family: var(--font-family-Outfit);
}

.slider-controls {
  margin-top: 30px;
}

.slider-controls button {
  width: 50px;
  height: 50px;
  border: none;
  background: #fff;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.slider-controls button:hover{
  background-color: #0a0a2a;
  color: white;
  transition: 0.5s ease-in-out;
}



/* Slide Animations */
/* Slide Animation */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 3;
}

.slide.exit-left {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 2;
}

.slide.enter-right {
  transform: translateX(100%);
  opacity: 0;
  z-index: 1;
}

.slider-content {
  position: relative;
  height: 200px; /* enough to hold tallest slide without jump */
}

/* quote-icon  */
.profile-image-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.quote-icon {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #d4f27d;  /* light green */
  color: #003229;       /* dark green quotes */
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
/* =============== ✅ MOBILE RESPONSIVE =============== */
@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
    gap: 30px;
  }

  .testimonial-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .img-box,
  .img-box.img-one {
    width: 90%;
    height: auto;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 15px;
  }

  .img-box img,
  .img-box.img-one img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .testimonial-slider {
    width: 100%;
  }

  .testimonial-heading {
    font-size: 32px;
    text-align: center;
  }

  .choose-tag {
    font-size: 14px;
    margin-bottom: 12px;
    display: inline-block;
  }

  .testimonial-text {
    font-size: 16px;
    text-align: center;
  }

  .testimonial-profile {
    justify-content: center;
    margin-top: 20px;
  }

  .slider-controls {
    justify-content: center;
    margin-top: 25px;
  }

  .info h4, .info span {
    text-align: center;
  }
}

/* testimonial-section end  */









/* SERVICE SECTION START  */

.great_sign {
    font-weight: 900;
    margin-top: 6px;
    margin-left: 9px;
    font-size: 16px;
}



/* Section Styling */
.recruitment-process-section {
  background-color: #fff;
  padding: 40px 20px;
  font-family: "Outfit", sans-serif;
  padding-top: 80px;
}

/* Container */
.recruitment-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Left Section */
.recruitment-left {
  flex: 1;
  min-width: 500px;
}

.recruitment-heading {
  font-size: 54px;
  color: #0e1e19;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: var(--font-family-Space);
}

.animated-recruitment-heading {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.animated-recruitment-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.6s ease forwards;
}

.animated-recruitment-heading span:nth-child(1) { animation-delay: 0.1s; }
.animated-recruitment-heading span:nth-child(2) { animation-delay: 0.3s; }


@keyframes riseUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.recruitment-description {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 40px;
  font-family: var(--font-family-Outfit);
}

/* Right Section */
.recruitment-right {
  flex: 1;
  min-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Common Box Style */
.recruitment-box {
  background-color: #fcfaf5;
  border-radius: 25px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
      margin-bottom: 10px;
    padding-bottom: 5px;
}

/* Text in Box */
.box-title {
  font-size: 20px;
  color: #0e1e19;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-family-Space);
}

.box-text {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
  font-family: var(--font-family-Outfit);
}

/* Right Icon */
.check-icon-circle {
  width: 70px;
  height: 70px;
  background-color: #c8ef61;
  border-radius: 50%;
  font-size: 28px;
  color: #0e1e19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .recruitment-container {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .recruitment-left,
  .recruitment-right {
    min-width: 100%;
  }

  .recruitment-heading {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .recruitment-description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .recruitment-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .check-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-bottom: 0;
    align-self: flex-end;
  }

  .box-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .box-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .great_sign {
    font-size: 14px;
    margin-left: 6px;
  }
}

@media (max-width: 480px) {
  .recruitment-heading {
    font-size: 26px;
  }

  .recruitment-description {
    font-size: 15px;
  }

  .box-title {
    font-size: 16px;
  }

  .box-text {
    font-size: 14px;
  }

  .check-icon-circle {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .great_sign {
    font-size: 12px;
    margin-top: 4px;
  }
}


/* 2nd div */


.hr-functions-section {
  padding: 0px 20px;
  background-color: #fff;
  font-family: "Outfit", sans-serif;
}

.container-hr {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.hr-left-image-box {
  flex: 1;
  min-width: 500px;
  border-radius: 25px;
  overflow: hidden;
  /* height: 100%; */
  max-height: 700px;
  position: relative;
}
.conf-height{
   /* max-height: 600px; */
}

.scroll-image-wrapper {
  transition: transform 0.4s ease;
  will-change: transform;
}

.scroll-image-wrapper img {
  width: 110%;
  height: 100%;
  /* display: block;  */
  object-fit: cover;

}

/* Right Side */
.hr-right-content {
  flex: 1;
  min-width: 500px;
  margin-top: -20px;
}

.hr-heading {
  font-size: 35px;
  font-weight: 700;
  color: #0e1e19;
  margin-bottom: 20px;
  font-family: var(--font-family-Space);
}

.animated-hr-heading {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.animated-hr-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.6s ease forwards;
}

.animated-hr-heading span:nth-child(1) { animation-delay: 0.1s; }
.animated-hr-heading span:nth-child(2) { animation-delay: 0.3s; }

@keyframes riseUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hr-description {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  font-family: var(--font-family-Outfit);
}

.hr-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  gap: 20px;
}

.hr-icon {
  background-color: #c8ef61;
  color: #0e1e19;
  font-size: 20px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hr-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0e1e19;
  margin-bottom: 5px;
  font-family: var(--font-family-Space);
}

.hr-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.4;
  font-family: var(--font-family-Outfit);
}



.scroll-image-wrapper {
  transition: transform 0.4s ease;
  will-change: transform;
  display: flex;
  justify-content: center;
}

.scroll-image-wrapper img {
  width: 138%;
  height: auto;
  display: block;
  transform: translateX(0); /* start center */
}
.adjust_image img{
transform: translateY(-77px);
}


@media (max-width: 768px) {
  .container-hr {
    flex-direction: column;
    gap: 30px;
  }

  .hr-left-image-box,
  .hr-right-content {
    min-width: 100%;
  }

  .hr-left-image-box {
    max-height: none;
    height: auto;
  }

  .scroll-image-wrapper img {
    width: 150%;
    height: auto;
    transform: translateX(0); /* Still center on small screens */
  }

  .hr-heading {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .hr-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hr-point {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .hr-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .hr-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .hr-text p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hr-heading {
    font-size: 22px;
  }

  .hr-description {
    font-size: 15px;
  }

  .hr-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .hr-text h4 {
    font-size: 15px;
  }

  .hr-text p {
    font-size: 14px;
  }

  .scroll-image-wrapper img {
    width: 120%; /* Zoom a bit more */
  }
}

/* 3rd section  */


.service-benefits-section {
  padding: 30px 20px;
  background: #fff;
}

.container-service {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Side */
.service-left {
  flex: 1;
  min-width: 500px;
}

.service-heading {
  font-size: 35px;
  font-weight: 500;
  color: #0e1e19;
  margin-bottom: 20px;
  font-family: var(--font-family-Space);
}

.animated-service-heading {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.scroll-animate span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

/* Only apply animation when element is visible in viewport */
.scroll-animate.visible span {
  animation: riseUp 0.6s ease forwards;
}

/* Wave delay */
.scroll-animate.visible span:nth-child(1) { animation-delay: 0.1s; }
.scroll-animate.visible span:nth-child(2) { animation-delay: 0.3s; }
.scroll-animate.visible span:nth-child(3) { animation-delay: 0.5s; }

@keyframes riseUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.service-para {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  font-family: var(--font-family-Outfit);
}

/* Accordion */
.accordion-item {
  background: #fdfdfd;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}



.accordion-header {
  background: #fdfdfd;
  border-radius: 14px;
  transition:background 0.3s ease, color 0.3s ease;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  font-family: var(--font-family-Space);
}
.accordion-header:hover{
  background: #012218;
  color: #fff;
}
.accordion-item:hover .accordion-header {
  background: #012218;
  color: #fff;
  font-size: 20px;
}

.step-wrap {
  display: flex;
  align-items: center;

}

.step-indicator {
  background: #f7f5f0;
  color: black;
  padding: 6px 18px;
  border-radius: 25px;
  font-weight: bold;
  font-family: var(--font-family-Space);
font-size: 16px;
}
/* .step-indicator2{
  background: #f7f5f0;
  padding: 6px 18px;
  border-radius: 25px;
  font-weight: bold;
  font-family: var(--font-family-Space);
      margin-left: 227px;
}
.step-indicator3{
  background: #f7f5f0;
  padding: 6px 18px;
  border-radius: 25px;
  font-weight: bold;
  font-family: var(--font-family-Space);
      margin-left: 306px;
} */
.accordion-header:hover
.step-indicator
/* .step-indicator2,
.step-indicator3 */
{
  color: black;
}

.accordion-toggle {
  font-size: 22px;
  width: 32px;
  height: 32px;

  color: #fff;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--font-family-Space);
   background-color: #f7f5f0;
  color: #333333;
  transition: background 0.3s ease;
  position: relative;
}


.accordion-item.active .accordion-header {
  font-size: 20px;
  background: #012218;
  color: #fff;
  border-radius: 14px 14px 0 0;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.6s ease, padding 0.6s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 20px 25px 30px;
}

/* Inner content stays smooth, no paragraph animation */
.accordion-inner {
  font-size: 18px;
  color: #6b6a66;
  opacity: 1;
  transform: none;
  transition: none;
}


.start-lin.accordion-toggle::before k {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #012218;
  text-decoration: none;
}

.accordion-item.active .start-link {
  /* color: #182F27; */
  text-decoration: none;
}
.start-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-family-Space);
  margin-top: 10px;
}

.start-link:hover {
  color: #b2d45b;
  transform: translateY(-3px);
}


/* Inner content for step 2/3 */
.accordion-content-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-image {
  width: 157px;
  height: 166px;
  object-fit: cover;
  border-radius: 10px;
}

/* Right Image */
.service-right {

  flex: 1;
  min-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  max-height: 450px;
  height: 100%;
  position: relative;
}

.scroll-image-wrapper {
  transition: transform 0.4s ease;
  will-change: transform;
  display: flex;
  justify-content: center;
}

.service-right .scroll-image-wrapper img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  display: block;

}




@media (max-width: 768px) {
  .container-service {
    flex-direction: column;
    gap: 30px;
  }

  .service-left,
  .service-right {
    min-width: 100%;
  }

  .service-heading {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .service-para {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .accordion-header {
    padding: 16px;
    font-size: 16px;
  }

  .accordion-item.active .accordion-header {
    font-size: 18px;
  }

  .accordion-toggle {
    width: 28px;
    height: 28px;
    font-size: 18px;
    line-height: 28px;
  }

  .step-indicator {
    font-size: 14px;
    padding: 4px 14px;
  }

  .accordion-body {
    padding: 0 20px;
  }

  .accordion-item.active .accordion-body {
    padding: 15px 20px 25px;
  }

  .accordion-inner {
    font-size: 16px;
  }

  .start-link {
    font-size: 16px;
    margin-top: 8px;
  }

  .accordion-content-box {
    flex-direction: column;
    gap: 15px;
  }

  .step-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
  }

  .service-right {
    height: auto;
    max-height: none;
  }

  .scroll-image-wrapper img {
    width: 120%;
    height: auto;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .service-heading {
    font-size: 22px;
  }

  .service-para {
    font-size: 15px;
  }

  .accordion-header {
    font-size: 15px;
    padding: 14px;
  }

  .accordion-toggle {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .step-indicator {
    font-size: 13px;
    padding: 4px 12px;
  }

  .accordion-inner,
  .start-link {
    font-size: 15px;
  }
}

/* post navigation section start  */

.post-navigation {
  padding-top: 70px;
  padding-bottom: 30px;
  font-family: 'Outfit', sans-serif;

}

.post-nav-container {
    border-top: 1px solid rgba(0, 0, 0, 0.1);   /* 🔹 Top line */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* 🔹 Bottom line */
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 35px 20px;
}

/* Box Layout */
.nav-box {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.nav-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-text h4 {
  margin: 0;
  font-size: 20px;
  color: #012218;
  font-weight: 700;
  font-family: var(--font-family-Space);
}

.nav-text p {
  margin: 0;
  font-size: 18px;
  color: #888;
  font-family: var(--font-family-Space);
}

/* Reverse order for Next */
.nav-next {
  flex-direction: row-reverse;
  text-align: right;
}

/* Center Column */
.nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.center-line {
  width: 60px;
  height: 1px;
  background-color: #ccc;
}

.nav-dots {
  text-align: center;
  line-height: 0.7;
  font-size: 13px;
  color: #012218;
  cursor: pointer;
}

@media (max-width: 768px) {
  .post-nav-container {
    flex-direction: column;
    gap: 30px;
    padding: 25px 15px;
    text-align: center;
  }

  .nav-box {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-next {
    flex-direction: column;
    text-align: center;
  }

  .nav-box img {
    width: 60px;
    height: 60px;
  }

  .nav-text h4 {
    font-size: 18px;
  }

  .nav-text p {
    font-size: 15px;
  }

  .nav-center {
    gap: 8px;
  }

  .center-line {
    width: 40px;
  }

  .nav-dots {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .nav-box img {
    width: 50px;
    height: 50px;
  }

  .nav-text h4 {
    font-size: 16px;
  }

  .nav-text p {
    font-size: 14px;
  }

  .center-line {
    width: 30px;
  }

  .nav-dots {
    font-size: 11px;
  }
}

/* post navigation section end  */





/* card section start  */

.related-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 15px;
  font-family: 'Outfit', sans-serif;
}

.related-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.related-posts-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0e1e19;
}

.related-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.nav-arrows {
  display: flex;
  gap: 10px;
}


.custom-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0e1e19;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-nav-btn:hover {
  background: #182f27;
  color: white;
  transition: 0.5s ease-in-out;
}
.relatedSwiper {
  width: 100%;
  /* padding: 10px 0; */
  overflow: hidden;
}

.related-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  height: 576px; /* Increased from original */
  display: flex;
  flex-direction: column;
}

.card-image-box {
  position: relative;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.top-icon-circle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d9f99d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  transition: 0.3s ease;
}

.top-icon-circle:hover {
  background-color: #333333;
  color: white;
  cursor: pointer;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.icon-text-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.play-hover-effect {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.green-dot {
  width: 10px;
  height: 10px;
  background-color: #81c408;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.3s ease;
}

.play-icon {
  position: absolute;
  z-index: 2;
  font-size: 12px;
  color: black;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.related-card:hover .green-dot {
  width: 30px;
  height: 30px;
}

.related-card:hover .play-icon {
  left: 50%;
  font-size: 14px;
}

.icon-text-box h3 {
  font-size: 24px;
  margin: 0;
  font-family: var(--font-family-Space);
}

.card-content hr {
  margin: 15px 0;
  border: 0;
  border-top: 1px solid #ddd;
}

.card-category {
  color: #999;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-family-Space);
  font-size: 18px;
}

.card-desc {
  color: #555;
  font-size: 18px;
  margin-bottom: 15px;
  font-family: var(--font-family-Outfit);
  line-height: 1.5;
  flex-grow: 1;
}

.view-more-link {
  position: relative;
  display: inline-block;
  padding: 10px 20px;           /* ✅ Perfect button feel */
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-family-Space);
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
  border-radius: 30px;          /* ✅ To match expanding shape */
  overflow: hidden;             /* ✅ Prevent overflow from ::before */
}

.view-more-link::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 3%;
  transform: translateX(-7%);
  height: 6px;
  width: 30px;
  background-color: #d9f99d;
  border-radius: 50px;
  z-index: -1;
  transition: all 0.4s ease;
}

.view-more-link:hover::before {
  width: 40%;
  height: 100%;
  bottom: 0;
  border-radius: 30px;
}




.related-card:hover .card-image-box img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .related-posts-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .related-posts-header h2 {
    font-size: 24px;
  }

  .nav-arrows {
    gap: 8px;
  }

  .custom-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .related-card {
    height: auto;
    width: 100%;
  }

  .card-image-box {
    height: 200px;
  }

  .top-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .icon-text-box {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 8px;
  }

  .icon-text-box h3 {
    font-size: 20px;
  }

  .play-hover-effect {
    width: 22px;
    height: 22px;
  }

  .green-dot {
    width: 8px;
    height: 8px;
  }

  .related-card:hover .green-dot {
    width: 20px;
    height: 20px;
  }

  .play-icon {
    font-size: 10px;
  }

  .related-card:hover .play-icon {
    font-size: 12px;
  }

  .card-category,
  .card-desc {
    font-size: 15px;
  }

  .view-more-link {
    font-size: 16px;
    padding: 8px 16px;
  }

  .view-more-link::before {
    bottom: 5px;
    height: 5px;
    width: 25px;
  }

  .view-more-link:hover::before {
    width: 40%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .related-posts-header h2 {
    font-size: 20px;
  }

  .custom-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .card-image-box {
    height: 180px;
  }

  .top-icon-circle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .icon-text-box h3 {
    font-size: 18px;
  }

  .card-desc {
    font-size: 14px;
    line-height: 1.4;
  }

  .card-category {
    font-size: 14px;
  }

  .view-more-link {
    font-size: 14px;
    padding: 7px 14px;
  }

  .view-more-link::before {
    height: 4px;
    bottom: 4px;
    width: 20px;
  }
}

/* card section end  */

/* comment section start  */

.comment-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Outfit', sans-serif;
}

.comment-container {
  max-width: 1200px;
  margin: auto;
}

.comment-container h2 {
  font-size: 34px;
  color: #182F27;
  font-weight: 600;
  font-family: var(--font-family-Space);
}

.comment-note {
  color: #6b6a66;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: var(--font-family-Outfit);
}

.comment-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #6b6a66;
  font-family: var(--font-family-Space);
  font-size: 15px;
}

.comment-form textarea {
  width: 100%;
  min-height: 210px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  font-size: 14px;
  margin-bottom: 10px;
  resize: vertical;
  font-family: var(--font-family-Space);
}
.comment-form textarea:hover{
    border-color: #b2d45b;
      transition: 0.5s ease-in-out;
}


.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  min-width: 250px;
}

.form-group input {
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  border: 1px solid #eee;
  border-radius: 10px;
  outline: none;
  font-family: var(--font-family-Space);
}

.form-group input:hover{
  border-color: #b2d45b;
  transition: 0.5s ease-in-out;
}
/* FORM CHECK WRAPPER */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 3px;
  color: #666;
  line-height: 1.5;
  margin-top: 20px;
  padding-bottom: 15px;
}

/* HIDE DEFAULT CHECKBOX */
.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 21px;
  height: 21px;
  border: 2px solid #ecebe4;
;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: absolute;
  transition: all 0.2s ease;
  margin-top: 3px; /* 🔼 adjust vertical alignment */
}

/* CUSTOM CHECK ICON ON CHECKED STATE */
.form-check input[type="checkbox"]:checked {
  background-color: #b2d45b;
  border-color: #b2d45b;
}

.form-check input[type="checkbox"]:checked::after {
  content: '✓';
  color: black;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 15px;
  transform: translate(-50%, -55%);
}
.check_lable{
  font-size: 16px;
  font-family: var(--font-family-Outfit);
}

.form-check label {
  margin-left: 30px;
}



.submit-button {
  background-color: #012218;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: var(--font-family-Space);
}

.submit-button:hover {
  background-color: #C6E96C;
  color: black;
  opacity: 0.9;
}


/* comment section end  */










/* Contact section Start  */




.contact-section-wrapper {

  padding: 50px 20px;
  font-family: var(--font-family-Outfit);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  align-items: stretch;
}

.left-contact-block {
  flex: 1 1 72%;
  padding: 0;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}

.right-contact-info {
  min-width: 30%;
  flex: 0 0 28%;
  display: flex;
  flex-direction: column;
}

.right-bottom-wrapper {
  background: #f9f6ed;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-header-block {
  padding: 29px 40px 30px;
}

.get-touch-tag {
  display: inline-block;
  padding: 4px 20px;
  font-size: 16x;
  font-weight: 600;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 20px 16px;
  border-radius: 30px;
  font-family: var(--font-family-Space);
  border: 2px solid #f9f8f3;
  color: #182F27;
}

.main-contact-heading {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 54px;
  font-weight: 700;
  margin: 5px 0 10px;
  color: #182F27;
  font-family: var(--font-family-Space);
}

.main-contact-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.6s ease forwards;
}

.main-contact-heading span:nth-child(1) { animation-delay: 0.1s; }
.main-contact-heading span:nth-child(2) { animation-delay: 0.3s; }
.main-contact-heading span:nth-child(3) { animation-delay: 0.5s; }
.main-contact-heading span:nth-child(4) { animation-delay: 0.7s; }

@keyframes riseUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-subtext {
  color: #555;
  margin-bottom: 20px;
  color: #6b6a66;
  font-size: 20px;
  font-family: var(--font-family-Outfit);
}

.top-divider-line {
  height: 1px;
  background: #ddd;
  margin: 0 0px 40px;
}

.contact-form-block {
  padding: 0 40px 50px;
}

.input-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 10px;
}

.form-box {
  flex: 1 1 calc(50% - 10px);
  background: #fff;
  border: 1px solid #e8e6dc;
  border-radius: 12px;
  padding: 8px 20px;
}

.form-box.full-width {
  flex: 1 1 100%;
}

.input-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-box input,
.form-box textarea {
  width: 100%;
  border: none;
  font-size: 15px;
  font-family: var(--font-family-Outfit);
  color: #fff;
  outline: none;
  padding: 5px 0;
  background: transparent;
}
.form_discuss{
padding: 17px;
}


textarea {
  min-height: 90px;
  resize: vertical;
}

.consent-send-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.submit-contact-btn {
  background: #002f25;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 11px 25px;
  font-size: 18px;
  cursor: pointer;
  font-family: var(--font-family-Space);
  margin: 15px 0 0;
  font-weight: 600;
}
.submit-contact-btn:hover{
  color:black;
  background-color: #b2d45b;
  transition: 0.5s ease-in-out;
}

.faq-box-area {
  background-color: #002b22;
  color: #fff;
  padding: 30px;
}

.faq-header {
  margin-bottom: 15px;
}

.faq-heading-animated {
  font-size: 22px;
  font-family: var(--font-family-Space);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-heading-animated span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.6s ease forwards;
}

/* Delay for wave animation (word-by-word) */
.faq-heading-animated span:nth-child(1) { animation-delay: 0.1s; }
.faq-heading-animated span:nth-child(2) { animation-delay: 0.25s; }
.faq-heading-animated span:nth-child(3) { animation-delay: 0.4s; }
.faq-heading-animated span:nth-child(4) { animation-delay: 0.55s; }
.faq-heading-animated span:nth-child(5) { animation-delay: 0.7s; }
.faq-heading-animated span:nth-child(6) { animation-delay: 0.85s; }

@keyframes riseUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.faq-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #002b22;
  padding: 0px;
  border-radius: 0;
  color: #7f9590;
}
.faq-meta p{
  font-size: 18px;
  font-family: var(--font-family-Outfit);
}
.faq-meta p:hover{
   transform: translateY(-4px);
  transition: 0.5s ease-in-out;
}
.faq-meta a{
  font-size: 18px;
  font-family: var(--font-family-Space);
  text-decoration: none;
  color: white;
}
.faq-meta a:hover{
     transform: translateY(-4px);
  transition: 0.5s ease-in-out;
}


.faq-icon {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  font-size: 20px;
}

.contact-details-box {
  padding: 30px;
}

.detail-item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  gap: 15px;
  font-size: 20px;
}

.detail-icon {
  font-size: 20px;
}
.detail-icon .faq-icon-right{
    width: 50px;
  height: 50px;
  background: #f9f6ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  font-size: 20px;
}
.right-detail_name{
  font-size: 18px;
  font-family: var(--font-family-Space);
  color: #182F27;
}
.right-detail_add{
  font-size: 18px;
  font-family: var(--font-family-Outfit);
  color: #6b6a66;
  cursor: pointer;
}

.social-section {
  padding: 0 30px 30px;
}

.social-heading-animated {
  margin-bottom: 20px;
  font-size: 20px;
  font-family: var(--font-family-Space);
  color: #182F27;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-heading-animated span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.6s ease forwards;
}

/* Word-by-word delay */
.social-heading-animated span:nth-child(1) { animation-delay: 0.1s; }
.social-heading-animated span:nth-child(2) { animation-delay: 0.3s; }

@keyframes riseUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-icons span {
  display: inline-flex;
  background: #fff;
  border-radius: 50%;
  padding: 15px;
  margin-right: 10px;
  font-size: 18px;
  width: 45px;
    height: 45px;
}
.social-icons-pop span{
    display: inline-flex;
  background: #002b22;
  border-radius: 50%;
  padding: 15px;
  margin-right: 10px;
  font-size: 18px;
  width: 45px;
    height: 45px;
}


.tooltip-icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  padding: 15px;
  margin-right: 10px;
  font-size: 18px;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.tooltip-icon::before,
.tooltip-icon::after {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  position: absolute;
  z-index: 10;
  transform: translateY(10px);
}

.tooltip-icon::before {
  content: attr(data-tooltip);
  background: #002f25;
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  top: -40px;
  white-space: nowrap;
  font-weight: bold;
}

.tooltip-icon::after {
  content: '';
  border-width: 6px;
  border-style: solid;
  border-color: #002f25 transparent transparent transparent;
  top: -8px;
}

.tooltip-icon:hover::before,
.tooltip-icon:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



 /* Google Map Section  */
.map-section {
  width: 100%;
  height: 488px;
  padding: 0;
  margin: 0;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* bracnch start  */
.branches-section {
  padding: 80px 0;
  background-color: #fff;
}

.branches-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.branches-header {
  text-align: center;
  margin-bottom: 50px;
}

.branches-badge {
   display: inline-block;
  padding: 3px 19px;
  font-size: 16x;
  font-weight: 600;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 20px 16px;
  border-radius: 30px;
  font-family: var(--font-family-Space);
  border: 2px solid #f9f8f3;
  color: #182F27;
}

.branches-title {
  font-size: 54px;
  font-weight: 700;
  color: #12372A;
  margin-top: 20px;
  font-family: var(--font-family-Space);
  justify-content: center;
}

.animated-branches-title {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.animated-branches-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.6s ease forwards;
}

/* Delay each word for wave effect */
.animated-branches-title span:nth-child(1) { animation-delay: 0.1s; }
.animated-branches-title span:nth-child(2) { animation-delay: 0.3s; }
.animated-branches-title span:nth-child(3) { animation-delay: 0.5s; }

@keyframes riseUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.branches-subtitle {
  font-size: 20px;
  color: #6b6b6b;
  margin-top: 10px;
  font-family: var(--font-family-Outfit);
}

.branches-cards-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.branches-card {
  flex: 1 1 30%;
  background-color: #fff;
  border-radius: 16px;
  font-family: var(--font-family-Outfit);
}

.branches-image-box {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.branches-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-out;
  will-change: transform;
}


.branches-city {
  font-size: 24px;
  color: #12372A;
  margin: 18px 0 10px 0;
  font-family: var(--font-family-Space);
}

.animated-city {
  display: inline-block;
}

.animated-city span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

@keyframes riseUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.branches-address {
  font-size: 20px;
  color: #4a4a4a;
  line-height: 1.5;
  font-family: var(--font-family-Outfit);
}

.branches-map-link {
  display: inline-block;
  margin-top: 10px;
  color: #12372A;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
  font-family: var(--font-family-Space);
}
.branches-map-link:hover{
    color: #b2d45b;
  transform: translateY(-4px);
  transition: 0.5s ease-in-out;
}

.branches-contact {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.branches-call-icon {
  width: 52px;
  height: 52px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
  color: #12372A;
      margin-bottom: 15px;
}

.branches-contact-text .branches-phone {
  font-weight: 700;
  font-size: 18px;
  color: #12372A;
  font-family: var(--font-family-Space);
  margin-bottom: 0;
}
.branches-contact-text .branches-phone:hover{
      color: #b2d45b;
  transform: translateY(-4px);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.branches-contact-text .branches-email {
  font-size: 18px;
  color: #6b6b6b;
  margin-top: 4px;
  font-family: "Roboto",sans-serif;
}
.branches-contact-text .branches-email:hover{
    transform: translateY(-4px);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

/* 🔁 Responsive */
@media (max-width: 992px) {
  .branches-cards-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .branches-card {
    flex: 1 1 100%;
  }
}
.hero-content h1 {
  font-size: 2.6vw;
  font-weight: 600;
  white-space: normal;
  line-height: 1.3;
  color: #fff;
  max-width: 100%;
  word-break: normal;
}

.hero-container {
  max-width: 100%;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.hero-content {
  max-width: 85%;
  text-align: left; /* or center, as per design */
}
@media (max-width: 768px) {
  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 6vw;              /* Bigger text for small screens */
    line-height: 1.4;
    max-width: 100%;
  }

  .btn-services {
    margin-top: 20px;
    display: inline-block;
  }
}
.strategy-box .dag-read-more {
  display: block;
  margin: 0px auto 0 auto; /* Top margin optional */
}
.label-bg {
  background: #3a3e91; /* Light Green Background */
  color: #ffffff; /* Dark Green/Blackish Text */
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Optional */
  font-size: 20px;
}


/* dropdown  */
/* Smart Solutions Navigation */
.smart-solutions-nav {
  position: relative;
  display: inline-block;
}

.smart-solutions-toggle {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #3a3e91;
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-family-Space);
}

.smart-solutions-toggle:hover {
  color: #c5e96b;
}

.smart-solutions-toggle .bi-chevron-down {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.smart-solutions-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  min-width: 248px;
  z-index: 1002; /* Higher than header */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.smart-solutions-menu a {
  padding: 12px 20px;
  color: #06306d;
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.smart-solutions-menu a:last-child {
  border-bottom: none;
}

.smart-solutions-menu a:hover {
  background-color: #edf1f8;
  color: #3a3e91;
  padding-left: 20px;
}

/* Show dropdown on hover */
.smart-solutions-nav:hover .smart-solutions-menu {
  display: flex;
}

.smart-solutions-nav:hover .smart-solutions-toggle .bi-chevron-down {
  transform: rotate(180deg);
}

/* Mobile Styles */
@media (max-width: 991px) {
  .smart-solutions-nav {
    width: 100%;
  }
  
  .smart-solutions-toggle {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .smart-solutions-menu {
    position: static;
    display: none;
    box-shadow: none;
    background-color: rgba(0,40,34,0.2);
    border: none;
    border-radius: 0;
    margin-top: 5px;
  }
  
  .smart-solutions-menu a {
    padding: 10px 15px;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
  }
  
  /* Show dropdown when focused (mobile accessibility) */
  .smart-solutions-toggle:focus + .smart-solutions-menu,
  .smart-solutions-toggle:active + .smart-solutions-menu {
    display: flex;
  }
}





/* call and whatsapp  */

/* Common Floating Button Style */
.float-btn {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 22px;
  line-height: 55px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Call button on left */
.call-btn {
  left: 20px;
  background-color: #007bff; /* Bootstrap blue */
}

/* WhatsApp button on right */
.whatsapp-btn {
  right: 20px;
  background-color: #25D366; /* WhatsApp green */
}
