:root {
  --primary-green: #6BAD2D;
  --dark-green: #1c4105;
  --white: #ffffff;
  --dark-bg: #1a1a1a;
  --text-dark: #333333;
  --text-light: #666666;

  --font1: 'Saira Condensed', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1245px;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
.close-bg button{
  background-color: var(--primary-green);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
    top: 0;
}
/* Top Header */
.top-header {
  /* background: var(--primary-green); */
  color: var(--white);
  /* padding: 12px 0;
  font-size: 14px; */
}

.left-col-h {
  background-color: var(--primary-green);
}

.header-text {
  margin: 0;
  padding: 14px 90px;
  display: flex;
  /* justify-content: center; */
  font-size: 14px;
  height: 45px;
}

.right-col-h {
  background-color: var(--dark-green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 121px;
  display: flex;
  justify-content: end;
  font-size: 14px;
  height: 45px;
}

.email-link {
  color: var(--white);
  text-decoration: none;
  margin-right: 35px;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  /* overflow: hidden; */
}

.email-link::after {
  content: '';
  position: absolute;
  right: -17px;
  top: -11px;
  height: 100px;
  width: 1px;
  background-color: #fff;
}

.email-link i {
  color: var(--primary-green);
  font-size: 15px;
}

.social-icons {
  display: inline-block;
  display: flex;
  align-items: center;
  gap: 3px;
}

.social-icons a i {
  font-size: 12px;
}

.social-icons a {
  color: var(--white);
  background: var(--primary-green);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  text-decoration: none;
}

/* Navbar */
.navbar {
  background: var(--white);
  padding: 0px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 999;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand img {
  width: 180px;
}

.nav-link {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  margin: 0 5px;
}

.nav-link:hover {
  color: var(--primary-green);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler i {
  font-size: 30px;
  color: var(--primary-green);
}
.apply-btn{
  background-color: var(--primary-green);
  color: #fff;
  border: none;
  font-size: 15px;
  padding: 5px 15px;
  margin-left: 10px;
  text-decoration: none;
}
#offcanvasNav .offcanvas-header {
  position: relative;
}

.offcanvas-header .btn-close {
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width:767px) {
  .top-header {
    display: none;
  }

  .navbar-brand img {
    width: 150px;
  }

  .navbar {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .offcanvas-logo {
    height: 83px !important;
    margin-left: 20px;
  }

  .nav-item {
    border-bottom: 1px solid #afafaf59;
  }

  .nav-link {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 400;
    padding: 10px 0;
  }

  .social-media-mobile {
    display: flex;
    padding: 0;
    margin: 0 15px;
    padding: 15px 0;
    gap: 20px;
  }

  .social-media-mobile li {
    list-style: none;
  }

  .social-media-mobile li a {
    text-decoration: none;
    color: var(--primary-green);
    border-bottom: 1px solid var(--primary-green);
    padding-bottom: 7px;
    font-size: 20px;
  }

}

/* Hero Section */
.hero-section {
  background: url('../img/hero/slider.jpg') center/cover no-repeat;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Saira Condensed', sans-serif;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;

  /* left se shadow effect */
  /* background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  ); */
  background: linear-gradient(45deg, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 65px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .hero-section{
    height: 460px;
  }
  .hero-overlay {
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0)); */
    background: linear-gradient(90deg, #000000e0, #00000005);
}
}
.green-text {
  color: var(--primary-green);
}

/* Features Card */
.features-card {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding-bottom: 0px;
  /* background-color: var(--primary-green); */
  z-index: 11;
}

.features-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 70px;
  width: 100%;
  height: 213px;
  background-color: var(--primary-green);
  z-index: -1;
}

.card-wrapper {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.feature-box {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid #eee;
}

.feature-box:last-child {
  border-right: none;
}

.feature-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-box p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Bottom Green Section */
.bottom-green {
  background: var(--primary-green);
  padding: 30px 0;
  color: var(--white);
}

.bottom-green p {
  margin: 0;
  font-size: 16px;
}

.ev-link {
  color: var(--dark-green);
  text-decoration: underline;
  font-weight: bold;
}

/* Mobile Offcanvas */
.offcanvas-logo {
  height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .feature-box {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .feature-box:last-child {
    border-bottom: none;
  }

  .social-icons {
    margin-top: 10px;
    display: block;
  }
  .features-card::after{
    height: 94%;
  }
  .feature-box {
    padding: 15px 20px;
  }
}

/* =============== */
.why-best-section {
  padding: 80px 0;
  background: #f8f8f8;
  font-family: var(--font1);
}

.best-left {
  padding-left: 30px;
  padding-right: 0;
}

.border-left-style {
  border-left: 1px solid var(--primary-green);
}

.section-subtitle {
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.3;
  letter-spacing: 1px;
  font-family: var(--font1);
}

.image-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 301px;
}

.image-box img {
  width: 100%;
  display: block;

}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay full */
.image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 10px;

  background: linear-gradient(to top, rgb(0 0 0), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}

/* TEXT — default bottom */
.image-overlay h3 {
  color: #fff;
  margin: 0;
  text-align: center;
  max-width: 100%;
  font-family: var(--font1);
  /* 👇 IMPORTANT */
  transform: translateY(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* HOVER — text center move */
.image-box:hover .image-overlay h3 {
  transform: translateY(-110px);
  /* bottom → center */
}

.image-overlay h3 {
  color: var(--white);
  font-size: 41px;
  margin: 0;
}

@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

}
@media screen and (max-width:767px) {
    .section-title {
      font-size: 31px;
    }
}
/* ====================== */
.contact-form-section {
  padding: 80px 0;
  background: #e8e8e8;
}

.form-wrapper {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 0px;
}

.form-title {
  font-size: 35px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 7px;
  font-family: var(--font1);
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  background: #f5f5f5;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.form-input:focus {
  outline: none;
  background: #efefef;
}

textarea.form-input {
  resize: none;
}

.submit-btn {
  background: var(--primary-green);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn:hover {
  background: var(--dark-green);
}

.content-wrapper-main {
  padding: 15px;
}

.content-wrapper {
  padding-left: 30px;
  position: relative;

}

.green-border {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5px;
  height: 272px;
  background: var(--primary-green);
}

.content-title {
  font-size: 47px;
  font-weight: bold;
  color: var(--dark-green);
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: var(--font1);
}

.content-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .form-wrapper {
    margin-bottom: 40px;
  }

  .content-wrapper {
    padding-left: 20px;
  }

  .content-title {
    font-size: 32px;
  }
}

/* ========================== */
.about-section {
  padding: 80px 0;

}

/* IMPORTANT FIX */
.about-section,
.about-section .container,
.about-section .row {
  overflow: visible !important;
}



/* LEFT COLUMN – IMAGE */
.about-section .col-lg-6:first-child {
  position: sticky;
  top: 100px;
  /* header height ke hisaab se */
  align-self: flex-start;
}



.bg-about {
  background: #f5f5f5;
}

.about-image img {
  width: 100%;
  position: relative;
  z-index: 99;
}

.about-content {
  padding-left: 25px;
  position: relative;
}

.padding-about {
  padding: 35px 25px;
}

.features-row {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  padding: 5px;
}

.feature-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.feature-content h4 {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.about-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.bullet-points {
  margin-top: 20px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.bullet-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-green);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.bullet-item p {
  margin: 0;
  font-size: 15px;
  color: var(--text-dark);
}

@media (max-width: 992px) {
  .about-image {
    margin-bottom: 40px;
  }

  .about-content {
    padding-left: 20px;
  }

  .features-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* ========================= */
.power-up-section {
  background: url('../img/best-area/cta-bg.jpg') center/cover no-repeat;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.power-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 80, 22, 0.85);
  z-index: 1;
}

.power-content {
  position: relative;
  z-index: 2;
}

.power-title {
  font-size: 6rem;
  font-weight: bold;
  color: var(--primary-green);
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-family: var(--font1);
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-green);
  text-stroke: 2px var(--primary-green);
}

.power-description {
  font-size: 16px;
  color: var(--white);
  line-height: 1.8;
}

.power-images {
  position: relative;
  z-index: 2;
}

.power-images .image-top {
  margin-bottom: 20px;
  width: 420px;
  height: 288px;
}

.image-top img,
.image-bottom img {
  width: 100%;
  border-radius: 0px;
}

@media (max-width: 992px) {
  .power-title {
    font-size: 40px;
  }

  .power-images {
    margin-top: 40px;
  }
}

/* ======================== */
.perfect-fit-section {
  padding: 80px 0 60px;
  background: var(--white);
}

.perfect-fit-section .fit-content .green-border {
  height: 210px;
}

.fit-content {
  position: relative;
  padding-left: 20px;
}

.fit-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

.chargers-grid {
  margin-top: 50px;
}

.charger-card {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  margin-bottom: 30px;
  height: 400px;
}

.charger-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.charger-card:hover img {
  transform: scale(1.05);
}

.charger-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0), transparent);
  padding: 15px 20px;
}

.charger-overlay h4 {
  color: var(--white);
  font-size: 33px;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  text-align: center;
  font-family: var(--font1);
}

.disclaimer-section {
  padding: 50px 0;
  background: #f8f8f8;
}

.disclaimer-title {
  font-size: 35px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-family: var(--font1);
  letter-spacing: 0.5px;
}

.disclaimer-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 992px) {
  .fit-description {
    margin-top: 20px;
  }

  .charger-card {
    height: 300px;
  }
}

/* ============================== */
.partners-section {
  background: url('../img/bg/brands-bg.jpg') center/cover no-repeat;
  position: relative;
  padding: 60px 0;
}

.partners-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.partners-slider {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.partner-logo img {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partner-logo img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .partners-slider {
    gap: 30px;
  }

  .partner-logo {
    min-width: 120px;
  }

  .partner-logo img {
    max-width: 130px;
  }
  .about-section .col-lg-6:first-child {
    position: sticky;
    top: 193px;
    align-self: flex-start;
    z-index: 99;
}
}

/* =============================== */
.breadcrumb {
  background-image: url('../img/breadcrumb/contact-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.breadcrumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(107, 173, 45, 0.7) 0%, rgba(107, 173, 45, 0.3) 100%); */
  background: linear-gradient(45deg, #60af28 0%, transparent 85%);
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumb-content h1 {
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  font-family: var(--font1);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.breadcrumb-nav a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--dark-green);
}

.breadcrumb-nav .separator {
  color: var(--text-dark);
}

.breadcrumb-nav span:last-child {
  color: var(--white);
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 80px 20px;
    min-height: 300px;
  }

  .breadcrumb-content h1 {
    font-size: 48px;
  }

  .breadcrumb-nav {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-content h1 {
    font-size: 36px;
  }

  .breadcrumb-nav {
    font-size: 14px;
  }
}

/* ================================= */

.contact-section {
  padding: 80px 20px;
  background-color: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Side - Contact Info */
.contact-info {
  padding-top: 20px;

}

.title-section {
  border-left: 2px solid var(--primary-green);
}

.title-section .subtitle {
  font-size: 16px;
  color: var(--primary-green);
  margin-bottom: 6px;
  padding-left: 24px;
  padding-left: 20px;
}

.title-section h2 {
  font-size: 50px;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 0px;
  padding-left: 20px;
  font-family: var(--font1);
}

.img-box-container {
  margin-top: 50px;
}

.img-box-ev {
  margin-bottom: 30px;
}

.img-box-ev .image-box {
  max-width: 675px;
  height: 450px;
  border-radius: 3px;
}

.img-box-container .image-box {
  max-width: 600px;
}

.contact-info h2 {
  font-size: 48px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 0px;

  padding-left: 20px;
  font-family: var(--font1);
}

.contact-info .subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 35px;
  padding-left: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  /* margin-bottom: 35px; */
  padding: 20px 0;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 30px;
  height: 30px;
  /* background-color: var(--primary-green); */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon i {
  color: var(--dark-bg);
}

.contact-item:hover .contact-icon {
  animation: flipIcon 0.6s ease;
}

.services01 {
  padding: 80px 0;
}

@keyframes flipIcon {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.contact-icon i {
  font-size: 19px;

}

.contact-details h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: var(--font1);
}

.contact-details p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Right Side - Contact Form */
.contact-form-wrapper {
  background-color: #f8f8f8;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
  font-size: 30px;
  font-weight: bold;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-family: var(--font1);
}

.contact-form-wrapper .form-group {
  margin-bottom: 25px;
}

.contact-form-wrapper .form-control {
  width: 100%;
  padding: 18px 20px;
  border: none;
  background-color: #e8e8e8;
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  outline: none;
  background-color: var(--white);
  box-shadow: 0 0 0 2px var(--primary-green);
}

.contact-form-wrapper .form-control::placeholder {
  color: #999;
}

.contact-form-wrapper textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.contact-form-wrapper .submit-btn {
  width: 100%;
  padding: 18px;
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.contact-form-wrapper .submit-btn:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 173, 45, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info h2 {
    font-size: 40px;
  }

  .contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 15px;
  }

  .contact-info h2 {
    font-size: 32px;
  }

  .contact-form-wrapper h2 {
    font-size: 28px;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
  }

  .contact-icon i {
    font-size: 19px;
  }
}

/* ========================== */
.headline-default .default-subtitle {
  text-align: center;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.headline-default h2 {
  color: var(--dark-green);
  font-family: var(--font1);
  text-align: center;
  font-size: 55px;
  font-weight: 600;
}

/* ========================== */
/* EV Services Section */
.ev-services-section {
  padding: 60px 20px;
  /* background-color: #f8f9fa; */
}

.ev-services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.ev-services-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev-services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ev-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
  color: #7cb342;
}

.ev-icon svg {
  width: 100%;
  height: 100%;
}

.ev-services-card h3 {
  font-size: 33px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-family: var(--font1);
}

.ev-services-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

.ev-icon img {
  width: 100px;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ev-services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ev-services-section {
    padding: 40px 15px;
  }

  .ev-services-card {
    padding: 30px 20px;
  }

  .ev-services-card h3 {
    font-size: 20px;
  }

  .ev-icon {
    width: 70px;
    height: 70px;
  }
}

/* =========================== */
.ev-about {
  padding: 60px 20px;
  background-color: #f8f9fa;
}
/* ==========================================
   ENQUIRY MODAL – FINAL CLEAN CSS
========================================== */

/* Modal Header */
.enquiry-modal-header {
    background: #f8f9fa;
    border-bottom: none;
    padding: 20px 50px 0;
    position: relative;
    overflow: hidden;
}

.enquiry-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: var(--font1);
}

/* Close Button */
.enquiry-close-btn {
    background: #7ab72c;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    opacity: 1;
}

.enquiry-close-btn:hover {
    background: #6a9c26;
    transform: scale(1.05);
}

/* Modal Body */
.enquiry-modal-body {
    padding: 25px 50px 0;
}

/* Form Layout */
.enquiry-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.enquiry-form-group {
    margin-bottom: 20px;
}

/* Input Fields */
.enquiry-input-field {
    width: 100%;
    padding: 18px 20px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.enquiry-input-field:focus {
    background: #ebebeb;
}

.enquiry-input-field::placeholder {
    color: #666;
}

/* Select Field */
.enquiry-select-field {
    width: 100%;
    padding: 18px 20px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-select-field:focus {
    background: #ebebeb;
}

/* Textarea (FINAL – SMALL HEIGHT) */
.enquiry-textarea-field {
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    color: #333;
    resize: vertical;
    min-height: 20px; /* ✅ FINAL */
    transition: all 0.3s ease;
}

.enquiry-textarea-field:focus {
    background: #ebebeb;
}

.enquiry-textarea-field::placeholder {
    color: #666;
}

/* Submit Button */
.enquiry-submit-btn {
    background: #7ab72c;
    color: #fff;
    border: none;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.enquiry-submit-btn:hover {
    background: #6a9c26;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(122, 183, 44, 0.3);
}

/* Modal Dialog */
.enquiry-modal-dialog {
    max-width: 850px;
    margin: 50px auto;
}

.enquiry-modal-content {
    border: none;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .enquiry-form-row {
        grid-template-columns: 1fr;
    }

    .enquiry-modal-header {
        padding: 20px 25px 15px;
    }

    .enquiry-modal-title {
        font-size: 22px;
    }

    .enquiry-close-btn {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }

    /* AOS safety for mobile */
    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
    }
}
/* ============================= */
@media only screen
  and (min-width: 768px)
  and (max-width: 1024px) {
  
.header-text {
    margin: 0;
    padding: 14px 0px;
    display: flex;
    font-size: 11px;
    height: 45px;
}
    .social-icons {
        margin-top: 0px;
        display: flex;
    }
    .right-col-h {
    padding: 10px 40px;}
}
