:root {
--font-family-Space:'Poppins', sans-serif;
--font-family-Outfit: 'Inter', sans-serif ;
--primary: #fe8f01;
--secondary: #333333;
--accent: #ff6b00;
--light-bg: #f8f9fa;
--white: #ffffff;
--dark-blue: #0066cc;
 --text:#3a3e91;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
      font-family: 'Poppins', sans-serif;
}



.smart-logo {
  margin-left: 20px;
}

.smart-logo img {
  max-height: 60px;
  width: auto;
}

.smart-container {
  height: 100%;
  align-items: center;
}
.smart-header {
  height: 80px;

}


/* 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:60px;
        }
        .smart-nav {
            display: flex;
            gap: 30px;
            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: #fe8f01;
        }


        .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;
  }
}






/* 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.3); /* 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);
  transition: all 0.5s ease;
}
.btn-services:hover{
  background-color: #fe8f01;
}

/* 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;
  }
}









/* Work Process start  */





.work-process {
  padding: 80px 20px;
 background-color: var(--light-bg);
  text-align: center;
}


.section-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-Space);
  font-size: 20px;
  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: var(--text); /* 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: var(--primary);
  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: var(--text);
  border-radius: 50%;
}

.arrow {
  font-size: 30px;
  color: var(--primary);
  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  */


/* 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:'Poppins', sans-serif;
--font-family-Outfit: 'Inter', 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;
  }
}


















/* NEW ABOUT US SECTION START  */
   :root {
--font-family-Space:'Poppins', sans-serif;
--font-family-Outfit: 'Inter', sans-serif ;
            --primary: #fe8f01;
            --secondary: #333333;
            --accent: #ff6b00;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --dark-blue: #06306d;
            --text:#3a3e91;
        }
.about-section {
    padding: 5rem 0;
    /* background-color: var(--light-bg); */
    color: var(--secondary);
    font-family: var(--font-family-Outfit);
}

.about-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--accent);
}

.about-section h2 {
    font-family: var(--font-family-Space);
    font-weight: 600;
    color: var(--secondary);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-section h5 {
    font-family: var(--font-family-Space);
    font-weight: 500;
    color: var(--instalit-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-section p {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.logo-highlight {
    color: var(--text);
    font-weight: 700;
}

.image-slider {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.image-container {
            position: relative;
            height: 100%;
            min-height: 400px;
        }
        
        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .floating-badge {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0,102,204,0.2);
        }
        
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .expertise-item {
            background: #f8f9fa;
            padding: 0.8rem;
            border-radius: 6px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        
        .expertise-item i {
            color: var(--primary);
            margin-right: 8px;
            font-size: 1rem;
        }
        
        @media (max-width: 992px) {
            .image-container {
                min-height: 300px;
                margin-top: 2rem;
            }
        }


/* New mission and vision start */
/* Vision & Mission Section */
.vision-mission-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

/* Shared Card Styles */
.vision-card,
.mission-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    padding: 2rem;
}

@media (min-width: 992px) {
    .vision-card,
    .mission-card {
        padding: 3rem;
    }
}

/* Vision Card Specific */
.vision-card {
    border-left: 4px solid var(--primary);
}

.vision-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #0066cc;
    font-size: 1.8rem;
}

.vision-title {
    font-family: var(--font-space);
    color: var(--text);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.vision-text {
    font-family: var(--font-outfit);
    color: var(--secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--accent);
}

/* Mission Card Specific */
.mission-card {
    border-left: 4px solid var(--accent);
}

.mission-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.8rem;
}

.mission-title {
    font-family: var(--font-space);
    color: var(--text);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mission-list {
    list-style: none;
    padding-left: 20px;
    border-left: 2px solid var(--primary);
}

.mission-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    font-family: var(--font-outfit);
    color: var(--secondary);
    line-height: 1.6;
}

.mission-item:last-child {
    margin-bottom: 0;
}

.mission-item i {
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 3rem 0;
    }
    
    .vision-title,
    .mission-title {
        font-size: 1.5rem;
    }
    
    .vision-text,
    .mission-item {
        font-size: 1rem;
    }
}

/* End Mission and vision  */



        /* NEW SERVICEs SECTION  */
/* Base Styles */
.instalit-services-fullwidth {
    width: 100%;
    padding: 5rem 0;
    background-color: var(--instalit-white);
    font-family: var(--font-outfit);
}

.instalit-services-header {
    padding: 0 15px;
}

.instalit-services-title {
    font-family: var(--font-space);
    color: var(--text);
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.instalit-services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--instalit-orange);
}

.instalit-services-subtitle {
    color: var(--instalit-dark);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Service Items */
.instalit-service-item {
    background: var(--instalit-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.instalit-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.instalit-service-imgbox {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.instalit-service-imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instalit-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.instalit-service-item:hover img {
    transform: scale(1.05);
}

.instalit-service-content {
    padding: 1.5rem;
}

.instalit-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.instalit-service-content h3 {
    font-family: var(--font-space);
    color: var(--instalit-dark);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.instalit-service-content p {
    color: var(--instalit-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .instalit-service-imgbox {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .instalit-services-fullwidth {
        padding: 3rem 0;
    }
    
    .instalit-services-title {
        font-size: 2rem;
    }
    
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .instalit-services-title {
        font-size: 1.75rem;
    }
    
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .instalit-service-imgbox {
        height: 180px;
    }
}


 /* Why Choose Us Section Start  */


/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.choose-center{
  text-align: center;
}

.why-choose-us .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-choose-us .section-title {
  text-align: center;
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.why-choose-us .divider {
  width: 80px;
  height: 3px;
  background-color: #ff6b00;
  margin: 0 auto 40px;
}

.why-choose-us .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-choose-us .feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.why-choose-us .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-us .feature-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.why-choose-us .feature-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.why-choose-us .feature-desc {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-choose-us .features-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-us {
    padding: 60px 0;
  }
  
  .why-choose-us .section-title {
    font-size: 2rem;
  }
}

 /* Why Choose Us Section End  */

 /* STart KEY  */
/* Key Projects Section */
.key-projects {
  padding: 80px 0;
  background-color: #fff;
}

.key-projects .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.key-projects .section-title {
  text-align: center;
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.key-projects .divider {
  width: 80px;
  height: 3px;
  background-color: #ff6b00;
  margin: 0 auto 40px;
}

/* Projects Grid */
.key-projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Project Card */
.key-projects .project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 1/1; /* Makes cards square */
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-projects .project-card:hover {
  transform: translateY(-10px);
}

/* Client Logo Styling */
.key-projects .project-logo img {
  max-width: 100%;
  /* max-height: 70%; */
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.key-projects .project-card:hover .project-logo img {
  filter: grayscale(0%);
}

/* Hover Overlay */
.key-projects .project-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background:#096290;
  color: white;
  padding: 20px;
  transition: bottom 0.3s ease;
}

.key-projects .project-card:hover .project-overlay {
  bottom: 0;
}

.key-projects .project-overlay h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.key-projects .project-overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .key-projects .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .key-projects {
    padding: 60px 0;
  }
}

 /* END KEY  */

 /* Certifications Section start*/
.certifications {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.certifications .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.certifications .section-title {
  text-align: center;
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.certifications .divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary);
  margin: 0 auto 40px;
}

/* Certification Card */
.certification-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.cert-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-top: 5px;
}

.cert-content h3 {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 15px;
}

.cert-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.cert-list {
  padding-left: 20px;
}

.cert-list li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1.1rem;
  position: relative;
}

.cert-list li:before {
  content: "•";
  color: #007bff;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Responsive */
@media (max-width: 768px) {
  .certification-card {
    flex-direction: column;
    padding: 30px;
  }
  
  .certifications {
    padding: 60px 0;
  }
  
  .cert-content h3 {
    font-size: 1.5rem;
  }
}

 /* Certifications Section end */
 /* footer start  */

 /* Footer Top */
.footer-top {
  position: relative;
  padding: 80px 0 60px;
  z-index: 1;
  background-color: #002B22; /* Adjust as needed */
  color: #ffffff;
}

.footer-top-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Logo Box Styles */
.logo-box {
  max-width: 300px;
  flex: 1;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 16px;
  color: #7f9590;
  line-height: 1.6;
  font-family: var(--font-family-Outfit);
}

/* Footer Columns */
.footer-column {

  min-width: 200px;
}

.footer-column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 16px;
  color: #7f9590;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

/* Contact Info Styles */
.contact-info {
  margin-top: 10px;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
  color: #7f9590;
  line-height: 1.6;
  font-size: 16px;
}

.contact-icon {
  margin-right: 10px;
  color: #b2d45b; /* Adjust to match your brand color */
}
.contact-icon img{
  width: 30px;
  height: auto;
}
.contact-text {
  flex: 1;
}
.contact-text:hover{
  color: var(--primary);
}

.vertical-line {
  width: 1px;
  background-color: rgba(255,255,255,0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-top-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .vertical-line {
    display: none;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .logo-box {
    max-width: 100%;
  }
}


.contact-details{
  text-decoration: none;
  color: #7f9590;
}




/* whatsapp and call  */
.phone_btn{
  position:fixed;
  border-radius: 50%;
  bottom: 5%;
  left: 5%;
  z-index: 2;
  background-color: white;
  padding: 4px;
}

.whatsapp_btn{
  position:fixed;
  border-radius: 50%;
  bottom: 5%;
  right: 5%;
  z-index: 2;
  background-color: white;
}


@media (min-width: 767px) {
  .whatsapp_btn,.phone_btn{
    display: none;
  }
}
