/*=============== 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);
  color: var(--text-color);
  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: 1400px;
  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);
}


/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }

  .hero__title {
    font-size: var(--h1-font-size);
  }

  .hero__description {
    font-size: var(--normal-font-size);
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .section {
    padding: 6rem 0 2rem;
  }

  .hero {
    padding: 6rem 0;
  }
}

/* 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;
  }
}



.cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 50px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.cta-text {
  color: #333333;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.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);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}







.section-label h2 {
  color: #00B04F;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



/* Breadcrumb Banner Section */
.breadcrumb-banner-section {
  padding-top: 60px;
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Image */
.banner-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1200&h=800&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Blue Overlay */
.blue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(50deg, rgba(19, 38, 98, 0.85) 0%, rgba(20, 52, 139, 0.9) 100%);
  z-index: 2;
}

.bread-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Main Content Layout */
.breadcrumb-content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  align-items: center;
  height: 100%;
}

/* Left Side Content */
.breadcrumb-left-content {
  color: #fff;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  0% {
      opacity: 0;
      transform: translateX(-50px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

.page-title-wrapper {
  margin-bottom: 30px;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 15px 0;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* Breadcrumb Navigation - Plain Text Links */
.breadcrumb-navigation {
  margin-top: 25px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 0;
  transition: all 0.3s ease;
  position: relative;
}

.breadcrumb-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00B04F;
  transition: width 0.3s ease;
}

.breadcrumb-link:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.breadcrumb-link:hover::after {
  width: 100%;
}

.breadcrumb-link i {
  font-size: 0.85rem;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0 8px;
}

.breadcrumb-current {
  color: #00B04F;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Right Side - Swinging Truck */
.breadcrumb-right-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.swinging-truck-wrapper {
  position: relative;
  animation: slideInFromTop 1.5s ease-out;
}

@keyframes slideInFromTop {
  0% {
      opacity: 0;
      transform: translateY(-100px);
  }
  70% {
      transform: translateY(10px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.swinging-truck-image {
  width: 300px;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
  animation: swingAnimation 4s ease-in-out infinite 1.5s;
  transform-origin: top center;
  position: relative;
  z-index: 2;
}

@keyframes swingAnimation {
  0%, 100% {
      transform: rotate(0deg);
  }
  25% {
      transform: rotate(3deg);
  }
  75% {
      transform: rotate(-3deg);
  }
}

/* Loading state for truck image */
.swinging-truck-image[src=""] {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.swinging-truck-image[src=""]:before {
  content: '🚛';
  font-size: 4rem;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .breadcrumb-banner-section {
      height: 320px;
  }
  
  .breadcrumb-content {
      gap: 40px;
  }
  
  .page-title {
      font-size: 3rem;
  }
  
  .swinging-truck-image {
      width: 250px;
      max-height: 200px;
  }
}

/* UPDATED MOBILE VIEW - Image First, Then Text */
@media (max-width: 768px) {
  .breadcrumb-banner-section {
      height: auto;
      min-height: 350px;
      padding: 40px 0;
  }
  
  .breadcrumb-content {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
      /* CHANGED: Image appears first (order) */
      grid-template-rows: auto auto;
  }
  
  /* REORDER: Truck image comes first on mobile */
  .breadcrumb-right-content {
      order: 1; /* Image first */
      margin-bottom: 20px;
  }
  
  .breadcrumb-left-content {
      order: 2; /* Text second */
  }
  
  .bread-container {
      padding: 0 15px;
  }
  
  .page-title {
      font-size: 2.5rem;
      margin-bottom: 10px;
  }
  
  .page-subtitle {
      font-size: 1rem;
      margin-bottom: 15px;
  }
  
  .breadcrumb-list {
      justify-content: center;
      flex-wrap: wrap;
  }
  
  .swinging-truck-image {
      width: 220px;
      max-height: 170px;
  }
  
  .breadcrumb-navigation {
      margin-top: 15px;
  }
  
  .page-title-wrapper {
      margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-banner-section {
      min-height: 320px;
      padding: 30px 0;
  }
  
  /* MOBILE SMALL: Maintain image-first order */
  .breadcrumb-content {
      gap: 25px;
  }
  
  .breadcrumb-right-content {
      order: 1; /* Image first */
      margin-bottom: 15px;
  }
  
  .breadcrumb-left-content {
      order: 2; /* Text second */
  }
  
  .page-title {
      font-size: 2rem;
      margin-bottom: 8px;
  }
  
  .page-subtitle {
      font-size: 0.9rem;
      margin-bottom: 12px;
  }
  
  .breadcrumb-link,
  .breadcrumb-current {
      font-size: 0.85rem;
  }
  
  .swinging-truck-image {
      width: 180px;
      max-height: 140px;
  }
  
  .breadcrumb-list {
      gap: 5px;
  }
  
  .breadcrumb-separator {
      margin: 0 5px;
  }
  
  .page-title-wrapper {
      margin-bottom: 15px;
  }
  
  .breadcrumb-navigation {
      margin-top: 12px;
  }
}

/* Enhanced hover effects */
.breadcrumb-banner-section:hover .swinging-truck-image {
  animation-duration: 2s;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .swinging-truck-image {
      animation: none;
  }
  
  .slideInLeft,
  .slideInFromTop {
      animation: none;
      opacity: 1;
      transform: none;
  }
}



/*About*/
.about-container {
  display: flex;
  align-items: center;
  min-height: 100vh;
  max-width: 1300px;
  margin: 60px auto;
  padding: 60px 20px;
  gap: 60px;
}

/* Left Side - Image Only */
.animation-section {
  flex: 1;
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animation-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Right Side - Content (unchanged) */
.content-section {
  flex: 1;
  padding-left: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  color: #00B04F;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;

}
.why-title{
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
}
.why-title span {
  color: #28a745;
}

.content-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  animation: slideInRight 0.6s ease-out forwards;
  opacity: 0;
  transform: translateX(50px);
}

.feature-item:nth-child(1) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.6s;
}

.feature-item:nth-child(4) {
  animation-delay: 0.8s;
}

.feature-item:hover {
  background: rgba(40, 167, 69, 0.1);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 1.5rem;
  color: #28a745;
  margin-right: 15px;
  min-width: 30px;
}

.feature-text {
  color: #333333;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}


/* Animations */
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 15px;
  }

  .animation-section {
    height: 400px;
    order: 2;
  }

  .animation-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .why-title{
    font-size: 1.8rem;
  }
}

/*How we help*/

.how-we-help-section {
  padding: 80px 20px;
}

.how-we-help-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.how-we-help-content {
  padding-right: 20px;
}

.how-help-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.how-help-points {
  list-style: none;
  padding-left: 0;
}

.how-help-points li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}

.how-we-help-image img {
  width: 550px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: fill;
  height: 450px;
}

@media (max-width: 768px) {
  .how-we-help-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-we-help-content {
    padding-right: 0;
  }
  .how-we-help-section{
    padding: 20px;
  }
}


/*Card Section*/

.whin-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  transition: transform 0.8s ease-in-out;
  background: white;
}

.whin-section-content {
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
  align-items: stretch;
  height: 500px;
}

.whin-content-card {
  flex: 1;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.whin-content-card:hover {
  background: #22c55e;
  border-color: #16a34a;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.whin-content-card:hover .whin-card-content {
  color: white;
}

.whin-content-card:hover .whin-card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.whin-content-card:hover .whin-card-title {
  color: white;
}
.whin-content-card:hover .whin-card-description {
  color: white;
}

.whin-content-card:hover .whin-card-features li:before {
  color: white;
}

.whin-content-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.whin-card-content {
  padding: 40px;
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.1s linear;
  transform: translateY(0);
  color: #374151;
  flex: 1;
}

.whin-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.whin-card-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  transition: color 0.4s ease;
  flex-shrink: 0;
}

.whin-card-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  transition: color 0.4s ease;
  flex-shrink: 0;
}
.whin-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.whin-card-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
  transition: color 0.4s ease;
}

.whin-card-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
  transition: color 0.4s ease;
}

.whin-progress-indicator {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.whin-progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whin-progress-dot.whin-active {
  background: #22c55e;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.whin-main-title {
  text-align: center;
  margin-bottom: 30px;
}

.whin-main-title h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 12px 0;
}

.whin-main-title p {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
  font-weight: normal;
}

.whin-services-section {
  padding: 20px 5% 60px;
  background: white;
  position: relative;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .whin-section-content {
      flex-direction: column;
      gap: 20px;
      height: auto;
      padding: 20px 0;
  }
  
  .whin-content-card {
      min-height: 350px;
  }
  
  .whin-card-content {
      padding: 24px;
  }
  
  .whin-card-title {
      font-size: 1.5rem;
  }
  
  .whin-card-description {
      font-size: 1rem;
  }

  .whin-main-title h2 {
      font-size: 1.8rem;
  }

  .whin-main-title p {
      font-size: 1rem;
  }

  .whin-services-section {
      padding-top: 40px;
  }

  .whin-progress-indicator {
      right: 20px;
      gap: 10px;
  }

  .whin-progress-dot {
      width: 10px;
      height: 10px;
  }
}

/*FAQ*/


.faq-section {
  padding: 80px 20px;
  min-height: 100vh;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-full-content {
  width: 100%;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.faq-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.faq-list {
  margin-top: 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-title {
    font-size: 2rem;
  }

  .faq-question,
  .faq-answer {
    padding: 15px 0;
  }

  .faq-item.active .faq-answer {
    padding: 10px 0 20px 0;
  }
}





/* Request Quote Section */
.request-quote-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

.request-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content Layout */
.quote-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Side - Quote Form */
.quote-form-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* Form Header */
.form-header {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #00B04F;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: #00B04F;
}

.form-header p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Quote Form */
.quote-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1e293b;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00B04F;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder {
    color: #94a3b8;
}

/* Price Range Slider */
.price-range-container {
    margin-top: 10px;
}

.price-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 15px;
    cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.price-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Price slider track for Firefox */
.price-slider::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    border: none;
}

/* Price Display */
.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00B04F;
}

.price-max {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Submit Button */
.form-submit {
    margin-top: 35px;
}

.quote-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.quote-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.quote-submit-btn:active {
    transform: translateY(-1px);
}

/* Right Side - Service Representative Image */
.quote-image-content {
    position: relative;
}

.representative-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-rep-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-rep-image:hover {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: #fff;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.overlay-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-item i {
    width: 16px;
    color: #00B04F;
    flex-shrink: 0;
}

/* Loading state for image */
.service-rep-image[src=""] {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-rep-image[src=""]:before {
    content: '👤';
    font-size: 4rem;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .quote-content {
        grid-template-columns: 1.3fr 1fr;
        gap: 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .form-row:first-child {
        grid-template-columns: 1fr;
    }
    
    .representative-image {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .request-quote-section {
        padding: 60px 0;
    }
    
    .quote-content {
        gap: 50px;
    }
    
    .quote-form-content {
        padding: 35px;
    }
    
    .form-header h2 {
        font-size: 2.2rem;
    }
    
    .representative-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .request-quote-section {
        padding: 50px 0;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .quote-form-content {
        padding: 30px;
        border-radius: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .representative-image {
        height: 400px;
    }
    
    .image-overlay {
        padding: 30px 25px 25px;
    }
}

@media (max-width: 480px) {
    .quote-form-content {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .section-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .quote-submit-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .representative-image {
        height: 350px;
        border-radius: 15px;
    }
    
    .overlay-content h3 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.success,
.form-group select.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Loading state for submit button */
.quote-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.quote-submit-btn.loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




/*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;
  }
}

