/*=============== 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;
}

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;
}

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);
}

/*=============== MAIN CONTENT STYLES ===============*/
.main {
  padding-top: var(--header-height);
}

.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  color: var(--black-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: var(--line-height-tight);
}

.hero__description {
  font-size: var(--h4-font-size);
  font-weight: var(--font-regular);
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: var(--line-height-relaxed);
}

.btn {
  display: inline-block;
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  text-align: center;
  transition: all 0.3s ease;
  letter-spacing: 0.025em;
}

.btn:hover {
  background-color: var(--black-color-light);
  transform: translateY(-2px);
  color: var(--white-color);
}

.btn--outline {
  background-color: transparent;
  color: var(--black-color);
  border: 2px solid var(--black-color);
}

.btn--outline:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

/*=============== 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;
  }
  
  .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;
  }
  
  .section {
    padding: 8rem 0 2rem;
  }
  
  .hero {
    padding: 8rem 0;
  }
}




/* 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;
  }
}


/*=============== form section  ===============*/

/* Contact Section */
.contact-section {
    padding-top: 150px;
    background: #fff;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Side - Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 0;
}

.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.2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin: 0;
}

.highlight {
    color: #00B04F;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.input-wrapper,
.textarea-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #00B04F;
    font-size: 1rem;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.textarea-wrapper .input-icon {
    top: 20px;
    transform: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: all 0.3s ease;
    color: #1e293b;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00B04F;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    width: fit-content;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Right Side - Contact Information */
.contact-info-wrapper {
    padding-left: 20px;
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin: 0;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-card:hover {
    border-color: #00B04F;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.card-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        gap: 60px;
    }
    
    .form-header h2,
    .contact-info-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-wrapper {
        padding-left: 0;
    }
    
    .form-header h2,
    .contact-info-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 12px 12px 40px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .info-card {
        padding: 20px;
        gap: 15px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .form-header h2,
    .contact-info-header h2 {
        font-size: 1.6rem;
    }
    
    .section-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 10px 10px 35px;
        font-size: 0.9rem;
    }
    
    .input-icon {
        left: 10px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 18px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .card-content h4 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
}

/* Form validation styles */
.contact-form input.error,
.contact-form textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-form input.success,
.contact-form textarea.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Loading state for submit button */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




/* map css */

/* Map Location Section - White Background & No Bottom Space */
.map-location-section {
    padding: 80px ; /* Removed bottom padding */
    background: #fff; /* Changed to white background */
    position: relative;
}

/* Removed the gradient overlay since background is now white */
.map-location-section::before {
    display: none; /* Hide the gradient overlay */
}

.mapview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Map Header */
.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.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);
}

.map-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #00B04F;
}

.map-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Map Wrapper - Enhanced for Movable Map */
.map-wrapper {
    position: relative;
    height: 500px;
    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);
    margin-bottom: 0; /* Ensure no bottom margin */
}

.map-container {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
}

/* Map Info Card - Top Right Position */
.map-info-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 320px;
    min-width: 280px;
    z-index: 10;
    animation: slideInRight 1s ease-out;
}

/* Top Right Positioning */
.map-info-card.top-right {
    top: 20px;
    right: 20px;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.card-body p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
}

.card-body p strong {
    color: #1e293b;
    font-weight: 600;
}

.direction-btn {
    margin: 20px 0 0 0; /* Removed bottom margin */
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.get-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: center;
}

.get-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: #fff;
}

.get-directions-btn:active {
    transform: translateY(0);
}

/* Map Controls */
.map-controls {
    display: flex;
    gap: 8px;
    margin: 15px 0 0 0; /* Removed bottom margin */
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.map-control-btn {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    color: #fff;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.map-control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.map-control-btn:active {
    transform: scale(0.95);
}

/* Enhanced hover effects for movable map */
.map-wrapper:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.map-wrapper:hover .map-info-card {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Responsive Design - Updated */
@media (max-width: 1024px) {
    .map-location-section {
        padding: 60px 0 0 0; /* Removed bottom padding */
    }
    
    .map-header h2 {
        font-size: 2.2rem;
    }
    
    .map-wrapper {
        height: 450px;
        margin-bottom: 0; /* Ensure no bottom margin */
    }
    
    .map-info-card {
        max-width: 300px;
        min-width: 260px;
        padding: 20px;
    }
    
    .map-info-card.top-right {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .map-location-section {
        padding: 50px 0 0 0; /* Removed bottom padding */
    }
    
    .mapview-container {
        padding: 0 15px;
    }
    
    .map-header {
        margin-bottom: 40px;
    }
    
    .map-header h2 {
        font-size: 2rem;
    }
    
    .map-header p {
        font-size: 1rem;
    }
    
    .map-wrapper {
        height: 400px;
        margin-bottom: 0; /* Ensure no bottom margin */
    }
    
    /* Mobile: Info card below map */
    .map-info-card.top-right {
        position: static;
        margin: 20px 0 0 0; /* Only top margin, no bottom margin */
        max-width: none;
        min-width: auto;
        animation: none;
    }
    
    .map-controls {
        justify-content: center;
        margin: 15px 0 0 0; /* Removed bottom margin */
    }
}

@media (max-width: 480px) {
    .map-location-section {
        padding: 40px 0 0 0; /* Reduced top padding, no bottom padding */
    }
    
    .map-header h2 {
        font-size: 1.8rem;
    }
    
    .section-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .map-wrapper {
        height: 350px;
        border-radius: 15px;
        margin-bottom: 0; /* Ensure no bottom margin */
    }
    
    .map-info-card {
        padding: 18px;
        border-radius: 12px;
        margin: 15px 0 0 0; /* Only top margin */
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .card-header h4 {
        font-size: 1rem;
    }
    
    .get-directions-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .map-control-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .direction-btn {
        margin: 15px 0 0 0; /* Removed bottom margin */
    }
    
    .map-controls {
        margin: 10px 0 0 0; /* Removed bottom margin */
    }
}

/* Loading and error states */
.map-container.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Remove any potential bottom spacing */
.map-location-section * {
    margin-bottom: 0 !important;
}

/* Restore necessary margins only where needed */
.section-tag {
    margin-bottom: 20px !important;
}

.map-header h2 {
    margin-bottom: 20px !important;
}

.card-header {
    margin-bottom: 20px !important;
}

.card-body p {
    margin-bottom: 12px !important;
}

.card-body p:last-child {
    margin-bottom: 0 !important;
}





/*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;
  }
}

