 :root {
     --primary-color: #123329;
     --secondary-color: #00D47E;
     --accent-color: #FF6B6B;
     --light-color: #F8F9FA;
     --dark-color: #212529;
     --text-color: #2D3748;
     --light-gray: #F1F5F9;
     --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     --white-color: #ffffff;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 

 body {
     font-family: 'Montserrat', sans-serif;
     color: var(--text-color);
     background-color: #ffffff;
     line-height: 1.6;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 600;
     color: var(--primary-color);
 }

 /* Navbar Styling */
 .navbar {
     background: rgba(255, 255, 255, 0.95);
     padding: 1.2rem 0;
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     transition: var(--transition);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(18, 51, 41, 0.08);
 }

 .navbar.navbar-scrolled {
     box-shadow: 0 5px 30px rgba(18, 51, 41, 0.1);
     padding: 0.8rem 0;
     border-bottom: 1px solid rgba(18, 51, 41, 0.1);
 }

 .navbar-brand {
     display: flex;
     align-items: center;
 }

 .logo-text {
     font-family: 'Playfair Display', serif;
     font-weight: 700;
     font-size: 1.8rem;
     color: var(--primary-color);
     letter-spacing: 0.5px;
 }

 .logo-highlight {
     color: var(--secondary-color);
 }

 .navbar-nav {
     margin: 0 auto;
 }

 .nav-item {
     margin: 0 0.6rem;
     position: relative;
 }

 .nav-link {
     color: var(--primary-color) !important;
     font-weight: 500;
     font-size: 1rem;
     padding: 0.5rem 1rem !important;
     position: relative;
     transition: var(--transition);
     letter-spacing: 0.3px;
 }

 /* .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 2px;
     background: var(--secondary-color);
     transition: var(--transition);
 }

 .nav-link:hover::after,
 .nav-link.active::after {
     width: 70%;
 } */

 .nav-link:hover {
     color: var(--secondary-color) !important;
 }

 .nav-link.active {
     color: var(--secondary-color) !important;
 }

 .contact-btn {
     background: var(--secondary-color);
     color: white !important;
     border-radius: 30px;
     padding: 0.5rem 1.8rem !important;
     font-weight: 600;
     transition: var(--transition);
     margin-left: 1rem;
 }

 .contact-btn:hover {
     background: #00b96d;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 212, 126, 0.3);
 }

 .contact-btn::after {
     display: none;
 }

 .navbar-toggler {
     border: none;
     outline: none;
     box-shadow: none !important;
     color: var(--primary-color);
 }

 .dropdown-submenu {
     position: relative;
 }

 .dropdown-submenu>.dropdown-menu {
     top: 0;
     left: 100%;
     margin-top: -1px;
 }

 .dropdown-submenu:hover>.dropdown-menu {
     display: block;
 }

.dropdown-item{
    font-size: 14px;
}
 /* Hero Section */
 .hero-section {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding-top: 5rem;
     background: linear-gradient(135deg, rgba(18, 51, 41, 0.03) 0%, rgba(0, 212, 126, 0.03) 100%);
     position: relative;
     overflow: hidden;
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero-title {
     font-size: 3.8rem;
     line-height: 1.15;
     margin-bottom: 1.5rem;
     font-family: 'Montserrat', sans-serif;
 }

 .hero-subtitle {
     font-size: 1.3rem;
     font-weight: 400;
     color: var(--text-color);
     max-width: 600px;
     margin-bottom: 2.5rem;
 }

 .hero-highlight {
     color: var(--secondary-color);
     position: relative;
 }

 .hero-btns {
     display: flex;
     gap: 1rem;
 }

 .btn-primary-custom {
     background: linear-gradient(135deg, var(--primary-color) 0%, #1a4f3e 100%);
     border: none;
     color: white;
     padding: 0.9rem 2.5rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 30px;
     transition: var(--transition);
     box-shadow: 0 10px 25px rgba(18, 51, 41, 0.2);
 }

 .btn-primary-custom:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(18, 51, 41, 0.3);
     color: #F1F5F9;
 }

 .btn-outline-custom {
     background: transparent;
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
     padding: 0.9rem 2.5rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 30px;
     transition: var(--transition);
 }

 .btn-outline-custom:hover {
     background: var(--primary-color);
     color: white;
     transform: translateY(-3px);
 }

 .hero-img {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 30px 60px rgba(18, 51, 41, 0.15);
     transform: perspective(1000px) rotateY(-5deg);
     transition: var(--transition);
 }

 .hero-img:hover {
     transform: perspective(1000px) rotateY(0deg);
 }

 .hero-img::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     /* background: linear-gradient(45deg, rgba(18, 51, 41, 0.1) 0%, rgba(0, 212, 126, 0.1) 100%); */
     background: linear-gradient(135deg, rgba(18, 51, 41, 0.03) 0%, rgba(0, 212, 126, 0.03) 100%);

 }

 .hero-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .hero-shape {
     position: absolute;
     width: 600px;
     height: 600px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(0, 212, 126, 0.08) 0%, rgba(18, 51, 41, 0.08) 100%);
     top: -300px;
     right: -300px;
     z-index: 1;
 }

 /* Features Section */
 .section-title {
     text-align: center;
     margin-bottom: 3.5rem;
     font-family: 'Montserrat', sans-serif;
 }

 .section-title h2 {
     font-size: 2.5rem;
     position: relative;
     display: inline-block;
     margin-bottom: 1.5rem;
     font-family: 'Montserrat', sans-serif;
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: var(--secondary-color);
     border-radius: 2px;
 }

 .features-section {
     padding: 6rem 0;
     background: var(--light-gray);
 }

 .feature-card {
     background: white;
     border-radius: 15px;
     padding: 2.5rem 2rem;
     box-shadow: 0 15px 40px rgba(18, 51, 41, 0.05);
     transition: var(--transition);
     height: 100%;
     position: relative;
     overflow: hidden;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(18, 51, 41, 0.1);
 }

 .feature-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 4px;
     height: 0;
     background: var(--secondary-color);
     transition: var(--transition);
 }

 .feature-card:hover::before {
     height: 100%;
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     background: rgba(0, 212, 126, 0.1);
     border-radius: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.8rem;
     font-size: 1.8rem;
     color: var(--primary-color);
     transition: var(--transition);
 }

 .feature-card:hover .feature-icon {
     background: var(--secondary-color);
     color: white;
     transform: rotateY(180deg);
 }

 .feature-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1.2rem;
     font-family: 'Montserrat', sans-serif;
 }

 .feature-card p {
     color: #718096;
     margin-bottom: 1.5rem;
 }

 .feature-link {
     color: var(--primary-color);
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     transition: var(--transition);
 }

 .feature-link i {
     margin-left: 0.5rem;
     transition: var(--transition);
 }

 .feature-link:hover {
     color: var(--secondary-color);
 }

 .feature-link:hover i {
     transform: translateX(5px);
 }

 /* Stats Section */
 .stats-section {
     padding: 5rem 0;
     background: linear-gradient(135deg, var(--primary-color) 0%, #1a4f3e 100%);
     color: white;
 }

 .stat-item {
     text-align: center;
     padding: 1.5rem;
 }

 .stat-number {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
     font-family: 'Playfair Display', serif;
 }

 .stat-text {
     font-size: 1.1rem;
     opacity: 0.9;
 }

 /* Google-Style Testimonials */

/* Testimonial Section */
.testimonial-section {
  padding-top: 82px;
  padding-bottom: 72px;
}

/* Swiper */
.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  border-radius: 40px;
  padding: 30px 23px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
}

.swiper-slide img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #504b4b;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-text, #333333);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -4px;
}

.swiper.testimonial-wrapper {
  padding-top: 59px;
  padding-bottom: 60px;
}

/* Testimonial Items */
.testimonial-items .testimonial-text {
  color: var(--white-text-white, #ffffff);
  text-align: center;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: normal;
  font-style: normal;
  max-width: 330px;
  margin-bottom: 45px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.testimonial-items .testimonial-title {
  color: var(--white-text-white, #ffffff);
  text-align: center;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  font-style: normal;
  margin-bottom: 35px;
  position: relative;
}

.testimonial-items .testimonial-title::before {
  position: absolute;
  left: -23px;
  top: 9px;
  width: 20px;
  height: 1px;
  background-color: var(--white-text-white, #ffffff);
}

.testimonial-img {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Remove static background images */
.testimonial-img.tm-img-1,
.testimonial-img.tm-img-2,
.testimonial-img.tm-img-3 {
  /* No background images; rely on <img> tags */
}

/* Media Queries */
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
  }
  .section-title::before,
  .section-title::after {
    width: 141px;
  }
}

/* =========================================================== */

 /* Footer */
 .footer {
     background: #0a1c16;
     color: rgba(255, 255, 255, 0.8);
     padding: 5rem 0 2rem;
 }

 .footer-title {
     color: white;
     font-size: 1.5rem;
     margin-bottom: 1.8rem;
     position: relative;
     padding-bottom: 0.8rem;
 }

 .footer-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 3px;
     background: var(--secondary-color);
 }

 .footer-links a {
     display: block;
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     margin-bottom: 0.8rem;
     transition: var(--transition);
 }

 .footer-links a:hover {
     color: var(--secondary-color);
     transform: translateX(5px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 2rem;
     margin-top: 3rem;
     text-align: center;
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.6);
 }

 /* Responsive */
 @media (max-width: 992px) {
     .hero-title {
         font-size: 3rem;
     }

     .navbar-nav {
         padding: 1.5rem 0;
     }

     .contact-btn {
         margin-left: 0;
         margin-top: 1rem;
         display: inline-block;
         width: auto;
     }
 }

 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.5rem;
     }

     .hero-subtitle {
         font-size: 1.1rem;
     }

     .section-title h2 {
         font-size: 2rem;
     }

     .stat-number {
         font-size: 2.5rem;
     }

     .testimonial-card {
         padding: 2rem;
     }

     .testimonial-text {
         font-size: 1.1rem;
     }
 }

 .contact-btn {
     background: var(--secondary-color);
     color: white !important;
     border-radius: 30px;
     padding: 0.6rem 2rem !important;
     font-weight: 600;
     transition: var(--transition);
     margin-left: 1.5rem;
     letter-spacing: 0.5px;
 }

 .contact-btn:hover {
     background: #00a566;
     transform: translateY(-2px);
     box-shadow: 0 5px 20px rgba(0, 194, 116, 0.3);
 }

 .contact-btn::after {
     display: none;
 }

 .navbar-toggler {
     border: none;
     outline: none;
     box-shadow: none !important;
     color: var(--primary-color);
 }

 /* Page Header */
 .page-header {
     padding: 12rem 0 8rem;
     background: linear-gradient(135deg, rgba(13, 43, 33, 0.03) 0%, rgba(0, 194, 116, 0.03) 100%);
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .page-header h1 {
     font-size: 4rem;
     margin-bottom: 1.5rem;
     line-height: 1.2;
 }

 .page-header p {
     font-size: 1.3rem;
     max-width: 700px;
     margin: 0 auto;
     color: var(--text-color);
     opacity: 0.9;
 }

 .page-header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
     opacity: 0.03;
     z-index: -1;
 }

 /* About Story Section */
 .about-story {
     padding: 8rem 0;
     position: relative;
 }

 .about-story-img {
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 30px 60px rgba(13, 43, 33, 0.08);
     transition: var(--transition);
     position: relative;
 }

 .about-story-img::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(13, 43, 33, 0.1) 0%, rgba(0, 194, 116, 0.1) 100%);
     z-index: 1;
 }

 .about-story-img:hover {
     transform: translateY(-10px);
     box-shadow: 0 40px 80px rgba(13, 43, 33, 0.12);
 }

 .about-story-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

 .about-story-img:hover img {
     transform: scale(1.03);
 }

 .about-story-content h2 {
     font-size: 2.8rem;
     margin-bottom: 2rem;
     position: relative;
     display: inline-block;
 }

 .about-story-content h2::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 0;
     width: 100px;
     height: 4px;
     background: var(--secondary-color);
     border-radius: 2px;
 }

 .about-story-content p {
     margin-bottom: 2rem;
     font-size: 1.1rem;
     color: var(--text-color);
     opacity: 0.9;
 }

 .timeline {
     position: relative;
     margin-top: 3rem;
 }

 .timeline::before {
     content: '';
     position: absolute;
     top: 0;
     left: 15px;
     height: 100%;
     width: 2px;
     background: var(--secondary-color);
 }

 .timeline-item {
     position: relative;
     padding-left: 50px;
     margin-bottom: 2.5rem;
 }

 .timeline-year {
     position: absolute;
     left: 0;
     top: 0;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: var(--secondary-color);
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 600;
     font-size: 0.9rem;
 }

 .timeline-content h4 {
     font-size: 1.3rem;
     margin-bottom: 0.5rem;
     color: var(--primary-color);
 }

 .timeline-content p {
     font-size: 1rem;
     color: var(--text-color);
     opacity: 0.8;
 }

 /* Mission Vision Section */
 .mission-vision {
     padding: 8rem 0;
     background: var(--light-color);
     position: relative;
 }

 .mission-vision::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
     opacity: 0.03;
     z-index: 0;
 }

 .mission-vision .container {
     position: relative;
     z-index: 1;
 }

 .mission-vision-card {
     background: white;
     border-radius: 8px;
     padding: 4rem 3rem;
     box-shadow: 0 20px 50px rgba(13, 43, 33, 0.05);
     height: 100%;
     position: relative;
     overflow: hidden;
     transition: var(--transition);
     border: 1px solid rgba(0, 194, 116, 0.1);
 }

 .mission-vision-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 30px 60px rgba(13, 43, 33, 0.1);
 }

 .mission-vision-card h3 {
     font-size: 2rem;
     margin-bottom: 2rem;
     color: var(--primary-color);
     position: relative;
 }

 .mission-vision-card h3::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 50px;
     height: 3px;
     background: var(--secondary-color);
 }

 .mission-vision-card p {
     color: var(--text-color);
     margin-bottom: 1.5rem;
     opacity: 0.9;
 }

 .mission-vision-icon {
     position: absolute;
     top: 2rem;
     right: 2rem;
     font-size: 3rem;
     color: rgba(0, 194, 116, 0.1);
     transition: var(--transition);
 }

 .mission-card .mission-vision-icon {
     color: rgba(0, 194, 116, 0.1);
 }

 .vision-card .mission-vision-icon {
     color: rgba(13, 43, 33, 0.1);
 }

 .mission-vision-card:hover .mission-vision-icon {
     transform: scale(1.2);
     opacity: 0.5;
 }

 /* Values Section */
 .values-section {
     padding: 8rem 0;
     background: white;
 }

 .section-title {
     text-align: center;
     margin-bottom: 5rem;
 }

 .section-title h2 {
     font-size: 3rem;
     position: relative;
     display: inline-block;
     margin-bottom: 1.5rem;
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 4px;
     background: var(--secondary-color);
     border-radius: 2px;
 }

 .section-title p {
     max-width: 700px;
     margin: 0 auto;
     font-size: 1.2rem;
     color: var(--text-color);
     opacity: 0.8;
 }

 .value-card {
     background: white;
     border-radius: 8px;
     padding: 3rem 2.5rem;
     box-shadow: 0 15px 40px rgba(13, 43, 33, 0.05);
     height: 100%;
     position: relative;
     overflow: hidden;
     transition: var(--transition);
     border: 1px solid rgba(0, 194, 116, 0.1);
     text-align: center;
 }

 .value-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 60px rgba(13, 43, 33, 0.1);
 }

 .value-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1.5rem;
     color: var(--primary-color);
 }

 .value-card p {
     color: var(--text-color);
     margin-bottom: 1.5rem;
     opacity: 0.8;
 }

 .value-icon {
     width: 80px;
     height: 80px;
     background: rgba(0, 194, 116, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 2rem;
     font-size: 2rem;
     color: var(--primary-color);
     transition: var(--transition);
 }

 .value-card:hover .value-icon {
     background: var(--secondary-color);
     color: white;
     transform: rotateY(180deg);
 }

 /* Team Section */
 .team-section {
     padding: 8rem 0;
     background: var(--light-color);
     position: relative;
 }

 .team-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
     opacity: 0.03;
     z-index: 0;
 }

 .team-section .container {
     position: relative;
     z-index: 1;
 }

 .team-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 20px 50px rgba(13, 43, 33, 0.05);
     transition: var(--transition);
     margin-bottom: 2rem;
     position: relative;
 }

 .team-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(0, 194, 116, 0) 0%, rgba(0, 194, 116, 0.1) 100%);
     z-index: 1;
     opacity: 0;
     transition: var(--transition);
 }

 .team-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 30px 60px rgba(13, 43, 33, 0.1);
 }

 .team-card:hover::before {
     opacity: 1;
 }

 .team-img {
     width: 100%;
     height: 350px;
     overflow: hidden;
 }

 .team-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

 .team-card:hover .team-img img {
     transform: scale(1.05);
 }

 .team-info {
     padding: 2.5rem;
     text-align: center;
     position: relative;
     z-index: 2;
 }

 .team-info h3 {
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
     color: var(--primary-color);
 }

 .team-info p {
     color: var(--secondary-color);
     margin-bottom: 1.5rem;
     font-weight: 500;
     letter-spacing: 1px;
 }

 .team-social {
     display: flex;
     justify-content: center;
     gap: 1rem;
 }

 .team-social a {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(0, 194, 116, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-color);
     transition: var(--transition);
 }

 .team-social a:hover {
     background: var(--secondary-color);
     color: white;
     transform: translateY(-5px);
 }

 /* CTA Section */
 .cta-section {
     padding: 8rem 0;
     background: linear-gradient(135deg, var(--primary-color) 0%, #0f3628 100%);
     color: white;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
     opacity: 0.05;
     z-index: 0;
 }

 .cta-section .container {
     position: relative;
     z-index: 1;
 }

 .cta-section h2 {
     color: white;
     font-size: 3rem;
     margin-bottom: 1.5rem;
 }

 .cta-section p {
     max-width: 700px;
     margin: 0 auto 3rem;
     opacity: 0.9;
     font-size: 1.2rem;
 }

 .cta-btn {
     background: white;
     color: var(--primary-color);
     border: none;
     padding: 1.2rem 3rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 30px;
     transition: var(--transition);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
     letter-spacing: 0.5px;
 }

 .cta-btn:hover {
     background: var(--secondary-color);
     color: white;
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
 }

 /* Footer */
 .footer {
     background: #081a14;
     color: rgba(255, 255, 255, 0.8);
     padding: 6rem 0 2rem;
 }

 .footer-title {
     color: white;
     font-size: 1.5rem;
     margin-bottom: 2rem;
     position: relative;
     padding-bottom: 1rem;
 }

 .footer-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 3px;
     background: var(--secondary-color);
 }

 .footer-links a {
     display: block;
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     margin-bottom: 1rem;
     transition: var(--transition);
     letter-spacing: 0.5px;
 }

 .footer-links a:hover {
     color: var(--secondary-color);
     transform: translateX(5px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 3rem;
     margin-top: 4rem;
     text-align: center;
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.6);
 }


 /* Services Overview Section */
 .services-overview {
     padding: 8rem 0;
     position: relative;
 }

 .services-overview::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
     opacity: 0.03;
     z-index: 0;
 }

 .services-overview .container {
     position: relative;
     z-index: 1;
 }

 .section-title {
     text-align: center;
     margin-bottom: 5rem;
 }

 .section-title h2 {
     font-size: 3rem;
     position: relative;
     display: inline-block;
     margin-bottom: 1.5rem;
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 4px;
     background: var(--secondary-color);
     border-radius: 2px;
 }

 .section-title p {
     max-width: 700px;
     margin: 0 auto;
     font-size: 1.2rem;
     color: var(--text-color);
     opacity: 0.8;
 }

 .service-card {
     background: white;
     border-radius: 8px;
     padding: 3rem;
     box-shadow: 0 20px 50px rgba(13, 43, 33, 0.05);
     height: 100%;
     position: relative;
     overflow: hidden;
     transition: var(--transition);
     border: 1px solid rgba(0, 194, 116, 0.1);
     margin-bottom: 2rem;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 30px 60px rgba(13, 43, 33, 0.1);
 }

 .service-icon {
     width: 80px;
     height: 80px;
     background: rgba(0, 194, 116, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 2rem;
     font-size: 2rem;
     color: var(--primary-color);
     transition: var(--transition);
 }

 .service-card:hover .service-icon {
     background: var(--secondary-color);
     color: white;
     transform: rotateY(180deg);
 }

 .service-card h3 {
     font-size: 1.8rem;
     margin-bottom: 1.5rem;
     text-align: center;
     color: var(--primary-color);
 }

 .service-card p {
     color: var(--text-color);
     margin-bottom: 2rem;
     text-align: center;
     opacity: 0.9;
 }

 .service-link {
     display: block;
     text-align: center;
     color: var(--secondary-color);
     font-weight: 600;
     text-decoration: none;
     transition: var(--transition);
     letter-spacing: 0.5px;
 }

 .service-link i {
     margin-left: 0.5rem;
     transition: var(--transition);
 }

 .service-link:hover {
     color: var(--primary-color);
 }

 .service-link:hover i {
     transform: translateX(5px);
 }

 /* Approach Section */
 .approach-section {
     padding: 8rem 0;
     background: var(--light-color);
     position: relative;
 }

 .approach-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
     opacity: 0.03;
     z-index: 0;
 }

 .approach-section .container {
     position: relative;
     z-index: 1;
 }

 .approach-step {
     display: flex;
     margin-bottom: 3rem;
     align-items: flex-start;
 }

 .step-number {
     width: 60px;
     height: 60px;
     background: var(--secondary-color);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     font-weight: 600;
     margin-right: 2rem;
     flex-shrink: 0;
 }

 .step-content h3 {
     font-size: 1.8rem;
     margin-bottom: 1rem;
     color: var(--primary-color);
 }

 .step-content p {
     color: var(--text-color);
     opacity: 0.9;
 }

 /* CTA Section */
 .cta-section {
     padding: 8rem 0;
     background: linear-gradient(135deg, var(--primary-color) 0%, #0f3628 100%);
     color: white;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
     opacity: 0.05;
     z-index: 0;
 }

 .cta-section .container {
     position: relative;
     z-index: 1;
 }

 .cta-section h2 {
     color: white;
     font-size: 3rem;
     margin-bottom: 1.5rem;
 }

 .cta-section p {
     max-width: 700px;
     margin: 0 auto 3rem;
     opacity: 0.9;
     font-size: 1.2rem;
 }

 .cta-btn {
     background: white;
     color: var(--primary-color);
     border: none;
     padding: 1.2rem 3rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 30px;
     transition: var(--transition);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
     letter-spacing: 0.5px;
 }

 .cta-btn:hover {
     background: var(--secondary-color);
     color: white;
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
 }



 .highlight-item {
     background-color: #fff;
     border-left: 4px solid var(--secondary-color);
     padding: 20px;
     margin-bottom: 20px;
     border-radius: 10px;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
 }


 .faq-section {
     /* max-width: 1200px; */
     margin: 0 auto;
     padding: 6rem 0;
     background-color: #f1f5f9;
     font-family: 'Montserrat', sans-serif;
 }

 .faq-section h2 {
     text-align: center;
     color: #333;
     margin-bottom: 30px;
     font-size: 32px;
 }

 .faq-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
 }

 .faq-column {
     flex: 1;
     min-width: 300px;
 }

 .faq-item {
     margin-bottom: 15px;
     border: 1px solid #e0e0e0;
     border-radius: 8px;
     overflow: hidden;
 }

 .faq-question {
     width: 100%;
     text-align: left;
     padding: 18px 20px;
     background: #f1f5f9;
     border: none;
     outline: none;
     cursor: pointer;
     font-size: 18px;
     font-weight: 600;
     color: #333;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background 0.3s ease;
 }

 .faq-question:hover {
     background: #f0f0f0;
 }

 .toggle-icon {
     font-size: 20px;
     font-weight: bold;
 }

 .faq-answer {
     padding: 0;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease, padding 0.3s ease;
     background: white;
 }

 .faq-answer p {
     padding: 20px;
     margin: 0;
     color: #555;
     line-height: 1.6;
 }

 .faq-item.active .faq-answer {
     max-height: 500px;
     padding: 0;
 }

 .faq-item.active .toggle-icon {
     content: "-";
 }

 /* Industries */

 /* Insights Section */
 .insights-section {
     padding: 8rem 0;
     position: relative;
 }

 .insights-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
     opacity: 0.03;
     z-index: 0;
 }

 .insights-section .container {
     position: relative;
     z-index: 1;
 }

 .section-title {
     text-align: center;
     margin-bottom: 5rem;
 }

 .section-title h2 {
     font-size: 3rem;
     position: relative;
     display: inline-block;
     margin-bottom: 1.5rem;
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 4px;
     background: var(--secondary-color);
     border-radius: 2px;
 }

 .section-title p {
     max-width: 700px;
     margin: 0 auto;
     font-size: 1.2rem;
     color: var(--text-color);
     opacity: 0.8;
 }

 .insights-filter {
     display: flex;
     justify-content: center;
     margin-bottom: 4rem;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .filter-btn {
     background: white;
     color: var(--primary-color);
     border: 1px solid rgba(0, 194, 116, 0.3);
     border-radius: 30px;
     padding: 0.6rem 1.8rem;
     font-weight: 500;
     transition: var(--transition);
     cursor: pointer;
 }

 .filter-btn:hover,
 .filter-btn.active {
     background: var(--secondary-color);
     color: white;
     border-color: var(--secondary-color);
 }

 .insights-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 2rem;
     margin-bottom: 4rem;
 }

 .insight-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 20px 50px rgba(13, 43, 33, 0.05);
     transition: var(--transition);
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .insight-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 30px 60px rgba(13, 43, 33, 0.1);
 }

 .insight-img {
     width: 100%;
     height: 220px;
     overflow: hidden;
 }

 .insight-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

 .insight-card:hover .insight-img img {
     transform: scale(1.05);
 }

 .insight-content {
     padding: 2rem;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .insight-category {
     display: inline-block;
     background: rgba(0, 194, 116, 0.1);
     color: var(--secondary-color);
     font-size: 0.8rem;
     font-weight: 600;
     padding: 0.3rem 1rem;
     border-radius: 30px;
     margin-bottom: 1rem;
     letter-spacing: 0.5px;
 }

 .insight-title {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: var(--primary-color);
 }

 .insight-excerpt {
     color: var(--text-color);
     margin-bottom: 1.5rem;
     opacity: 0.9;
     flex-grow: 1;
 }

 .insight-meta {
     display: flex;
     align-items: center;
     color: var(--text-color);
     opacity: 0.7;
     font-size: 0.9rem;
     margin-bottom: 1.5rem;
 }

 .insight-meta span {
     margin-right: 1rem;
     display: flex;
     align-items: center;
 }

 .insight-meta i {
     margin-right: 0.5rem;
     font-size: 0.8rem;
 }

 .insight-link {
     color: var(--secondary-color);
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     transition: var(--transition);
 }

 .insight-link i {
     margin-left: 0.5rem;
     transition: var(--transition);
 }

 .insight-link:hover {
     color: var(--primary-color);
 }

 .insight-link:hover i {
     transform: translateX(5px);
 }

 .pagination {
     display: flex;
     justify-content: center;
     margin-top: 4rem;
 }


 .page-link {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 0.5rem;
     color: var(--primary-color);
     font-weight: 600;
     text-decoration: none;
     transition: var(--transition);
     border: 1px solid rgba(0, 194, 116, 0.3);
 }

 .page-link:hover,
 .page-link.active {
     background: var(--secondary-color);
     color: white;
     border-color: var(--secondary-color);
 }

 /* Featured Insight */
 .featured-insight {
     margin-bottom: 6rem;
 }

 .featured-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 20px 50px rgba(13, 43, 33, 0.05);
     transition: var(--transition);
     display: flex;
     flex-direction: column;
 }

 @media (min-width: 992px) {
     .featured-card {
         flex-direction: row;
         height: 400px;
     }

     .featured-img {
         width: 50%;
         height: auto;
     }

     .featured-content {
         width: 50%;
     }
 }

 .featured-img {
     height: 300px;
     overflow: hidden;
 }

 .featured-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

 .featured-card:hover .featured-img img {
     transform: scale(1.05);
 }

 .featured-content {
     padding: 3rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .featured-category {
     display: inline-block;
     background: rgba(0, 194, 116, 0.1);
     color: var(--secondary-color);
     font-size: 0.9rem;
     font-weight: 600;
     padding: 0.4rem 1.2rem;
     border-radius: 30px;
     margin-bottom: 1.5rem;
     letter-spacing: 0.5px;
 }

 .featured-title {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     color: var(--primary-color);
 }

 .featured-excerpt {
     color: var(--text-color);
     margin-bottom: 2rem;
     opacity: 0.9;
     font-size: 1.1rem;
 }

 /* Newsletter Section */
 .newsletter-section {
     padding: 6rem 0;
     background: var(--light-color);
     text-align: center;
 }

 .newsletter-form {
     max-width: 600px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 1rem;
 }

 .newsletter-input {
     flex-grow: 1;
     min-width: 300px;
     padding: 1rem;
     border: 1px solid rgba(0, 194, 116, 0.3);
     border-radius: 30px;
     font-family: 'Montserrat', sans-serif;
     transition: var(--transition);
 }

 .newsletter-input:focus {
     outline: none;
     border-color: var(--secondary-color);
     box-shadow: 0 0 0 3px rgba(0, 194, 116, 0.1);
 }

 .newsletter-btn {
     background: var(--secondary-color);
     color: white;
     border: none;
     padding: 1rem 2.5rem;
     font-size: 1rem;
     font-weight: 600;
     border-radius: 30px;
     transition: var(--transition);
     cursor: pointer;
 }

 .newsletter-btn:hover {
     background: #00a566;
     transform: translateY(-2px);
 }

 /* Blog */

 /* Insights Section */
 .insights-section {
     padding: 8rem 0;
     position: relative;
 }

 .insights-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
     opacity: 0.03;
     z-index: 0;
 }

 .insights-section .container {
     position: relative;
     z-index: 1;
 }

 .section-title {
     text-align: center;
     margin-bottom: 5rem;
 }

 .section-title h2 {
     font-size: 3rem;
     position: relative;
     display: inline-block;
     margin-bottom: 1.5rem;
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 4px;
     background: var(--secondary-color);
     border-radius: 2px;
 }

 .section-title p {
     max-width: 700px;
     margin: 0 auto;
     font-size: 1.2rem;
     color: var(--text-color);
     opacity: 0.8;
 }

 .insights-filter {
     display: flex;
     justify-content: center;
     margin-bottom: 4rem;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .filter-btn {
     background: white;
     color: var(--primary-color);
     border: 1px solid rgba(0, 194, 116, 0.3);
     border-radius: 30px;
     padding: 0.6rem 1.8rem;
     font-weight: 500;
     transition: var(--transition);
     cursor: pointer;
 }

 .filter-btn:hover,
 .filter-btn.active {
     background: var(--secondary-color);
     color: white;
     border-color: var(--secondary-color);
 }

 .insights-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 2rem;
     margin-bottom: 4rem;
 }

 .insight-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 20px 50px rgba(13, 43, 33, 0.05);
     transition: var(--transition);
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .insight-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 30px 60px rgba(13, 43, 33, 0.1);
 }

 .insight-img {
     width: 100%;
     height: 220px;
     overflow: hidden;
 }

 .insight-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

 .insight-card:hover .insight-img img {
     transform: scale(1.05);
 }

 .insight-content {
     padding: 2rem;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .insight-category {
     display: inline-block;
     background: rgba(0, 194, 116, 0.1);
     color: var(--secondary-color);
     font-size: 0.8rem;
     font-weight: 600;
     padding: 0.3rem 1rem;
     border-radius: 30px;
     margin-bottom: 1rem;
     letter-spacing: 0.5px;
 }

 .insight-title {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: var(--primary-color);
 }

 .insight-excerpt {
     color: var(--text-color);
     margin-bottom: 1.5rem;
     opacity: 0.9;
     flex-grow: 1;
 }

 .insight-meta {
     display: flex;
     align-items: center;
     color: var(--text-color);
     opacity: 0.7;
     font-size: 0.9rem;
     margin-bottom: 1.5rem;
 }

 .insight-meta span {
     margin-right: 1rem;
     display: flex;
     align-items: center;
 }

 .insight-meta i {
     margin-right: 0.5rem;
     font-size: 0.8rem;
 }

 .insight-link {
     color: var(--secondary-color);
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     transition: var(--transition);
 }

 .insight-link i {
     margin-left: 0.5rem;
     transition: var(--transition);
 }

 .insight-link:hover {
     color: var(--primary-color);
 }

 .insight-link:hover i {
     transform: translateX(5px);
 }

 /* detail page service */

 .service-detail {
     margin-top: 100px;
     margin-bottom: 100px;
 }

 .service-detail .service-main-image {
     width: 100%;
     border-radius: 12px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .service-description {
     margin-top: 30px;
     line-height: 1.8;
     color: #444;
     font-size: 16px;
 }

 .service-description h2,
 .service-description h3,
 .service-description h4 {
     margin-top: 30px;
     font-weight: bold;
 }

 .service-sidebar {
     padding: 25px;
     background-color: #f9fafb;
     border: 1px solid #eee;
     border-radius: 12px;
 }

 .sidebar-card {
     margin-bottom: 30px;
 }

 .sidebar-card h4 {
     font-size: 18px;
     margin-bottom: 15px;
     border-bottom: 2px solid #ddd;
     padding-bottom: 8px;
     font-weight: 600;
 }

 .service-icon {
     width: 50px;
     height: auto;
 }

 .related-services li {
     margin-bottom: 8px;
 }

 .related-services a {
     color: #007bff;
     text-decoration: none;
 }

 .related-services a:hover {
     text-decoration: underline;
 }

 .sidebar-cta {
     text-align: center;
     padding: 20px;
     background-color: #eef5ff;
     border-radius: 12px;
 }

 .sidebar-cta .btn {
     margin-top: 15px;
 }

 .service-testimonials {
     background-color: #f7f7f7;
     padding: 60px 0;
 }

 .testimonial-card {
     background: white;
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
     margin-bottom: 30px;
 }

 .testimonial-content {
     font-style: italic;
     color: #555;
 }

 .testimonial-author {
     margin-top: 15px;
     font-weight: bold;
 }


 /* Responsive */
 @media (max-width: 1200px) {
     .page-header h1 {
         font-size: 3.5rem;
     }

     .about-story-content h2 {
         font-size: 2.5rem;
     }

     .section-title h2 {
         font-size: 2.5rem;
     }

     .page-header h1 {
         font-size: 3.5rem;
     }

     .section-title h2 {
         font-size: 2.5rem;
     }

     .service-card {
         padding: 2.5rem;
     }
 }

 @media (max-width: 992px) {
     .page-header {
         padding: 10rem 0 6rem;
     }

     .page-header h1 {
         font-size: 3rem;
     }

     .about-story-content h2 {
         font-size: 2.2rem;
     }

     .mission-vision-card {
         padding: 3rem 2rem;
     }

     .team-img {
         height: 300px;
     }

     .page-header {
         padding: 10rem 0 6rem;
     }

     .page-header h1 {
         font-size: 3rem;
     }

     .service-card h3 {
         font-size: 1.6rem;
     }

     .approach-step {
         flex-direction: column;
     }

     .step-number {
         margin-bottom: 1.5rem;
     }
 }

 @media (max-width: 768px) {
     .page-header {
         padding: 8rem 0 5rem;
     }

     .page-header h1 {
         font-size: 2.5rem;
     }

     .page-header p {
         font-size: 1.1rem;
     }

     .about-story-content h2 {
         font-size: 2rem;
     }

     .section-title h2 {
         font-size: 2rem;
     }

     .cta-section h2 {
         font-size: 2.2rem;
     }

     .mission-vision-card {
         padding: 2.5rem 1.5rem;
     }

     .value-card {
         padding: 2.5rem 1.5rem;
     }

     .faq-container {
         flex-direction: column;
     }

     .faq-column {
         width: 100%;
     }

     .page-header {
         padding: 8rem 0 5rem;
     }

     .page-header h1 {
         font-size: 2.5rem;
     }

     .page-header p {
         font-size: 1.1rem;
     }

     .section-title h2 {
         font-size: 2rem;
     }

     .cta-section h2 {
         font-size: 2.2rem;
     }

     .service-card {
         padding: 2rem;
     }

 }

 @media (max-width: 991.98px) {

     .hero-btns {
         flex-direction: column;
         align-items: center;
         justify-content: center;
         gap: 0.8rem;
     }

     .btn-primary-custom,
     .btn-outline-custom {
         width: 80%;
         text-align: center;
         padding: 0.8rem 1.5rem;
         font-size: 1rem;
     }
 }

 @media (max-width: 575.98px) {

     .btn-primary-custom,
     .btn-outline-custom {
         width: 100%;
         font-size: 0.95rem;
     }

     .hero-section {
         padding-top: 6rem;
     }
 }

 .hover-effect:hover {
     transform: translateY(-5px);
     transition: all 0.3s ease;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .card-title {
     font-size: 1.1rem;
     font-weight: 600;
 }

 .card-text {
     font-size: 0.9rem;
 }

/* Social Media Section */
.social-media {
    padding: 100px 0;
    background-color: var(--white-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.social-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    z-index: -1;
}

.social-card:hover::before {
    height: 100%;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-card:hover .social-icon {
    color: var(--white-color) !important;
    border-color: var(--white-color) !important;
}

.social-card:hover h3,
.social-card:hover p,
.social-card:hover .social-link {
    color: var(--white-color) !important;
}

.social-card:hover .social-link {
    border-color: var(--white-color) !important;
}

.social-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    transition: var(--transition);
    width: 100px;
    height: 100px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.social-card p {
    color: var(--gray-color);
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.social-link {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.social-link:hover {
    background-color: var(--white-color);
    color: var(--secondary-color) !important;
}

/* Platform Specific Colors */
.facebook-card:hover::before { background-color: #1877F2 !important; }
.twitter-card:hover::before { background-color: #1DA1F2 !important; }
.linkedin-card:hover::before { background-color: #0077B5 !important; }
.instagram-card:hover::before { 
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D) !important; 
}
.youtube-card:hover::before { background-color: #FF0000 !important; }
.tiktok-card:hover::before { background-color: #000000 !important; }

@media (max-width: 576px) {
    .social-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}


.footer-bottom a{
    text-decoration: none;
    color: rgb(195 195 195) !important;
}