
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* Preloader‑container styling */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #fff; /* background colour change cheyandi me style prakaram */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

/* Spinner styling */
.spinner {
  width: 60px; height: 60px;
  border: 6px solid #ddd;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Loading text */
.loading-text {
  margin-top: 15px;
  font-family: sans-serif;
  font-size: 16px;
  color: #333;
}


body {

font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}
.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: #fff !important;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

#nav-background {
 background-color: rgba(0, 0, 0, 0.4); /* Black with 60% transparency */
    /*box-shadow: 0 4px 10px var(--bs-focus-ring-color);*/
    z-index: 1000;
    transition: background-color 0.3s ease; /* smooth transition */
    padding: 0;
}
.navbar-nav li a {
  color: #fff;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  /*font-family: "Josefin Sans", sans-serif;*/
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.navbar-nav li a:hover {
  /*background-color: #f0f0f0;*/
  color: gold;
  text-decoration: none;
  /*border-bottom: 1px solid yellow;*/
  /*background-color: #ffffff;*/
}


.navbar-nav li a.active,
.navbar-nav li a:focus {
  /*background-color: #007bff;*/
  color: #fff;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: gold !important;
}

 .navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: cover;
  }

  .nav-link {
    color: #333;
    font-weight: 500;
    margin-left: 15px;
    transition: all 0.3s ease-in-out;
  }

  .nav-link:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .nav-item.active .nav-link {
    color: #007bff;
    font-weight: 600;
  }

  @media (max-width: 991px) {
    .nav-link {
      margin-left: 0;
      padding: 10px 0;
    }
  }

/* Section */
/*section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}*/


/*About us*/
/* Optional animation for fade-in effect */
.about-preview {
  animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

h1, h2 {
  color: #004080;
   font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

ul {
  padding-left: 20px;
}
.about-preview p{
	text-align: justify;
 font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Footer */
.footer-section h5{
	   font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
#footer-Container {
  text-align: center;
  padding: 10px;
  background: #000 !important;
  font-size: 14px;
  color: #fff;
  border-top: 1px solid #ddd;
}
#footer-Container p{
  margin-top: 15px;
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* All devices smaller than 992px (mobile + tablets) */
@media (max-width: 991.98px) {
  .footer-section .container .row {
    text-align: left !important; /* Left align all text */
  }

  .footer-section .col-md-3,
  .footer-section .col-lg-3,
  .footer-section .col-md-6 {
    margin-bottom: 1.5rem; /* Space between stacked columns */
    text-align: left !important; /* Force text left */
  }

  /* Logo brand flex container align left */
  .footer-section .navbar-brand {
    justify-content: flex-start !important;
    text-align: left;
  }
}
/*.services-preview h2{
  font-size: 40px;
}*/

/* Buttons */
.btn-primary {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0056b3;
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

button[type=submit] {
  background-color: #007bff;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type=submit]:hover {
  background-color: #0056b3;
}

/* Grid for Services Section (Homepage) */
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.service {
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
}

/* Map Section */
.map-section iframe {
  border-radius: 8px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }
}


/*banner section*/
 .hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-slide .container-fluid {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-in-out;
  }

  /* Custom Arrows */
  .custom-arrow {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    transition: background-color 0.3s;
  }

  .custom-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }

  .custom-arrow span i {
    font-size: 24px;
    color: white;
  }

  /* Indicators (Dots) */
  .carousel-indicators {
    bottom: 20px;
  }

  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    transition: opacity 0.3s;
  }

  .carousel-indicators .active {
    opacity: 1;
    background-color: #0d6efd;
  }

  /* Fade-in animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /*offer section*/
   .service-box {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }

  .service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .icon-box i {
    font-size: 2rem;
  }

  .bg-icon {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.07);
    z-index: 0;
  }

  .card-body {
    z-index: 1;
  }

  .card-title {
    font-size: 1.1rem;
    font-weight: 600;
  }

  /* Gradient Styles */
  .gradient-black {
    background: linear-gradient(to bottom right, #000000, #434343);
    color: white;
  }

  .gradient-green {
    background: linear-gradient(to bottom right, #014421, #046b35);
    color: white;
  }

  .gradient-orange {
    background: linear-gradient(to bottom right, #5c2c00, #bf6b04);
    color: white;
  }

  .gradient-blue {
    background: linear-gradient(to bottom right, #1f3c88, #3f72af);
    color: white;
  }


  /*Locations Section*/
  .upcoming-locations {
  background: #0f0f0f;
  color: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #00ff88;
  display: block;
  margin: 10px auto 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
}
#footerDara h4{

}
.location-card {
  background: linear-gradient(135deg, #1e1e1e, #114d2d);
  color: white;
  border-radius: 20px;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease both;
  cursor: default;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.location-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #00ff88;
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.7);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*footer section*/
#footerDara h4{
font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
  font-weight: 600;
    font-style: normal;
}
#footerDara p{
	  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
   font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
   font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
#subhead{
	  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
   font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-top: 15px;
}
.footer-link:hover {
  color: #00ffcc;
  text-decoration: underline;
}


/*offcanves*/
.offcanvas.offcanvas-start {
    top: 0;
    left: 0;
    /* width: var(--bs-offcanvas-width); */
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
    width: 237px !important;
}

.offcanvas-body {
    flex-grow: 1;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    overflow-y: auto;
    background-color: black;
}




/*banner*/
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .autoplay-progress {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--swiper-theme-color);
    }

    .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: var(--swiper-theme-color);
      fill: none;
      stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg);
    }


    /*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}




.ev-card {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }

  .ev-card:hover {
    transform: scale(1.03);
  }

  .ev-card .overlay {
    position: absolute;
    inset: 0;
    opacity: 0.3;
  }
  #valuedata h2{
  text-align: center;
   font-family: 'Montserrat', sans-serif;
   font-weight: 800;
  font-size: 40px;

  }
   .serviceheading h2{
       text-align: center;
   font-family: 'Montserrat', sans-serif;
   font-weight: 800;
  font-size: 40px;
   }
  .ev-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
  }

  .ev-content {
    position: relative;
    z-index: 2;
  }
#aboutheading h1 {
  text-align: center;
   font-family: 'Montserrat', sans-serif;
   font-weight: 800;
  font-size: 36px;
  margin-top: 30px;
}

  .bg-green { background-color: #10b981; }
  .bg-blue { background-color: #3b82f6; }
  .bg-purple { background-color: #8b5cf6; }
  .bg-orange { background-color: #f97316; }
  .bg-red { background-color: #ef4444; }


  .content-box {
  background-color: transparent;  /* No background */
 
  color: #222;                    /* Dark text */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.content-box p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.content-box p strong {
  font-weight: 600;
}

.inner-banner {
    padding: 100px 0;
    background: url("../images/About/inner-bg.jpg");
    background-position: top;
    background-size: cover;
    position: relative;
    color: white;
}
.about-title {
    font-size: 60px;
    line-height: 1 !important;
}
.about-img {
    position: relative;
}

/*Contact section*/
/*
Contact Us Style
======================================================*/
.contact-us-area {
    background: #f9f9f9;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
}

.contacts-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contacts-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.contacts-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
}

.contacts-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 6px rgba(0,123,255,0.2);
}

.default-btn {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.default-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #0056b3, #007bff);
}

/* Modern Contact Cards */
.modern-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.modern-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
}

.modern-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.icon-blue::before {
    background: linear-gradient(45deg, #007bff, #00d4ff);
}
.icon-blue .icon {
    background: linear-gradient(45deg, #007bff, #00d4ff);
}

.icon-pink::before {
    background: linear-gradient(45deg, #ff0080, #ff6a00);
}
.icon-pink .icon {
    background: linear-gradient(45deg, #ff0080, #ff6a00);
}

.modern-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.modern-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
}

.modern-card a {
    color: #007bff;
    text-decoration: none;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Social Icons */
.social-media ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    text-decoration: none !important;
}

.social-media ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.social-media ul li a:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #0056b3, #00aaff);
}

@media (max-width: 768px) {
    .contacts-form, .modern-card {
        margin-bottom: 20px;
    }
}



/*service page*/
.service-card {
  border-radius: 0.75rem;
  transition: all 0.3s ease-in-out;
  min-height: 160px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.icon-side {
  min-height: 100%;
  padding: 20px 0;
}
/* Position relative on text container for ::before */
.col-8 {
  position: relative;
  overflow: hidden; /* prevent overflow of pseudo-element */
}

/* Large faint icon behind text */
.col-8::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;  /* slight left padding */
  transform: translateY(-50%);
  font-family: 'bootstrap-icons' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 6rem;  /* large size */
  opacity: 0.05;    /* very faint */
  color: currentColor;
  z-index: 0;
  pointer-events: none;
}

/* Specific icons for each service */

/* EV Charging Stations - plug icon */
.bg-success.col-8::before {
  content: "\f88f"; /* Unicode for bi-ev-station (plug icon) */
  color: #198754;  /* Bootstrap success color */
}

/* Restrooms - person-fill */
.bg-primary.col-8::before {
  content: "\f406"; /* Unicode for bi-person-fill */
  color: #0d6efd;  /* Bootstrap primary color */
}

/* Tea & Pan Shops - cup-hot-fill */
.bg-warning.col-8::before {
  content: "\f5d3"; /* Unicode for bi-cup-hot-fill */
  color: #ffc107;  /* Bootstrap warning color */
}

/* Restaurants - shop */
.bg-danger.col-8::before {
  content: "\f290"; /* Unicode for bi-shop */
  color: #dc3545;  /* Bootstrap danger color */
}
/*locations Stactions*/
.locations h1{
  text-align: center;
  margin: 0 10px auto;
  margin-top: 20px;
  font-size: 40px;
}
.locations p{
  text-align: center;

}




/*About us*/
.content-box h1{
  font-size: 40px;
     font-family: "Poppins", sans-serif;
  font-weight: 800;


}
.content-box p{
  text-align: justify;
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}

/*
Page Banner Style
======================================================*/
.page-banner-area {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.page-banner-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(17, 29, 94, 0.8);
}
.page-banner-area.bg-1 {
  background-image: url(../images/About/EV-banner.png);
}
.page-banner-area.bg-2 {
  background-image: url(../images/About/EV-banner.png);
}
.page-banner-area .container-fluid {
  max-width: 1520px;
  margin: auto;
}

.page-banner-content {
  position: relative;
}
.page-banner-content h1 {
  font-size: 50px;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
  font-weight: 600;
    font-style: normal;
}
.page-banner-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.page-banner-content ul li {
  display: inline-block;
  position: relative;
  padding-right: 18px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
.page-banner-content ul li a {
  text-decoration: none;
  color: #ffffff;
}
.page-banner-content ul li::before {
  position: absolute;
  content: "/";
  right: 2px;
  top: 0;
}
.page-banner-content ul li:last-child {
  color: yellow;
  padding-right: 0;
}
.page-banner-content ul li:last-child::before {
  display: none;
}




.partner-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}


.feature-box {
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.bg-icon {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.05);
}


.location-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #f0f8ff; /* very light blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
  user-select: none;
  margin-left: auto;
  margin-right: auto;
}

.location-icon {
  pointer-events: none;
}

.location-card:hover .location-icon-wrapper {
  background-color: #cce4ff; /* slightly stronger blue on hover */
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
