@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: #f9f9f9;
}

a {
  text-decoration: none !important;
}


p{
  color: var(--color-gray);
  font-weight: 400;
}


li{
   color: var(--color-gray);
  font-weight: 400; 
}

:root {
  /* Primary Brand Colors */
  --color-primary: #fb5a00;
  /* Bright Green - highlights, buttons */
  --color-primary-dark: #ff5c00;
  /* Dark Green - navbar, accents */

  /* Neutral Colors */
  --color-black: #111111;
  /* Main text */
  --color-dark-gray: #333333;
  /* Secondary text */
  --color-gray: #616161;
  /* Muted text */
  --color-light-gray: #f5f5f5;
  /* Section backgrounds */
  --color-white: #ffffff;
  /* Main background */

  /* Status Colors (optional, extend as needed) */
  --color-success: #6cc000;
  --color-warning: #ffc107;
  --color-danger: #f44336;

  --swiper-theme-color: white !important;
}

section {
  overflow: hidden;
}

/* Top Bar */
.top-bar {
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 14px;
  padding: 12px 0;
  display:none;
}

.top-bar a {
  color: var(--color-white);
  text-decoration: none;
  margin-left: 10px;
}

/* ==============================
   NAVBAR BASE STYLES
============================== */
.navbar {
  padding: 15px;
  position: sticky;
  top: 0;
  background: var(--color-white);
  z-index: 9999;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: var(--color-black);
  font-weight: 500;
  margin: 0 8px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ==============================
   DROPDOWN STYLES
============================== */
.navbar .dropdown-menu {
  min-width: 240px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.25s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background: linear-gradient(135deg, #f3f6ff, #eaf0ff);
  transform: translateX(4px);
  color: #0d6efd;
  font-weight: 500;
}

/* ==============================
   SUBMENU STYLES
============================== */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>ul {
  display: none;
  position: absolute;
  left: 95%;
  top: 0;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 240px;
  z-index: 999;
  animation: fadeIn 0.2s ease-in-out;
  padding: 20px;
}

.dropdown-submenu:hover>ul {
  display: block;
}

.dropdown-submenu ul li {
  padding: 10px 16px;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
}

.dropdown-submenu ul li:hover {
  background: linear-gradient(135deg, #f3f6ff, #eaf0ff);
  color: #0d6efd;
  cursor: pointer;
  transform: translateX(4px);
  transition: all 0.2s ease;
}

/* ==============================
   ANIMATION
============================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   RESPONSIVE FIXES
============================== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
  }

  .dropdown-submenu>ul {
    position: static;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }

  /* Mobile click-to-open behavior */
  .dropdown-submenu.open>ul {
    display: block;
  }

  /* Tidy up submenu links */
  .dropdown-submenu ul li {
    padding: 8px 5px 8px 0px;
     display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 30ch;
  }
  
  .dropdown-submenu ul li:hover{
  transition: all 0s ease;
}}


.btn-get {
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 20px;
}

.btn-get:hover {
  background: var(--color-primary);
  color: #fff;
}

.hero {
  padding: 50px 0;
  background: #f9f9f9;
}

.hero h1 {
  /* color: var(--color-gray); */
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
}

.hero h5 {
  color: var(--color-primary);
}

.hero p {
  margin: 10px 0;
  color: #555;
}

.btn-main {
  background: var(--color-primary-dark);
  color: var(--color-white);
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
  margin-right: 10px;
}

.btn-main:hover {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  box-shadow: 0px 0px 10px 1px #fb5c0053;
}

.btn-outline-main {
  border: 2px solid var(--color-success);
  color: var(--color-success);
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
}

.btn-outline-main:hover {
  background: var(--color-success);
  color: #fff;
}

.hero-img img {
  max-width: 100%;
}

.modal-content {
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
  border-bottom: none;
  width: 100%;
}

/* Bar Section */
.brand-bar {
  background: var(--color-primary-dark);
  padding: 20px;
  /* overflow: hidden; */
  position: relative;
}

.brand-bar div {
  text-wrap: nowrap;
  font-weight: 500;
  font-size: x-large;
  color: var(--color-white);
}

/* Slider Wrapper */
.brand-slider {
  display: flex;
  width: calc(200%);
  /* double width for seamless looping */
  animation: scroll 18s linear infinite;
  display:none;
}

/* Each Logo */
.brand-slider img {
  height: 50px;
  margin: 0 40px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-slider img:hover {
  filter: grayscale(0%);
}

/* Keyframes for animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.about-section {
  padding: 40px;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.about-section p {
  /* font-size: 0.95rem; */
  color: var(--color-gray);
  /* margin-bottom: 35px; */
}

#stats {
  background: #f9f9f9;
}

.about-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.about-text {
  font-size: 0.95rem;
  color: #555;
  /* margin-bottom: 35px; */
}

.about-btn {
  margin-top: 10px;
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
  font-weight: 500;
}

.about-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.about-images img {
  width: 100%;
  margin-bottom: 15px;
}

.aboutIMG1 {
  height: auto;
  object-fit: cover;
}

#stats {
  padding-top: 50px;
  padding-bottom: 50px;
}

.stat-col {
  position: relative;
  text-align: center;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ffa726;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #0d2d19;
  line-height: 1;
}

.stat-text {
  margin-top: 6px;
  color: #666;
  font-size: 0.95rem;
  font-weight: 600;
}

/* vertical divider placed at right edge of each column except the last column in the row */
@media (min-width: 768px) {
  .stats-row>.stat-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 90%;
    background-color: var(--color-primary-dark);
    /* dark green */
  }
}

/* Hide divider on small screens (mobile) */
@media (max-width: 767.98px) {
  .stats-row>.stat-col::after {
    display: none;
  }
}

.info-card {
  background-color: var(--color-primary-dark);
  /* border-radius: 1.5rem; */
  padding: 1.5rem;
  height: 100%;
  display: flex;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
}

.info-card .icon-container {
  background-color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 25px;
  display: flex;
box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-card .icon-container i {
  color: var(--color-primary-dark);
  font-size: 1.5rem;
}

.info-card h4 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #f3f6ff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* @media (max-width: 992px) {
  .info-card {
    border-radius: 20px;
  }
} */

.testimonials {
  padding: 50px 0px 30px 0px;
  background: #f9f9f9;
}

.testimonials h2 {
  align-items: center;
  text-align: center;
}

.testimonial2 {
  padding: 10px 0px 80px 0px;
  background: #f9f9f9;
}

.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.btn-testimonials {
  background: #113a20;
  color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: 500;
  margin-top: 5px;
  text-decoration: none;
}

.testimonial-left {
  background-color: var(--color-primary-dark);
  color: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}
.testimonial-left p{
  color: white;
}

.testimonial-left h1 {
  font-size: 3rem;
  font-weight: bold;
}

.testimonial-card {
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  padding: 40px;
  background: #fff;
  height: 295px;
  transition: transform 0.4s ease-in-out;
}

.star {
  color: #ffa726;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #ffa726;
  cursor: pointer;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.swiper-prev {
  left: 20px;
}

.swiper-next {
  right: -20px;
}

.swipe-btn:hover {
  background: #93c83b;
  color: #fff;
}

.swiper {
  position: relative;
}

.blogs {
  padding: 40px 0px 40px 0px;
}

.blogs hr {
  height: 2px;
  background-color: grey;
  padding: 0px;
  border: none;
}

.blogs p {
  color: var(--color-gray);
}

.section-title h2 {
  color: var(--color-black);
  font-size: 2.5rem;
  font-weight: 600;
}

.section-title {
  /* font-size: 2rem; */
  /* font-weight: bold; */
  margin-bottom: 10px !important;
  text-align: center;
}

.blog-card {
  background-color: var(--color-light-gray);
  border: rgb(224, 224, 224) solid 2px;
  border-radius: 25px;
  overflow: hidden;
  padding: 15px;
  color: white;
  height: 480px;
  transition: transform 0.3s ease-in-out;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

.blog-card h4 {
  color: var(--color-dark-gray);
  font-weight: bold;
}

.category-badge {
  display: inline-block;
  color: black;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-gray);
}

.blog-desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 15px;
}

.read-more {
  color: var(--color-primary-dark);
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.view-all-btn {
  background: var(--color-primary-dark);
  color: rgb(255, 255, 255);
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
}

.view-all-btn:hover {
  background: #ffa726;
  color: black;
}

.faq-section {
  padding: 60px 0;
}

.faq-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: x-large;
  font-weight: 500;
  color: var(--color-black);
}

.faq-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-black);
}

.accordion-button {
  background: #fff;
  border-top: 15px !important;
  border-bottom: 0px !important;
  box-shadow: none;
  border: none;
  font-weight: 600;
  height: 70px;
  color: #000;
}

.accordion-button:not(.collapsed) {
  background: var(--color-primary-dark);
  color: #fff;
}

.accordion-body {
  background: var(--color-primary-dark);
  color: #fff;
  border-top: 0px !important;
  /* border-bottom: 10px !important; */
  margin-top: 0px;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
}

.accordion-button::after {
  font-family: "Bootstrap-icons";
  content: "+";
  font-size: 1.2rem;
  font-weight: bold;
  background: none !important;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "–";
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--color-primary-dark) !important;
}

/* Right-side cards */
.faq-side-card {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 20px;
}

.faq-side-card h5 {
  font-weight: bold;
}



.faq-side-card p {
color: white;
}

.contact-faq-btn {
  background: #ffa726;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  margin-top: 15px;
  color: white;
  display: inline-block;
  text-decoration: none;
}

.contact-btn:hover {
  background: #aee600;
}

.service-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 16px;
  height: 100%V;
  border: 1px solid #ddd;
}

.service-card h5 {
  font-weight: bold;
}

.process-section {
  padding: 60px 0;
}

.process-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0d2b1f;
}

.process-section p {
  color: #666;
}

.process-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  position: relative;
  text-align: left;
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
      transition: transform 0.3s ease, box-shadow 0.3s ease;

}




.process-card:hover {
    transform: translateY(-10px); /* Card upar jayega */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Elevation effect */
}


.process-card h5 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #0d2b1f;
}

.process-card p {
  font-size: 0.95rem;
  position: relative;
  z-index: 5;
  color: #666;
}

.step-number-bg {
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 4rem;
  font-weight: bold;
  color: rgba(241, 133, 1, 0.2);
  z-index: 1;
}

.step-footer {
  background: var(--color-primary-dark);
  color: white;
  border-radius: 0 0 18px 18px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -25px;
  margin-top: 20px;
}

.step-footer span {
  font-weight: bold;
}

.step-footer .step-index {
  color: white;
}

.footer {
  padding: 60px 0 0;
 
   background-color: #000; /* Pure black background */
  color: #f5f5f5; /* Light text color for contrast */
  
}

.footer h3 {
  font-weight: bold;
  /* margin-bottom: 20px; */
  color: var(--color-primary-dark);
}

.footer p {
  color: white;
  font-size: 0.95rem;
}

.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  border-radius: 50%;
  background: #ffa726;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.footer .social-icons a:hover {
  background: #0d2b1f;
  color: #fff;
}

.footer .subscribe-input {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.footer .subscribe-input input {
  border: none;
  outline: none;
  padding: 10px 15px;
  flex: 1;
}

.footer .subscribe-input button {
  background: var(--color-primary-dark);
  border: none;
  color: #fff;
  padding: 0 20px;
  cursor: pointer;
}

.footer-bottom {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 15px 0;
  margin-top: 40px;
  font-size: 0.9rem;
}

.footer-bottom p {
  color: var(--color-white);
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  /* margin-left: 10px; */
}

.footer a{
  color: white;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.contact-btn {
  background: var(--color-primary-dark);
  color: #fff;
  border-radius: 30px;
  padding: 8px 25px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #ffa726;
  color: #fff;
}

.services {
  padding: 50px 0;
}

.services-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: x-large;
  font-weight: 500;
  color: var(--color-black);
}

.services h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.services-card {
  background-color: var(--color-light-gray);
  border: rgb(224, 224, 224) solid 2px;
  border-radius: 25px;
  overflow: hidden;
  padding: 15px;
  color: white;
  height: 540px;
  transition: transform 0.3s ease-in-out;
}

.services-card hr {
  height: 2px;
  background-color: grey;
  border: none;
}

.services-card:hover {
  transform: translateY(-10px);
}

.services-card h5 {
  /* font-size: 1.1rem; */
  font-weight: bold;
  color: var(--color-black);
  /* margin-bottom: 10px; */
}

.services-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

.service-badge {
  display: inline-block;
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 1rem;
  /* margin-bottom: px; */
}

/* .service-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-black);
} */

.service-desc {
  /* font-size: 0.9rem; */
  color: var(--color-black);
  /* margin-bottom: 15px; */
}

.service-btn {
  /* margin-top: 10px; */
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  width: 160px;
}

.service-but {
  padding-top: 15px;
  padding-bottom: 20px;
  /* text-align: center; */
  /* align-items: center; */
  /* justify-content: center; */
}

.contact-section {
  padding: 50px 0;
}

.contact-title {
  text-align: center;
  justify-content: center;
}

.contact-title p {
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  /* margin-bottom: 20px; */
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 12px;
}

textarea {
  height: 150px;
}

.send-btn {
  background: var(--color-primary-dark);
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.send-btn:hover {
  background: #ffa726;
}

.contact-label {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #333;
}

.required {
  color: red;
}


.form-image img {
  object-fit: contain;
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .form-image {
    margin-top: 20px;
  }
}

/* Service Page */
.bar-hero {
  position: relative;
  background: 
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80") no-repeat;
background-size: cover;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
 
  animation: fadeIn 1.2s ease-in-out;
}

.bar-hero::after{
  content: "";
  position: absolute;
  left: 0;
bottom: 0;
background:linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
height: 100%;
right: 0;
}




.bar-hero h1{
  position: relative;
  z-index: 2;
}




.anchor {
  text-decoration: none !important;
  color: var(--color-black);
}

.our-services-section {
  padding: 60px 0;
  background: var(--color-white);
}

.our-services-title p {
  color: var(--color-black);
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 500;
}

.our-services-title h1 {
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.our-services-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--color-light-gray);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  padding: 20px;
}

.our-services-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  align-items: center;
  border-radius: 15px;
  margin-bottom: 15px;
}

.our-services-card .card-body {
  border: rgb(224, 224, 224) solid 2px;
  border-radius: 20px;
  padding: 20px;
  flex-grow: 1;
}

.our-services-card hr {
  height: 2px;
  margin: 0 0 15px;
  background-color: gray;
  border: none;
}

.our-services-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.our-services-card p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.our-services-card a {
  font-weight: 500;
  text-decoration: none;
  color: #198754;
}

.our-services-card a:hover {
  text-decoration: underline;
}

.highlight-card {
  border: none;
}

.highlight-card h5,
.highlight-card p,
.highlight-card a {
  color: #000 !important;
}

/* promotion */

.promo-head p {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.promo-head h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  align-items: center;
}

.promo-title {
  /* font-size: 2rem; */
  /* font-weight: 800; */
  margin-bottom: 20px;
  text-align: center;
  align-items: center;
  color: #000;
}

/* .custom-card {
  position: relative;
  width: 270px;
  height: 380px;
  border-radius: 15px;
  text-align: center;
  align-items: center;
  overflow: hidden;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.custom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.custom-card:hover img {
  transform: scale(1.05);
}

.custom-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  justify-content: center;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  z-index: 2;
} */

.promo-section {
  padding: 50px 0;
}

.promo-services {
  padding: 0px;
}

.promo-text {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
  align-items: center;
  /* margin-bottom: 35px; */
}

.promo-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  /* background: var(--color-light-gray); */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  padding: 20px;
  /* display: flex; */
  /* flex-direction: column; */
}

.promo-card-body h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-style: italic;
  /* text-align: center; */
  align-items: center;
  justify-content: center;
  /* margin-bottom: 10px; */
}

.promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  align-items: center;
  border-radius: 15px;
  /* margin-bottom: 15px; */
}

.promo-card .promo-card-body {
  /* padding: 20px; */
  border: rgb(224, 224, 224) solid 2px;
  /* display: flex; */
  height: auto;
  border-radius: 20px;
  padding: 40px;
  flex-grow: 1;
}

.aboutus {
  padding: 50px 0;
}

.about-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.why-choose-section {
  padding: 40px 10px;
}

.why-choose-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
}

.why-choose-section p {
  color: var(--color-light-gray);
  font-size: medium;
}

.features {
  border-radius: 0;
  /* remove rounded container */
  overflow: visible;
  /* allow cards to be separate */
}

.feature-box {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  /* give each card its own round corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: 15px;
  /* spacing between cards */
  height: auto;
  /* let card size fit content */
}

/* 
.feature-box {
  background: #143d2b;
  color: #fff;
  padding: 30px;
  height: 100%;
} */

.feature-icon {
  width: 50px;
  height: 50px;
  background: #ffa726;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0f241d;
  margin-bottom: 15px;
}

.clientele-section {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  padding: 80px 0;
  overflow: hidden;
}

.client-title {
  text-align: center;
  margin-bottom: 60px;
}

.client-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 15px;
}

.client-title p {
  font-size: 1.1rem;
  color: var(--color-dark-gray);
  max-width: 600px;
  margin: 0 auto;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.logo-slide {
  display: flex;
  animation: slide 20s linear infinite;
  gap: 60px;
  align-items: center;
}

.logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-slide:hover {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .client-title h2 {
    font-size: 2rem;
  }

  .logo-item {
    width: 140px;
    height: 80px;
    padding: 15px;
  }

  .logo-slide {
    gap: 40px;
  }

  .clientele-section {
    padding: 30px 0;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 1.75rem;
  }

  .logo-item {
    width: 120px;
    height: 70px;
    padding: 12px;
  }

  .logo-slide {
    gap: 30px;
  }
}

/* Additional styling for better visual appeal */
.trust-badge {
  text-align: center;
  margin-top: 40px;
}

.trust-badge p {
  display: inline-block;
  background: var(--color-primary-dark);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* GALLERY */

.gallery-section {
  background: linear-gradient(135deg,
      var(--primary-orange),
      var(--secondary-orange));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.gallery-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-container .gallery-item {
  margin-bottom: 30px;
}

.gallery-container img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.gallery-filter {
  padding: 20px 0 20px;
  background: var(--light-gray);
}

.filter-btn {
  background: #fb5a00;
  border: 2px solid var(--primary-orange);
  color: var(--color-gray);
  padding: 10px 25px;
  margin: 5px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.active{
  color: #ff6600;
}

.filter-btn:hover,
.filter-btn.active {
  background: #fb5a00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-content {
  padding: 20px;
}

.gallery-content h5 {
  color: var(--dark-gray);
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-content p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.event-tag {
  background: linear-gradient(45deg,
      var(--primary-orange),
      var(--secondary-orange));
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.cta-section {
  color: rgb(0, 0, 0);
  padding: 30px 0;
  text-align: center;
}

.cta-btn {
  background: #fb5a00;
  color: var(--primary-orange);
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--color-danger);
}

@media (max-width: 768px) {
  .gallery-section h1 {
    font-size: 2.5rem;
  }

  .gallery-item img {
    height: 200px;
  }
}

/* CONTACT US PAGE */

/* 
.contact-section {
  padding: 60px 0;
} */

.contact-info {
  align-items: center;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--color-primary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info h4 {
  margin-bottom: 20px;
  color: var(--color-white);
}

.contact-info p {
  color: var(--color-white);
}

.map-section {
  padding: 20px 0;
  text-align: center;
}

.map-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

.form-control,
.btn {
  border-radius: 8px;
}

/* Hero Section */
.blog-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  color: white;
  text-align: center;
  /* height: 300px; */
  padding: 100px 20px;
}

.blog-hero p{
color: white;
}

.blog-page-card {
  border: none;
  transition: all 0.3s ease;
  height: -webkit-fill-available;
}

.blog-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff5722;
  color: white;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 50px;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 10px 0;
}

.sidebar {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.sidebar h5 {
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.sidebar ul li a:hover {
  color: #ff5722;
}

.blog-header img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-meta {
  font-size: 0.9rem;
  color: #6c757d;
}

.blog-meta span {
  margin-right: 15px;
}

.blog-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.related-blogs img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

.related-blogs .card {
  margin-bottom: 15px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background-color: #ff6b6b;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Small devices (phones <576px) */
@media (max-width: 575.98px) {
  .top-bar {
    display: none;
  }

  .hero {
    padding: 30px 15px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero h5 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .btn-main,
  .btn-outline-main {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .hero img {
    max-width: 100%;
  }

  /* About-section */

  .about-section {
    padding: 20px 15px;
    text-align: center;
  }

  .about-section h1 {
    font-size: 1.8rem;
    padding-top: 5px;
    padding-bottom: 0px;
  }

  .about-text {
    font-size: 0.9rem;
    text-align: justify;
  }

  .about-images img {
    max-width: 100%;
    margin: 0 auto 20px auto;
    display: block;
  }

  .about-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .brand-slider {
    height: 45px;
  }

  .brand-bar {
    padding: 8px;
  }

  .brand-bar div {
    font-weight: 500;
    font-size: large;
  }

  /* About-cards */

  .bar-hero {
    height: 250px;
    /* padding: 100px 20px; */
  }

  .info-card {
    padding: 20px;
    margin-bottom: 10px;
  }

  .info-card h4 {
    font-size: 1.1rem;
  }

  .info-card p {
    font-size: 0.8rem;
  }

  .info-card .icon-container {
    margin: 0 auto 1rem auto;
  }

  /* Stats  */

  #stats {
    /* padding-top: 30px;
    padding-bottom: 30px; */
    padding: 10px;
  }

  .stat-number {
    font-size: 2rem;
    /* smaller for mobile */
  }

  .stat-text {
    font-size: 0.85rem;
  }

  .stat-col {
    margin-bottom: 20px;
  }

  /* TESTIMONIALS */

  .testimonials {
    padding: 30px 0 20px;
  }

  .testimonials h2 {
    font-size: 1.6rem;
  }

  .testimonial2 {
    padding: 10px 0px 20px 0px;
  }

  .testimonial-left {
    margin-bottom: 20px;
    padding: 20px;
  }

  .testimonial-left h1 {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 20px;
    height: auto;
  }

  .testimonial-card p {
    font-size: 0.9rem;
    color: white;
  }

  .arrow-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  /* BLOGS */

  .blogs {
    padding: 30px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title {
    text-align: center;
  }

  .view-all-btn {
    display: none;
  }

  /* FAQ SECTION */

  .faq-section {
    padding: 30px 0;
  }

  .faq-title h2 {
    font-size: 1.8rem;
  }

  .accordion-button {
    font-size: 0.9rem;
    height: auto;
    padding: 12px;
    text-align: left;
  }

  .accordion-body {
    font-size: 0.9rem;
    padding: 15px;
  }

  .faq-side-card,
  .service-card {
    margin-top: 20px;
    text-align: center;
  }

  /* PROCESS SECTION */

  .process-section {
    padding: 15px;
    text-align: center;
  }

  .process-section h2 {
    font-size: 1.8rem;
  }

  .process-card {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
  }

  .step-number-bg {
    font-size: 3rem;
    top: 15px;
    right: 15px;
  }

  .step-footer {
    /* flex-direction: column; */
    margin: -20px;
    text-align: center;
    padding: 12px;
  }

  /* SERVICES */

  .services {
    padding: 30px 0;
  }

  .services h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .services-title {
    margin-bottom: 20px;
  }

  .services-title p {
    margin-bottom: 5px;
  }

  .services .services-card {
    height: auto;
    /* allow auto height */
    padding: 12px;
    margin-bottom: 20px;
    /* spacing between cards */
  }

  .services .services-card img {
    height: 200px;
    /* smaller image */
  }

  .services .services-card h5 {
    font-size: 1rem;
  }

  .services .service-desc {
    font-size: 0.8rem;
  }

  .services .service-btn {
    width: 100%;
    /* button full width */
    padding: 10px;
    font-size: 0.85rem;
    display: block;
    margin: 0 auto;
  }

  /* Stack service cards in one column */
  .services .row>div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* CONTACT US */

  .contact-section {
    padding: 20px 0;
  }

  .contact-title p {
    font-size: 1rem;
  }

  .contact-title h2 {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  /* .form-box {
    padding: 12px;
  }

  .form-control,
  .form-select {
    font-size: 0.9rem;
    padding: 10px;
  }

  textarea {
    height: 120px;
  } */

  .send-btn {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    font-size: 1rem;
  }

  .form-image {
    display: none;
  }

  /* FOOTER */

  .footer {
    padding-top: 20px;
    text-align: center;
  }

  .footer h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    /* text-align: center;
    justify-content: ;
    align-items: center; */
  }

  .footer p {
    font-size: 0.9rem;
  }

  .footer .contact-btn {
    margin-top: 10px;
    width: 100%;
    border-radius: 20px;
    padding: 10px;
    font-size: 1rem;
  }

  .footer .social-icons {
    margin-top: 15px;
  }

  .footer .social-icons a {
    width: 36px;
    height: 36px;
    margin: 0 5px;
    font-size: 16px;
  }

  /* 🔹 Navigation links in a row */
  .footer .col-md-2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer .col-md-2 h5 {
    margin-bottom: 10px;
  }

  .footer .col-md-2 p {
    display: inline-block;
    margin: 5px 10px;
  }

  .footer .col-md-2 p a {
    font-size: 0.9rem;
  }

  /* 🔹 Contact info in a row */
  .footer .col-md-3:nth-child(3) {
    /* target Contact column */
    text-align: center;
    margin-bottom: 20px;
  }

  .footer .col-md-3:nth-child(3) h5 {
    margin-bottom: 10px;
  }

  .footer .col-md-3:nth-child(3) p {
    display: inline-block;
    margin: 5px 12px;
    font-size: 0.9rem;
  }

  /* keep address from breaking badly */
  .footer .col-md-3:nth-child(3) br {
    display: none;
  }

  .footer .subscribe-input {
    flex-direction: column;
    border-radius: 8px;
  }

  .footer .subscribe-input input {
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid #ddd;
  }

  .footer .subscribe-input button {
    width: 100%;
    padding: 12px;
    border-radius: 0;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 0px;
    width: 100% !important;
  }

  .footer-bottom .container {
    flex-direction: column;
    /* gap: 10px; */
  }

  /* ABOUT PAGE */

  .why-choose-section {
    padding: 30px 10px;
  }

  .why-choose-section h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .trust-badge {
    text-align: center;
    margin-top: 25px;
  }

  .trust-badge p {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .client-title {
    text-align: center;
    margin-bottom: 25px;
    /* padding: 0 10px; */
  }

  .client-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
  }

  /* BLOG PAGE */

  .blog-hero {
    height: 250px;
    padding: 80px 20px;
  }

  /* SERVICES PAGE */

  .promo-section {
    padding: 40px 20px;
  }

  .promo-head h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    align-items: center;
  }

  .promo-text {
    text-align: justify;
  }

  .promo-text p {
    text-align: justify;
  }

  .promo-services .row {
    flex-direction: column;
    text-align: center;
  }

  .promo-services .col-4,
  .promo-services .col-8 {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .promo-card-body {
    padding: 20px !important;
    text-align: justify;
  }

  .promo-card-body h5 {
    font-size: 1.3rem;
    text-align: start;
  }

  .promo-card img {
    height: auto;
    max-height: 220px;
  }
}

/* Medium devices (tablets ≥576px and <992px) */
@media (min-width: 576px) and (max-width: 991.98px) {
  /* HERO SECTION */

  .hero {
    padding: 40px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h5 {
    font-size: 1.1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  /* ABOUT */

  .about-section {
    padding: 30px 20px;
    text-align: center;
  }

  .about-section h1 {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
  }

  .about-images img {
    max-width: 100%;
    margin: 0 auto 25px auto;
    display: block;
  }

  .info-card {
    padding: 1.5rem;
    margin-bottom: 10px;
  }

  .info-card h4 {
    font-size: 1.25rem;
  }

  .info-card p {
    font-size: 0.85rem;
    color: white;
  }

  .info-card .icon-container {
    margin: 0 auto 1rem auto;
  }

  /* STATISTICS */

  #stats {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-text {
    font-size: 0.9rem;
  }

  .stat-col {
    margin-bottom: 25px;
  }

  /* TESTIMONIALS */

  .testimonials {
    padding: 40px 0 30px;
  }

  .testimonial-left {
    margin-bottom: 25px;
    padding: 25px;
  }

  .testimonial-left h1 {
    font-size: 2.5rem;
  }

  .testimonial-card {
    padding: 30px;
    height: auto;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .arrow-btn {
    width: 36px;
    height: 36px;
  }

  /* BLOGS */

  .blogs {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.8rem;
    text-align: center;
    /*margin-bottom: 20px;*/
  }

  .view-all-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
  }

  .blog-card {
    padding: 12px;
    height: 480px;
    margin-bottom: 20px;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-title {
    font-size: 1rem;
  }

  .blog-desc {
    font-size: 0.9rem;
  }

  /* FAQ SECTION */

  .faq-section {
    padding: 40px 0;
  }

  /* PROCESS SECTION */

  .process-section {
    padding: 50px 20px;
  }

  .process-section h2 {
    font-size: 2rem;
  }

  .process-card {
    padding: 22px;
    margin-bottom: 20px;
  }

  .step-number-bg {
    font-size: 3.5rem;
    top: 20px;
    right: 18px;
  }

  .step-footer {
    padding: 10px 16px;
    margin: -22px;
  }

  /* SERVICES */

  .services h2 {
    font-size: 2rem;
    line-height: 1.4;
  }

  .services .services-card {
    height: auto;
    /* let it expand */
    padding: 15px;
    margin-bottom: 25px;
  }

  .services .services-card img {
    height: 200px;
    /* balanced image size */
  }

  .services .services-card h5 {
    font-size: 1.1rem;
  }

  .services .service-desc {
    font-size: 0.9rem;
  }

  .services .service-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Show 2 cards per row instead of 3 */
  .services .row>div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* CONTACT US */

  .contact-section {
    padding: 30px 0px;
  }

  .contact-title p {
    font-size: 1.2rem;
  }

  .contact-title h2 {
    font-size: 2rem;
    line-height: 1.4;
  }

  .form-box {
    padding: 10px;
  }

  .form-control,
  .form-select {
    font-size: 1rem;
    padding: 12px;
  }

  textarea {
    height: 140px;
  }

  .send-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
  }

  .form-image {
    /* margin-top: 30px; */
    text-align: center;
  }

  .form-image img {
    width: 85%;
    /* height: 350px; */
    border-radius: 12px;
    object-fit: cover;
  }
}


/* mall activation */
/* Content Sections */
.content-section {
  padding: 40px 0;
}

.section-title {
  /*font-size: 2.5rem;*/
  font-weight: 700;
  color: var(--color-primary);
  /*margin-bottom: 50px;*/
  position: relative;
  padding-bottom: 20px;
}

/* .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
} */

/* Service Cards */
.service-card {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  transition: left 0.3s ease;
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(251, 90, 0, 0.15);
  transform: translateY(-5px);
}

.service-card:hover::before {
  left: 0;
}

.service-card h3 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

/* Image Section */
.image-section {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-section:hover img {
  transform: scale(1.05);
}

/* 🌟 Modern Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  /*margin-top: 60px;*/
  padding: 10px;
}

.benefit-item {
  background: #fff;
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Add subtle gradient overlay on hover */
.benefit-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), #ff7043);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  border-radius: 18px;
}

.benefit-item:hover::before {
  opacity: 1;
}

/* Lift card on hover */
.benefit-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: #fff;
}

/* Icon styles */
.benefit-item i {
  font-size: 2.8rem;
  margin-bottom: 18px;
  color: var(--color-primary);
  transition: all 0.4s ease;
  z-index: 1;
  position: relative;
}

.benefit-item:hover i {
  color: #fff;
  transform: scale(1.15);
}

/* Headings */
.benefit-item h4 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #222;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}

.benefit-item:hover h4 {
  color: #fff;
}

/* Paragraphs */
.benefit-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}

.benefit-item:hover p {
  color: #f8f8f8;
}

/* Optional: subtle fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-item {
  animation: fadeInUp 0.6s ease both;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg,
      var(--color-primary) 0%,
      var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 60px 50px;
  border-radius: 12px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-btn {
  background: var(--color-white);
  color: var(--color-primary);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1200px;
}

.mySwiper {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mySwiper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Added execution section styling */
.execution-box {
  background: var(--color-light-gray);
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.execution-box h4 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 20px;
}

.execution-box ul {
  list-style: none;
  padding: 0;
}

.execution-box li {
  color: var(--color-dark-gray);
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.execution-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ==== Improved Grid ==== */
.improved-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-content: center;
  align-items: stretch;
  padding: 0 10px;
}

/* ==== Card Styling ==== */
.activate-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.activate-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* ==== Icons ==== */
.activate-item i {
  font-size: 3rem;
  margin-bottom: 18px;
  color: var(--color-primary);
  transition: all 0.4s ease;
}

.activate-item:hover i {
  color: #fff;
  transform: scale(1.15) rotate(5deg);
}

/* ==== Headings & Text ==== */
.activate-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.activate-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.activate-item:hover p,
.activate-item:hover h4 {
  color: #fff;
}

/* ==== Subtle Animation ==== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.6s ease both;
}

/* ===== Roadshow Section ===== */
.roadshow-benefits {
  background: linear-gradient(180deg, #fff, #f9fafc);
  padding: 40px 0;
}


/* ===== Grid Layout ===== */
.roadshow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

/* ===== Card Base ===== */
.roadshow-card {
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Distinct Styles for Each Card */
.roadshow-card.why-work {
  background: linear-gradient(135deg, #fff, #f1f5ff);
  border-top: 5px solid var(--color-primary);
}

.roadshow-card.capabilities {
  background: linear-gradient(135deg, #fff, #fff7f0);
  border-top: 5px solid #ff7043;
}

/* Hover Effects */
.roadshow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* ===== Card Header ===== */
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.card-header i {
  font-size: 2rem;
  color: var(--color-primary);
  transition: all 0.4s ease;
}

.roadshow-card.capabilities .card-header i {
  color: #ff7043;
}

.roadshow-card:hover .card-header i {
  transform: scale(1.2);
}

/* ===== List Styling ===== */
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card-list li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.card-list li i {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-top: 3px;
  transition: all 0.3s ease;
}

.roadshow-card.capabilities .card-list li i {
  color: #ff7043;
}

.roadshow-card:hover li i {
  transform: rotate(8deg) scale(1.15);
}

/* ===== Animation ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: fadeSlideUp 0.6s ease both;
}


/* === Badge Item === */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 123, 255, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.15);
  color: #0a0a0a;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin: 10px;
}

.location-badge i {
  color: var(--color-primary, #007bff);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/* === Hover Effect === */
.location-badge:hover {
  background: var(--color-primary, #007bff);
  color: #fff;
  border-color: var(--color-primary, #007bff);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.25);
}

.location-badge:hover i {
  color: #fff;
  transform: scale(1.2);
}

/* === Animation === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card h5 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}

/* === Promo Card Grid === */
.promo-services {
  padding: 80px 0;
  background: #fff;
}

.promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* === Card Styling === */
.promo-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.promo-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.promo-card:hover img {
  transform: scale(1.05);
}

.promo-content {
  padding: 20px 22px 30px;
}

.promo-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary, #007bff);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;

}

/* === Hover Effect === */
.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

/* === Responsive === */
@media (max-width: 768px) {
  .promo-content h5 {
    font-size: 1.1rem;
  }

  .promo-content p {
    font-size: 0.9rem;
  }
}

.contact-form-section .form-card {
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.contact-form-section .form-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-label {
  font-weight: 600;
  color: #333;
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 10px 14px;
}

.btn-main {
  background-color: #fc5b00;
  color: #fff;
  padding: 10px 25px;
  border: none;
  transition: 0.3s;
}

.btn-main:hover {
  background-color: #e45100;
}





.job-profile {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url("../images/PHOTO-2023-08-30-11-35-17.jpg") center/cover no-repeat;
  color: #fff;
  padding: 40px 0;
}

.contact-title h2 {
  font-weight: 700;
  color: #fff;
}

.job-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
}

.job-form {
  /* background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px); */
  /* border-radius: 12px;

  box-shadow: 0 4px 25px rgba(0,0,0,0.3); */

  padding-left: 30px;
    border-left: 2px  solid var(--color-primary-dark);

}

.job-form label {
  display: block;

      font-weight: 500;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #333;

}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.job-form input[type="file"] {
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
}

.send-btn {
  background: #ff6600;
  border: none;
  padding: 12px 30px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.send-btn:hover {
  background: #ff8533;
}

.job-info h2 {
  margin-bottom: 15px;
  font-weight: 700;
}

.job-info a {
  color: #ffcc66;
  text-decoration: none;
}
.job-info a:hover {
  text-decoration: underline;
}

.error {
  color: #ffaaaa;
  font-size: 13px;
  display: none;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .job-wrapper {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}




/* Swiper Pagination (dots) */
.swiper-pagination {
  position: absolute;
  bottom: 10px;       /* Adjust vertical position of pagination */
  left: 50%;
  transform: translateX(-50%); /* Center the pagination dots */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;         /* Ensure it's on top of the content */
}

.swiper-pagination-bullet {
  width: 12px;         /* Size of the dots */
  height: 12px;
  background-color: rgba(0, 0, 0, 0.5); /* Default color of the dots */
  border-radius: 50%;  /* Circular shape for the dots */
  margin: 0 5px;       /* Space between dots */
  transition: background-color 0.3s ease; /* Smooth transition when active */
}

/* Active state for pagination bullet (active dot) */
.swiper-pagination-bullet-active {
  background-color: var(--color-primary-dark);  /* Active dot color (blue, change as needed) */
}

/* When hovering over pagination dots */
.swiper-pagination-bullet:hover {
  background-color:var(--color-primary);  /* Darker color on hover */
}

/* Swiper Navigation Arrows (Next & Prev) */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background-color: rgba(291, 90, 0); /* Semi-transparent background */
  border: none;
  padding: 10px;
  color: white;
  font-size: 18px; /* Size of arrows */
  border-radius: 50%; /* Round the buttons */
  transition: background-color 0.3s ease; /* Smooth background color transition */
  z-index: 15;       /* Keep buttons above the slides */
}

.swiper-button-next {
  right: 10px;       /* Position the next button to the right */
}

.swiper-button-prev {
  left: 10px;        /* Position the prev button to the left */
}

/* Hover effect for the navigation arrows */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(290, 90, 0, 0.5); /* Darker on hover */
}


  .swiper-button-next, .swiper-button-prev {
    height: 40px !important;
    width: 40px !important;
  
  }

/* Optional: Add a custom style for smaller screens */
@media (max-width: 768px) {
  .swiper-pagination {
    bottom: 15px; /* Adjust pagination position for mobile */
  }

}


.swiper-container{
  position: relative;
}

.swiper-button-next:after, .swiper-button-prev:after{
font-size: 21px !important;
}

.hero .swiper-slide{
  overflow: hidden;
  border-radius: 2rem;}




  .cta-section p{
    color: white;
  }


  .bar-hero p{
    color: white !important;

  }

  /* modal */
  /* Gallery Image Styling */
.gallery-image {
  width: 100%;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-image:hover {
  opacity: 0.7;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  padding-top: 60px;
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

#caption {
  text-align: center;
  color: #fff;
  font-size: 1.5em;
  padding: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}




.form-box, .main-section {
  border-radius: 20px;
  padding: 20px;
  background-color: white;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}




.whatsapp {
    background: #47a44c;
    color: white;
    position: fixed;
    bottom: 200px;
    right: -176px;
    z-index: 999;
    padding: 7px 20px;
    border-radius: 4px 0 0 4px;
    font-size: 18px;
    transition: all 300ms linear;
    font-weight: 500;
}

.whatsapp:hover {
    color: white;
    right: 0;
}