/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(0, 0%, 0%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);
  --text-color: hsl(220, 8%, 20%);
  --text-color-light: hsl(220, 4%, 55%);
  --dark-blue: hsl(220, 62%, 39%);
  --dark-blue-hover: hsl(220, 70%, 44%);

  /*========== Typography ==========*/
  --body-font: "Montserrat", sans-serif;

  /*========== Font sizes ==========*/
  --biggest-font-size: 2.5rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.75rem;
  --h3-font-size: 1.5rem;
  --h4-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== Line height ==========*/
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.75rem;
    --h4-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  line-height: var(--line-height-normal);
  letter-spacing: 0.025em;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--font-medium);
}

p {
  margin-bottom: 1rem;
  line-height: var(--line-height-relaxed);
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: var(--black-color);
  font-weight: var(--font-medium);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-blue);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  letter-spacing: 0.025em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1300px;
  margin-inline: 1.5rem;
}

.section {
  padding: 4rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--black-color);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.section__subtitle {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color-light);
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-center {
  text-align: center;
}

.text-light {
  color: var(--text-color-light);
  font-weight: var(--font-regular);
}

.text-bold {
  font-weight: var(--font-bold);
}

.text-medium {
  font-weight: var(--font-medium);
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--black-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-bold);
  font-size: var(--h4-font-size);
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}
.nav__logo img{
  width:220px;
}

@media screen and (max-width: 480px){
  .nav__logo img{
    width:160px;
  }
}


.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .nav__list {
    background-color: var(--white-color);
    padding-top: 1rem;
  }
  .nav__logo img{
    width:160px;
  }
}

.nav__link {
  color: var(--black-color);
  background-color: var(--white-color);
  font-weight:500 !important;
  font-size: 1.3rem !important;
  font-family: Arial, Helvetica, sans-serif;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
  letter-spacing: 0.025em;
}

.nav__link:hover {
  background-color: rgb(196, 196, 196);
  color: var(--dark-blue);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--black-color);
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: background-color .3s;
  letter-spacing: 0.025em;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: rgb(250, 250, 250);
  color: var(--dark-blue);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--white-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

/*=============== MAIN CONTENT STYLES ===============*/
.main {
  padding-top: var(--header-height);
}

.btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s;
}

.btn:hover:before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Animations */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*=============== CARDS ===============*/
.card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
  margin-bottom: 1rem;
}

.card__description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: var(--line-height-relaxed);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }


}


/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: 4rem;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    background-color: transparent;
  }

  .nav__link:hover {
    background-color: transparent;
    color: var(--dark-blue);
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;

    /* Enhanced dropdown styling */
    min-width: 280px;
    width: max-content;
    white-space: nowrap;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background-color: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding: 1rem 1.5rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    letter-spacing: 0.025em;
    border-radius: 8px;
    margin: 0 0.5rem;
  }

  .dropdown__link:hover,
  .dropdown__sublink:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--dark-blue);
  }

  .dropdown__subitem .dropdown__link {
    padding: 0.875rem 1.25rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
    min-width: 220px;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover>.dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }

}

/*Hero Section*/


.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: left;
  justify-content: left;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

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

.hero-content {
  text-align: left;
  color: white;
  max-width: 700px;
  padding: 0 2rem;
  position: absolute;
  top: 60%;
  left: 2rem;
  transform: translateY(-60%);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-paragraph {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  opacity: 1;
  color: white;
  margin-bottom: 2.5rem;
  font-weight: 300;
}



@media (max-width: 480px) {
  .hero-section {
    height: 50vh;
  }

  .hero-content {
    width: 85%;
    padding: 0 1rem;
    transform: translateY(-50%);
  }

  .hero-title {
    font-size: 1.7rem;
  }
}

/* Tablets and small laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    height: 80vh;
  }

  .hero-content {
    top: 55%;
    max-width: 90%;
    padding: 0 1.5rem;
    transform: translateY(-50%);
  }

  .hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .hero-paragraph {
    font-size: clamp(1rem, 2vw, 1.3rem);
  }
  
}

/* Large mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .hero-section {
    height: 65vh;
  }

  .hero-content {
    top: 50%;
    width: 90%;
    padding: 0 1rem;
    transform: translateY(-50%);
  }

  .hero-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  }

  .hero-paragraph {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  }
  .hero-content .btn{
    padding: 15px 35px;
  }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero-section {
    height: 65vh;
  }

  .hero-content {
    top: 55%;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-paragraph {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* About Section */
.about-section {
  padding: 60px 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-container {
  position: relative;
}

.main-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  top: -25px;
  left: -15px;
  background: white;
  padding: 20px 16px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  text-align: left;
  min-width: 180px;
}

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

.experience-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00B04F;
  line-height: 1;
}

.experience-text {
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 600;
  line-height: 1.3;
}

.video-thumbnail {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.05);
}

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

.content-container {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label h2 {
  color: #00B04F;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #000000;
}

.highlight-text {
  color: #00B04F;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.quote-section {
  border-left: 4px solid #00B04F;
  padding-left: 20px;
  margin: 12px 0;
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact Section - Fixed spacing */
.contact-section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: nowrap;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.phone-section {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.phone-icon {
  width: 40px;
  height: 40px;
  background: #2c3e50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ph-number a {
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  color: #000000 !important;
  display: block;
}

.ph-number a:hover {
  color: #28a745 !important;
}

.email-section {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  align-items: center;
}

.email-icon {
  width: 40px;
  height: 40px;
  background: #2c3e50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.em-id {
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  color: #000000 !important;
}

.em-id:hover {
  color: #28a745 !important;
}

/* Stats Section - Fixed alignment and uniform height */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 0;
  margin-top: 20px;
}

.stat-item {
  border-radius: 10px;
  padding: 20px 10px; /* Increased padding */
  text-align: center;
  height: 140px; /* Increased height for better spacing */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00B04F;
  line-height: 1.1;
  margin-bottom: 4px; /* Increased margin */
}

.stat-unit {
  font-size: 1rem;
  font-weight: 600;
  color: #00B04F;
  margin-top: 2px;
  margin-bottom: 8px; /* Added margin bottom for spacing */
}

.stat-label {
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 600;
  line-height: 1.2; /* Reduced line height */
  padding: 0 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1; /* This will make labels take up remaining space evenly */
}

@media (max-width: 1024px) {
  .about-container {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 0 15px;
  }

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

  .main-title {
      font-size: 2rem;
  }

  .about-section {
      height: auto;
      min-height: 100vh;
      padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .about-section {
      padding: 30px 0;
      height: auto;
      min-height: 100vh;
  }

  .main-image {
      height: 250px;
  }

  .experience-badge {
      top: -25px;
      left: -5px;
      margin-bottom: 15px;
      display: inline-block;
      min-width: 160px;
      padding: 15px 12px;
  }

  .experience-content {
      flex-direction: column;
      text-align: center;
      gap: 5px;
  }

  .experience-number {
      font-size: 2.2rem;
  }

  .experience-text {
      font-size: 0.85rem;
  }

  .video-thumbnail {
    bottom: -20px;
    right: -5px;
      margin-top: 15px;
      width: 50%;
      height: 150px;
  }

  .stats-section {
      grid-template-columns: 1fr;
      gap: 15px;
      margin-top: 20px;
      padding-top: 20px;
  }

  .stat-item {
      height: 120px; /* Reduced height for mobile */
  }

  .contact-section {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .email-section {
    padding-left: 0;
  }
  
  .main-title {
      font-size: 1.8rem;
  }

  .stat-number {
      font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px){
  .main-title {
    font-size: 1.6rem;
}

}

/*Services*/
.services-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.left-content {
  padding-right: 20px;
}

.left-content h2{
  font-size: 2.4rem;
}

.main-heading2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #000000;
}

.main-heading2 .highlight {
  color: #00B04F;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
}

.video-container {

  border-radius: 12px;


}

.video-container img {
  width: 100%;
  height: 450px;

}


.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-image {
  width: 120px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.service-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  color: #00B04F;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #019644;
}

.read-more::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .services-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .service-card {
    flex-direction: column;
  }

  .service-image {
    width: 100%;
    height: 200px;
  }
  .left-content h2{
    font-size: 2.2rem;
  }
  .main-heading2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width:480px){
  .services-section{
    padding: 20px;
  }
  .left-content h2{
    font-size: 2rem;
  }
  .main-heading2 {
    font-size: 1.7rem;
  }
}



/* Testimonials Section */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.test-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

/* Modern Card Design with Equal Heights */
.testimonials-wrapper {
  position: relative;
}

.testimonial-swiper {
  padding: 30px 0 80px;
  overflow: visible;
}

.swiper-wrapper {
  margin-bottom: 40px;
  align-items: stretch; /* Ensures equal height cards */
}

.testimonial-card {
  margin: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%; /* Ensures equal height */
  min-height: 350px; /* Minimum height for consistency */
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}


.quote-icon {
  margin-bottom: 24px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #000000; /* Changed to black */
  margin-bottom: 80px;
  flex-grow: 1; /* Takes available space for equal height */
  font-style: italic;
  font-weight: 400;
  position: relative;
}

.testimonial-text::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #28a745, #20c997);
  border-radius: 2px;
}

.testimonial-author {
  padding-top: 24px;
  border-top: 2px solid rgba(40, 167, 69, 0.1);
  margin-top: auto; /* Pushes author info to bottom */
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000; /* Changed to black */
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.author-info p {
  font-size: 1rem;
  color: #000000; /* Changed to black */
  margin: 0;
  font-weight: 400; /* Reduced font weight */
}

/* Smaller White Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  width: 60px !important; /* Reduced from 54px */
  height: 60px !important; /* Reduced from 54px */
  background: #ffffff; /* Changed to white */
  border-radius: 50%;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  color: #28a745 !important; /* Green arrows */
  margin-top: -20px; /* Adjusted for smaller size */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(40, 167, 69, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 25px !important; /* Reduced from 18px */
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.15),
    0 3px 10px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: #1e7e34;
  border-color: rgba(40, 167, 69, 0.3);
}

/* Modern Pagination */
.swiper-pagination {
  bottom: 30px;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(40, 167, 69, 0.3);
  opacity: 1;
  margin: 0 8px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  transform: scale(1.3);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Desktop - 2 cards visible with equal heights */
@media (min-width: 768px) {
  .testimonials-section {
    padding: 140px 0; /* Increased green background */
  }
  
  .testimonial-swiper {
    padding: 30px 60px 80px;
  }
  
  .testimonials-header h2 {
    font-size: 4rem;
  }
  
  .testimonial-card {
    padding: 50px;
    min-height: 400px; /* Increased minimum height for desktop */
  }
  
  .swiper-slide {
    height: auto;
    display: flex;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 768px) {
  .testimonials-section {
    padding: 120px 0;
  }
  
  .testimonials-header h2 {
    font-size: 3rem;
  }
  
  .testimonial-card {
    padding: 36px;
    min-height: 380px;
  }
}

/* Mobile - 1 card visible */
@media (max-width: 767px) {
  .testimonials-section {
    padding: 100px 0; /* Increased green background for mobile */
  }
  
  .testimonials-header {
    margin-bottom: 60px;
  }
  
  .testimonials-header h2 {
    font-size: 2.5rem;
    color: #000000;
  }
  
  .testimonials-header p {
    font-size: 1.1rem;
    color: #000000;
  }
  
  .testimonial-card {
    padding: 32px 28px;
    border-radius: 20px;
    min-height: 320px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #000000;
  }
  
  .testimonial-text::before {
    left: -16px;
  }
  
  .author-info h4 {
    color: #000000;
  }
  
  .author-info p {
    color: #000000;
  }
  
  .testimonial-swiper {
    padding: 20px 0 80px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .swiper-pagination {
    bottom: 20px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .testimonials-section {
    padding: 80px 0;
  }
  
  .testimonials-header h2 {
    font-size: 2rem;
    color: #000000;
  }
  
  .testimonial-card {
    padding: 24px 20px;
    min-height: 300px;
  }
  
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
  }
}

/*Contact Banner*/

.contact-banner {
  width: 100%;
  background: url('../images/cta-image.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 300px;
}

.banner-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.banner-left {
  flex: 1;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.2;
}

.banner-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.banner-right {
  flex-shrink: 0;
  margin-left: 40px;
}



/* Mobile responsiveness */
@media (max-width: 768px) {
  .contact-banner {
    padding: 40px 20px;
    min-height: auto;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .banner-right {
    margin-left: 0;
  }

  .banner-title {
    font-size: 2rem;
  }

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

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.8rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }
}

/*Industries*/



.industries-section {
  padding: 80px 20px;
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
}


.section-subtitle {
  font-size: 1.2rem;
  color: #5a6c7d;
  max-width: 1300px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.industry-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #73f571 0%, #1ba73c 100%);
}

.industry-card:hover .industry-title {
  color: white;
}

.industry-card:hover .industry-description {
  color: rgba(255, 255, 255, 0.9);
}

.industry-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.industry-description {
  color: #5a6c7d;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
  transition: color 0.3s ease;
}


@media (max-width: 768px) {
  .industries-section {
    padding: 60px 15px;
  }

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

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

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-card {
    padding: 30px 20px;
  }
}

/* Animation for cards appearing */
.industry-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.industry-card:nth-child(1) {
  animation-delay: 0.1s;
}

.industry-card:nth-child(2) {
  animation-delay: 0.2s;
}

.industry-card:nth-child(3) {
  animation-delay: 0.3s;
}

.industry-card:nth-child(4) {
  animation-delay: 0.4s;
}

.industry-card:nth-child(5) {
  animation-delay: 0.5s;
}

.industry-card:nth-child(6) {
  animation-delay: 0.6s;
}

.industry-card:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Faq*/

.faq-section {
  padding: 80px 20px;
  min-height: 100vh;
}

.faq-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.left-content {
  padding-right: 20px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 600;
  ;
  color: #000000;
  margin-bottom: 20px;
  position: relative;
}


.faq-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
}

.faq-image {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.right-content {
  padding-left: 20px;
}



.faq-item {
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  padding: 20px 0;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  color: #28a745;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: #999;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
  color: #28a745;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 15px 0 25px 0;
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  color: #393939;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .left-content,
  .right-content {
    padding: 0;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-question,
  .faq-answer {
    padding: 15px 0;
  }

  .faq-item.active .faq-answer {
    padding: 10px 0 20px 0;
  }
}

/*Footer*/
.footer {
  background: linear-gradient(50deg, #00b9b3 0%, #00b9b3 100%);
  color: #ffffff;
  padding: 60px 0 40px 0;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-text {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.logo-subtitle {
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-contact-info {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-contact-item {
  max-width: 300px;
}

.footer-contact-details h4 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.footer-contact-details p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
}
.footer-contact-details a{
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.footer-contact-details a:hover{
  color: #1a00b0;
}

/* Footer Content Sections */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-section p {
  color: #ffffff;
  line-height: 1.6;
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #1a00b0;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #ffffff;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #ffffff;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #444;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #00b04f;
}

/* Responsive Layouts */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .social-links {
    justify-content: flex-start;
  }
}

