/* ===== Root Color Variables ===== */
:root {
  --red: #D52B1E;       /* Brand red */
  --green: #2E8B57;     /* Brand green */
  --black: #0B0B0B;     /* Text black */
  --gray: #6c757d;      /* Muted text */
  --light-bg: #ffffff;  /* Background white */
}

/* ===== General Styles ===== */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background-color: var(--light-bg);
}

/* ===== Navbar Styling ===== */
.navbar {
  transition: all 0.3s ease;
}

.navbar-brand span {
  font-weight: 600;
  letter-spacing: 0.5px;
}
.navbar-brand img {
  height: 65px;
  transition: all 0.4s ease;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
 
}

.navbar-brand img:hover {
  transform: scale(1.08);
  filter: drop-shadow(3px 6px 10px rgba(0, 0, 0, 0.4));
}

.brand-green {
  color: var(--green);
}

/* Nav Links */
.nav-link {
  position: relative;
  color: var(--black);
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

/* Underline animation */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--red), var(--green));
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Hover + Active Effect */
.nav-link:hover,
.nav-link.active {
  color: var(--red) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Navbar Brand Hover */
.navbar-brand:hover span {
  color: var(--red);
}

/* Responsive Fix */
.navbar-nav {
  text-align: center;
}

@media (max-width: 991px) {
  .nav-link {
    margin: 8px 0;
  }
}


/* ===== Hero Section ===== */
#hero {
  position: relative;
}

.carousel-item {
  height: 100vh;
  min-height: 550px;
  position: relative;
  transition: opacity 1s ease-in-out; /* smooth fade */
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(70%);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-in-out;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-caption h1 span {
  color: var(--red);
}

.carousel-caption p {
  margin: 20px 0;
  font-size: 1.1rem;
}

/* Hero Button */
.btn-hero {
  background: linear-gradient(90deg, var(--red), var(--green));
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: linear-gradient(90deg, var(--green), var(--red));
  color: #fff;
  transform: scale(1.05);
}

/* Caption Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  }

  .btn-hero{
    padding: 12px 12px;
  }
  .carousel-caption{
    width: fit-content;
    align-items: center;
    text-align: center;
  }
}



/* ======= About Modern Section ======= */
.about-modern-section {
  background: #fff;
  overflow: hidden;
}

.about-img-side {
  position: relative;
  text-align: center;
}

.about-img {
  max-width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.8s ease;
}

.about-img-side:hover .about-img {
  transform: scale(1.05);
}

/* Floating Experience Card */
.exp-card {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-left: 6px solid var(--red);
  padding: 10px 25px;
  border-radius: 12px;
  z-index: 5;
  text-align: center;
}

.exp-card h3 {
  font-size: 32px;
  color: var(--brand);
}

.exp-card span {
  color: var(--red);
}

/* Right Side Content */
.about-content-side {
  padding-left: 30px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--brand), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button */
.about-modern-btn {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-modern-btn:hover {
  background: var(--green);
  transform: scale(1.05);
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .about-img {
    max-width: 100%;
  }

  .exp-card {
    bottom: 10px;
    padding: 8px 18px;
  }

  .about-content-side {
    padding-left: 0;
    text-align: center;
  }
}

.about-content-side p {
  text-align: justify;
}

/* ======= About Highlights Simple ======= */
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
}

.highlight-item {
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-item i {
  color: var(--green);
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.highlight-item h6 {
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

/* Hover Animation */
.highlight-item:hover i {
  color: var(--red);
  transform: scale(1.2);
}

.highlight-item:hover h6 {
  color: var(--red);
}

/* Responsive */
@media (max-width: 768px) {
  .about-highlights {
    justify-content: center;
    gap: 30px;
  }
}



/* ======= Our Services Modern Design ======= */
.services-modern {
  background: linear-gradient(180deg, #fdfdfd 0%, #f8f9fa 100%);
  color: var(--black);
}

.services-modern .highlight {
  color: var(--red);
}

/* Service Card Style */
.service-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(213, 43, 30, 0.25);
}

/* Icon Styling */
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--red);
  transform: rotate(10deg) scale(1.1);
}

.service-card h5 {
  font-weight: 600;
  margin-top: 15px;
  color: var(--black);
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
}

/* ======= Why Choose Us Section ======= */
.why-us-section {
  background-color: var(--light-bg);
  color: var(--black);
}

.why-us-section .highlight {
  color: var(--red);
}

/* Points & Icons */
.why-icon {
  width: 50px;
  height: 50px;
  background: var(--green);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.why-item:hover .why-icon {
  background: var(--red);
  transform: rotate(8deg) scale(1.1);
}

.why-item h6 {
  color: var(--black);
}

.why-item p {
  color: var(--gray);
  font-size: 15px;
}

/* Right Side Image */
.why-img-wrapper {
  position: relative;
  overflow: hidden;
}

.why-img-wrapper img {
  border-radius: 20px;
  transition: all 0.5s ease;
}

.why-img-wrapper:hover img {
  transform: scale(1.05);
}

/* Experience Tag */
.exp-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
}

.exp-tag h3 {
  font-size: 32px;
  margin-bottom: 4px;
}

.exp-tag span {
  font-size: 18px;
}


/* Image Focused Section (Parallax Style) */
.image-focus-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  padding: 200px 0 120px; /* Adjust section height */
}

/* Overlay */
.image-focus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.image-focus-section .container {
  position: relative;
  z-index: 1;
}

.image-focus-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}

.image-focus-section p {
  color: #f1f1f1;
  max-width: 750px;
  margin: 0 auto 25px;
  text-align: justify;
}

.image-focus-section .btn-outline-light {
  border: 2px solid var(--red);
  color: var(--light-bg);
  transition: all 0.3s ease;
}

.image-focus-section .btn-outline-light:hover {
  background: var(--red);
  color: var(--light-bg);
}


.testimonial-modern {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 20px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--light-bg);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 20px);
  }
}


.site-footer {
  background: var(--black);
  color: #ddd;
  font-size: 15px;
}

.footer-title {
  color: var(--light-bg);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
}

.footer-about {
  color: #bbb;
  line-height: 1.6;
  text-align: justify;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-contact li {
  margin-bottom: 10px;
  color: #ccc;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--red);
}

hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.massclick-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}

.massclick-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-logo {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
    display: flex;
  }
  .footer-title {
    text-align: center;
  }
  .footer-links, .footer-contact {
    text-align: center;
  }
}



/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background-color: transparent;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  animation: floatAir 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 65px;
  height: 65px;
  display: block;
}

/* Air Floating Animation */
@keyframes floatAir {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px){
    .whatsapp-icon {
  width: 55px;
  height: 55px;
  display: block;
}
}


/* About Header Section */
.about-header {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.about-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(75%);
  transition: transform 10s ease;
}

/* Subtle moving effect */
.about-header:hover .about-header-img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 11, 11, 0.6);
}

.header-content {
  z-index: 2;
  padding: 0 15px;
}

.about-header h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.about-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-header {
    height: 50vh;
  }
  .about-header h1 {
    font-size: 2rem;
  }
  .about-header p {
    font-size: 0.95rem;
  }
}

/* Our Story Section */
.our-story-section {
  background-color: var(--light-bg);
}

.our-story-section h2 {
  color: var(--black);
}

.our-story-section p {
  color: var(--gray);
  line-height: 1.7;
}

.our-story-section .bi {
  color: var(--green);
  transition: transform 0.3s ease;
}

.our-story-section .bi:hover {
  transform: scale(1.2);
}

.mission-vision-section {
  background-color: var(--light-bg);
}

.mission-vision-section h2 {
  color: var(--black);
}

.mission-vision-section .bi {
  color: var(--green);
  transition: transform 0.3s ease;
}

.mission-vision-section .p-4:hover .bi {
  transform: scale(1.2);
  color: var(--red);
}

.mission-vision-section .p-4 {
  border-left: 4px solid var(--green);
  transition: all 0.3s ease;
}

.mission-vision-section .p-4:hover {
  border-left-color: var(--red);
  transform: translateY(-5px);
}

.services-section {
  background-color: var(--light-bg);
}

.service-card {
  border: 1px solid #eee;
  transition: all 0.4s ease;
  background-color: #fff;
}

.service-card:hover {
  background-color: var(--red);
  color: #fff !important;
  transform: translateY(-8px);
}
.service-card:hover h5{
  color: #fff;
}

.service-card:hover p{
  color: #fff;
}
.service-icon {
  font-size: 3rem;
  color: var(--light-bg);
  transition: color 0.4s ease, transform 0.3s ease;
}

.service-card:hover .service-icon {
  color: #fff !important;
  transform: scale(1.2);
}


    /* Gallery Section */
    .gallery-section {
      padding: 80px 0;
      background: var(--light);
    }

    .gallery-section h2 {
      color: var(--dark);
      font-weight: 700;
      text-align: center;
      margin-bottom: 50px;
    }

    .gallery-item img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      border-radius: 12px;
      transition: all 0.4s ease;
    }

    .gallery-item img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    /* Lightbox Custom Style */
    .lb-data .lb-caption {
      color: #fff !important;
      font-weight: 500;
      font-size: 1rem;
    }
    .lb-nav a.lb-prev, .lb-nav a.lb-next {
      opacity: 0.8;
    }
    .lb-close {
      opacity: 0.9 !important;
    }


    /* === Gallery Section Styling === */
.gallery-section {
  background-color: #f8f9fa;
}

/* Gallery items (images & videos) */
.gallery-section .col-6,
.gallery-section .col-md-4,
.gallery-section .col-lg-3,
.gallery-section .col-lg-4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Images and video thumbnails uniform size */
.gallery-section img {
  width: 100%;
  height: 250px; /* fixed uniform height */
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover zoom effect */
.gallery-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Video thumbnail wrapper */
.video-thumb {
  position: relative;
  overflow: hidden;
}

.video-thumb img {
  height: 250px; /* same as image */
  object-fit: cover;
  border-radius: 12px;
}

/* Play icon overlay */
.play-icon {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease;
}

.video-thumb:hover .play-icon {
  transform: scale(1.2);
  background: rgba(0, 0, 0, 0.6);
}

/* Contact Section */
.contact-section {
  background-color: #f8f9fa;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 5px rgba(0, 128, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 400px;
}

.product-section img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.btn-success {
  background-color: var(--green, #14B8A6);
  border: none;
}
.btn-success:hover {
  background-color: #0f9d8c;
}

 /* Background Gradient Animation */
  #product-booking {
    background: linear-gradient(45deg, #ff6b6b, #f9d423, #24c6dc, #5433ff);
    background-size: 400% 400%;
    animation: bgShift 12s ease infinite;
    position: relative;
    overflow: hidden;
  }

  @keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Form Container */
  .booking-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    max-width: 650px;
    animation: floatUp 6s ease-in-out infinite;
  }

  /* Floating animation */
  @keyframes floatUp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }

  /* Input Fields */
  .form-control, .form-select {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #0e0d0d;
    border-radius: 10px;
    padding: 12px;
    transition: 0.3s;
  }

  .form-control::placeholder {
    color: #eee;
  }

  .form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  }

  label {
    color: #020202;
    font-weight: 500;
  }

  /* Button */
  .btn-submit {
    background: linear-gradient(90deg, #ff0080, #7928ca);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
  }

  .btn-submit:hover {
    background: linear-gradient(90deg, #7928ca, #ff0080);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 150, 0.5);
  }

  /* Responsive Fix */
  @media (max-width: 768px) {
    .booking-form-wrapper {
      padding: 20px;
    }
  }


  .call-now-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #ff4b5c, #ff6b6b);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.call-now-btn:hover {
  background: linear-gradient(45deg, #ff6b6b, #ff4b5c);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.call-now-btn i {
  font-size: 18px;
}

/* Mobile View */
@media (max-width: 768px) {
  .call-now-btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    padding: 10px;
    font-size: 16px;
  }

  .call-now-btn .call-text {
    display: inline;
  }
}

.products-section {
  background: #f9f9f9;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card img {
   max-width: 100%;
  height: auto; /* Auto height */
  max-height: 200px; /* Limit max height for uniform cards */
  object-fit: contain; /* Keeps full image visible */
  margin: 0 auto; /* Centers image horizontally */
  transition: transform 0.5s ease;
  display: block;
}

.product-card h5 {
  font-size: 1rem;
  color: #222;
  font-weight: 600;
  padding: 15px 10px;
  margin: 0;
  background: #fff;
  flex-shrink: 0;
  border-top: 1px solid #eee;
  min-height: 55px; /* Ensures consistent text alignment */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4d4d;
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  animation: fadeInBadge 1s ease forwards;
}

@keyframes fadeInBadge {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Responsive Fix */
@media (max-width: 767px) {
  .product-card img {
    height: 180px;
  }
  .product-card h5 {
    font-size: 0.95rem;
    min-height: 50px;
  }
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
  max-width: 100%;
  height: 160px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px;
}

.product-card h5 {
  font-weight: 600;
  color: #222;
  font-size: 1rem;
  min-height: 50px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(45deg, #e63946, #ff9a00);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 20px;
}

/* AOS animation smoothness */
[data-aos] {
  transition-duration: 1s;
}

.contact-section {
  background: linear-gradient(135deg, #f4fff7, #f8f9fa);
  padding-bottom: 80px;
}

.contact-card {
  transition: 0.4s ease;
  border: none;
  background: #fff;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  transition: 0.3s;
}

.contact-card:hover i {
  transform: scale(1.1);
}

.contact-card h5 {
  color: #198754;
}

.contact-card .form-control {
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: 0.3s;
}

.contact-card .form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
}

/* Make Map and Form Equal Height */
iframe {
  min-height: 350px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-card {
    text-align: center;
  }
  iframe {
    height: 300px;
  }
}
