:root {
	--background: 0 0% 100%;
  --primary-color: #1C7D6A;
  --primary-dark: #103366;
  --primary-light: #d9e6f7;
  --secondary-color: #e6f0ff;
  --text-color: #2d3748;
  --text-muted: #718096;
  --light-gray: #f7fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
  --foreground: 167 63% 30%;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
      font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";

}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
  color: #2BB673;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 16px;
  font-size: 1.3rem;
  color:rgb(31 41 55) !important;
  line-height: 1.75rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

/* Default hide for mobile */

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333; /* Adjust color as needed */
  transition: all 0.3s ease-in-out;
}

/* Base styles */
.menu-toggle {
  display: none; /* Hidden by default */
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  background:#fff !important;
}


/* Mobile styles */
@media screen and (max-width: 767px) {
  .menu-toggle {
    display: block;
	
  }

    .nav-links {
    margin-bottom: 16px;
    justify-content: center;
    flex-wrap: wrap;
	display:block;
	}
   .logo img {
	   text-align:left;
   }
  .nav-links1 {
	display:block;
  }
}




/* Buttons */
.btn {
  display: inline-block;
  padding:7px 17px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
 font-size: 1rem;
    line-height: 1.75rem;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

/* Header & Navigation */
.header {
  /* background-color: var(--white); */
  background: linear-gradient(90deg, #1A4F55, #122432);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo img {
 width: 190px; /* or any value */
    height: auto; /* maintain aspect ratio */
}

.footer-logo{
  height: auto;
  width:180px;
 
}

.nav-links {
  display: flex;
}

.nav-links a {
  margin: 0 16px;
  /* color: var(--text-color); */
   color: #fff;
  font-weight: 500;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

/* Hero Section */
.hero {
 background: linear-gradient(90deg, #1A4F55, #122432);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  max-width: 500px;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInFromLeft 0.8s forwards;
  margin:10px 30px;
}

.hero-image {
  flex: 1;
  text-align: right;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInFromRight 0.8s forwards;
  padding:15px 65px;
}

.hero-image img {
  max-width: 100%;
  border-radius:.5rem;
  box-shadow: var(--shadow-lg);
  
}

.hero h1 {
  margin-bottom: 24px;
  /* color: var(--primary-color); */
  color: #ffffff;
      line-height: 1.25;
	  font-weight: 700;
}

.hero p {
  margin-bottom: 32px;
  font-size: 1.3rem;
  color:rgb(31 41 55);
}

.hero-text p {
  margin-bottom: 32px;
  font-size: 1.3rem;
  color: #fff !important;;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Animations for Hero section */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Sections common */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size:1rem;
}


.highlight {
  font-weight: 600;
  color: var(--primary-color);
}

/* Partner Section */
.partner-section {
  background-color: var(--white);
}
.partner-section h2 {
	font-size: 2rem;
}
.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.stat-card {
  text-align: center;
  flex-basis: calc(33.333% - 32px);
  padding: 22px;
  background-color: var(--secondary-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}
.stat-card p {
  font-size: 1rem;

}
/* Services Section */
.services-section {
  background-color: var(--light-gray);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
   

}


.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card .icon {
  margin-bottom: 16px;
  color: var(--primary-color);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size:1.2rem;
}

.service-card p {
  font-size:1rem;
}

/* Why Us Section */
.why-us-section {
  background-color: var(--white);
}

.why-us-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;

}

.feature.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  margin-right: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size:1.2rem;
}

.feature-content p {
  font-size:1rem;
}

/* Case Studies Section */
.case-studies-section {
  background-color: var(--light-gray);
}

.case-studies-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.case-study {
  background-color: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;

}


.case-study h3 {
	font-size:1.2rem;
}

.case-study p {
	font-size:1rem;
}

.case-study.animate {
  opacity: 1;
  transform: translateY(0);
}

.case-study:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.case-study-icon {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.case-study h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--white);
  
}

.testimonial-card {
  background: linear-gradient(90deg, #1A4F55, #122432);
 
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-card p {
	color:#fff !important;
}
.quote-icon {
    width: 48px;
  height: 48px;
  margin: 0 auto 24px auto; /* Center horizontally and give bottom spacing */
  color:#2BB673; /* or any other color */
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-card .quote-icon svg {
  display: block;
  margin: 0 auto;
  color: inherit;
  text-align:center;
}

.testimonial-text {
  font-size: 1.2rem;
  margin-bottom: 24px;
    font-family: 'Merriweather', serif;
  font-style: italic;
 
  
}

.testimonial-author h4 {
  margin-bottom: 4px;
}

.testimonial-author p {
  color: var(--text-muted);
  font-weight:200;
  font-size:1rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.cta-text {
  max-width: 700px;
  margin: 0 auto 32px;
  color: #fff !important;
  font-size:1rem;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-item svg {
  margin-right: 8px;
}

.contact-form {
  margin-top: 40px;
}

/* Footer */
.footer {
 background: linear-gradient(90deg, #1A4F55, #122432);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
  
}

.footer-col p {
  color:#fff !important;
  margin-bottom: 24px;
  font-size: 1rem;
}

.footer-col ul li {
  margin-bottom: 12px;
  
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 1rem !important;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1rem !important;
}

.contact-list svg {
  margin-right: 12px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color:#fff !important;
  font-size:1rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text, .hero-image {
    max-width: 100%;
    text-align: center;
  }
  
.nav-links {
  display: flex;
}

.nav-links a {
  margin: 0 8px;
 font-size:.8rem;
  font-weight: 400;

}



  .hero-image {
    margin-top: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .stat-card {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
.menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80%;
    left: 0;
    background: linear-gradient(to right, #1A4F55, #122432);

    width: 100%;
    padding: 20px;
    box-shadow: var(--shadow-md);
    z-index: 100000;
	line-height: 2;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links1 {
    display: none;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 19px 0;
  }
  
  .nav-links a {
    margin-bottom: 8px;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .services-container, .why-us-container, .case-studies-container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .nav-links a {
    margin: 0 8px;
    font-size: 14px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 16px;
  }
  .navbar {
   justify-content:space-between;
	align-items:left;
  }
  
}
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  transition: var(--transition);
}

.testimonial-card.active {
  display: block;
   text-align: center;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.testimonial-nav button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.testimonial-nav button:hover {
  background-color: var(--primary-color);
}
.contact-list li .icon-location {
  margin-top: -40px;
  width: 40px;
  height: 40px;
}

.icon-email {
  margin-top: -8px;
  width: 28px;
  height: 28px;
}

.icon-phone {
  margin-top: -6px;
  width: 26px;
  height: 26px;
}

.privacy-policy h5 {
    margin: 15px 0px;
}
.privacy-policy ul {
    padding-left: 40px;
}
.privacy-policy .pb-1 {
    padding-bottom: 5px;
}