@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Bungee+Spice&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  background: #f2f2f2;
}

/* navbar */
.marquee {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  background: #0a0707;
  color: #fff;
  padding: 10px;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  font-size: 15px;
  animation: marquee 45s linear infinite;
}

/* Pause on hover */
.marquee span:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Responsive speed adjustment */
@media (max-width: 768px) {
  .marquee {
    display: none;
  }
}

/* ===== HEADER ===== */
.top-header {
  background: #fff;
  color: #000;
  padding: 3px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #ddd;
}

.top-header .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  /* vertically center */
  gap: 10px;
}

.brand img {
  height: 90px;
  width: 90px;
}

.company-text {
  display: flex;
  flex-direction: column;
  /* force 2 lines */
  text-align: left;
  /* left align */
  line-height: 1.1;
}

.company-text .line1 {
  color: #58a56e;
  font-size: 24px;
  font-weight: bold;
}

.company-text .line2 {
  color: #3f4999;
  font-size: 18px;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.nav a.active {
  color: #414c9c;
  font-weight: bold;
  border-bottom: 2px solid #59a770;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.nav a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  margin-right: 15px;
  font-size: 15px;
  opacity: 0.9;
  transition: color 0.3s;
}

.nav-item.has-dropdown>a {
  cursor: pointer;
}

.nav a:hover,
.has-dropdown.active>a {
  color: #414c9c;
}

.nav-item {
  position: relative;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: #f5f5f5;
  display: none;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.dropdown.open {
  display: block;
}

.dropdown-category {
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-category a {
  padding: 6px 10px;
  font-size: 12px;
  color: #000;
  text-decoration: none;
}

.dropdown-category a:hover {
  background: #ddd;
}

/* Desktop hover show dropdown */
.has-dropdown:hover .dropdown {
  display: flex;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 89px;
    /* right: 0; */
    background: #fff;
    flex-direction: column;
    width: 92%;
    display: none;
    border-top: 1px solid #ddd;
  }

  .top-header {
    background: #fff;
    color: #000;
    padding: 10px 1px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #ddd;
  }

  .nav.active {
    display: flex;
  }

  .nav a,
  .nav-item a {
    padding: 12px;
    border-top: 1px solid #ddd;
  }

  .menu-toggle {
    display: block;
    color: #000;
  }

  .dropdown {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    border-radius: 0;
    display: none;
  }

  .has-dropdown.active .dropdown {
    display: flex;
    flex-direction: column;
  }

  .has-dropdown .dropdown {
    display: none;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 16px;
  }

  .brand img {
    height: 80px;
  }
}

/* Bootstrap carousel fixes */
/* Slider Size Fix */
.carousel-inner {
  width: 100%;
  max-height: 700px;
}

.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Custom Indicators (bars style like your image) */
.custom-indicators {
  bottom: 10px;
}

.custom-indicators button {
  width: 45px !important;
  height: 7px !important;
  border-radius: 2px;
  background-color: #ddd;
  border: none;
  margin: 0 5px;
  transition: 0.3s;
}

.custom-indicators .active {
  background-color: #4FA568;
  /* gold jaisa color */
  width: 40px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .carousel-item img {
    height: 180px;
  }
}

/*  */
/* counter */
.achievements-section {
  background: #f8f9fa;
}

.section-label {
  color: #59a770;
  font-weight: 600;
  padding-left: 10px;
  border-left: 3px solid #59a770;
  margin-bottom: 10px;
}

.section-title {
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.stat-box {
  background: #ffffff;
  text-align: center;
  padding: 35px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.stat-box.dark {
  background: #424b9b;
  color: #fff;
}

.stat-box .icon {
  margin-bottom: 10px;
  color: #59a770;
}

.stat-box.dark .icon {
  color: #fff;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  color: #59a770;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* about pages */
.ribbon-title {
  position: relative;
  display: inline-block;
  background: #64a76f;
  color: #fff;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Left Tail */
.ribbon-title:before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 22px solid #64a76f;
  border-bottom: 22px solid #454f9d;
  border-right: 22px solid transparent;
}

/* Right Tail */
.ribbon-title:after {
  content: "";
  position: absolute;
  right: -22px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 22px solid #64a76f;
  border-bottom: 22px solid #454f9d;
  border-left: 22px solid transparent;
}

/*********** RESPONSIVE ************/
@media (max-width: 768px) {
  .ribbon-title {
    font-size: 16px;
    padding: 10px 22px;
  }

  .ribbon-title:before,
  .ribbon-title:after {
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 18px;
    border-right-width: 18px;
  }

  .ribbon-title:before {
    left: -18px;
  }

  .ribbon-title:after {
    right: -18px;
  }
}

@media (max-width: 480px) {
  .ribbon-title {
    font-size: 14px;
    padding: 8px 18px;
  }

  .ribbon-title:before,
  .ribbon-title:after {
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 14px;
    border-right-width: 14px;
  }

  .ribbon-title:before {
    left: -14px;
  }

  .ribbon-title:after {
    right: -14px;
  }
}

.about-sub {
  font-size: 22px;
  color: #454f9d;
  font-weight: 600;
}

.about-text {
  font-size: 16px;
  color: #111;
  line-height: 1.8;
}

/* Images */
.about-img {
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
  object-fit: cover;
}

/* List */
.list-box ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.list-box li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-weight: 600;
}

.list-box li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #454f9d;
  position: absolute;
  left: 0;
  top: 6px;
}

/* Button */
.learn-btn {
  padding: 10px 20px;
  border: 2px solid #454f9d;
  color: #454f9d;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  margin: 8px 0;
}

.learn-btn:hover {
  background: #454f9d;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .about-title {
    font-size: 32px;
  }

  .about-sub {
    font-size: 19px;
  }

  .learn-btn {
    padding: 10px 26px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 28px;
  }
}

/*company profile */
.av-about-img {
  position: relative;
}

.av-about-img::before,
.av-about-img::after {
  position: absolute;
  content: "";
  width: 33%;
  height: 90px;
  background: #4d56a0;
}

.av-about-img::before {
  top: 0px;
  left: 0px;
}

.av-about-img::after {
  right: 0px;
  bottom: 0px;
}

/* gallery page */
.gallery-wrapper {
  padding: 50px 15px;
  background: #f5f5f5;
}

.gallery-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-box {
  width: 100%;
  height: 350px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.gallery-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.gallery-box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-box {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-box {
    height: 300px;
  }
}

/* ===================== GLOBAL COLORS ==================== */
:root {
  --primary: #7ab48b;
  --secondary: #58a76f;
  --text-dark: #222;
  --bg-light: #f7fdf9;
}

/* ===================== TOPBAR ==================== */
.contact-top {
  background: var(--primary);
  padding: 12px 0;
}

.contact-top h1 {
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.contact-info i {
  background: #fff;
  color: var(--primary);
  padding: 10px;
  border-radius: 8px;
}

/* ===================== CONTACT SECTION ==================== */
.contact-section {
  padding: 60px 0;
}

.contact-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary);
}

.contact-details p {
  margin: 5px 0;
  font-size: 15px;
}

.contact-details i {
  color: var(--secondary);
  margin-right: 8px;
}

.map-bx iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  margin-top: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

/* ===================== FORM BOX ==================== */
.form-box {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.07);
}

.form-box h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1.5px solid #ccc;
  font-size: 15px;
  transition: 0.3s;
}

.form-box input:focus,
.form-box textarea:focus,
.form-box select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
  outline: none;
}

.form-box button {
  width: 100%;
  padding: 14px;
  background: var(--secondary);
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background: var(--primary);
  letter-spacing: 1px;
}

/* ===================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .contact-left {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .contact-info {
    justify-content: center;
    margin-bottom: 5px;
  }

  .form-box {
    padding: 25px;
  }

  .contact-left h2 {
    font-size: 26px;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 30px 20px;
}

/* Image Border Effect */
.service-item .service-img {
  position: relative;
  display: inline-block;
}

.service-item {
  padding: 15px;
}

.service-item .service-img::before {
  content: "";
  position: absolute;
  width: calc(100% - 10rem);
  height: calc(100% - 10rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2.5rem solid rgba(0, 0, 0, 0.5);
  border-radius: 300px;
  z-index: 1;
}

/* Left & Right Box Shape */
.service-item.service-item-left {
  border-radius: 500px 0 0 500px;
  background-color: #fff;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px;
}

.service-item.service-item-right {
  border-radius: 0 500px 500px 0;
  background-color: #fff;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .service-img {
    padding: 25px !important;
  }
}

@media (max-width: 768px) {
  .service-item {
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .service-item.service-item-left,
  .service-item.service-item-right {
    border-radius: 20px;
    /* Normal box shape for mobile */
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
  }

  .service-img::before {
    width: calc(100% - 5rem);
    height: calc(100% - 5rem);
    border-width: 1.8rem;
  }

  .service-text {
    padding: 10px 0 !important;
  }

  .row.align-items-center {
    flex-direction: column !important;
    text-align: center;
  }

  .service-item-right .text-md-end,
  .service-item-left .text-md-end {
    text-align: center !important;
  }
}

/* Extra Small Phones */
@media (max-width: 480px) {
  .service-img::before {
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    border-width: 1.3rem;
  }

  .service-item {
    padding: 15px;
  }
}

/* ================================
   INDUSTRIES WE SERVE - SECTION
   ================================ */
.industries-we-serve {
  position: relative;
  overflow: hidden;
}

.gray-bg-circle {
  width: 480px;
  height: 480px;
  background: #e8e8e8;
  border-radius: 50%;
  position: absolute;
  left: 160px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* Main gradient circle (Title Circle) */
.main-left-circle {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ae7dff, #4b35ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 1px;
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}

.features-list {
  margin-left: 480px;
  position: relative;
  z-index: 5;
}

.feature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 32px 0;
}

.icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}

.purple {
  background: linear-gradient(135deg, #9d5aff, #643dff);
}

.blue {
  background: linear-gradient(135deg, #4e7bff, #325bff);
}

.teal {
  background: linear-gradient(135deg, #2dc8b4, #069b8e);
}

.gray {
  background: linear-gradient(135deg, #9f9f9f, #7c7c7c);
}

.dark {
  background: linear-gradient(135deg, #5a5a5a, #3c3c3c);
}

.text-block h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.text-block p {
  max-width: 500px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .features-list {
    margin-left: 440px;
  }
}

@media (max-width: 992px) {
  .main-left-circle {
    position: static;
    margin: auto;
    transform: none;
  }

  .gray-bg-circle {
    display: none;
  }

  .industries-we-serve {
    text-align: center;
  }

  .features-list {
    margin-left: 0;
    margin-top: 50px;
  }

  .feature {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .main-left-circle {
    width: 220px;
    height: 220px;
    font-size: 18px;
  }

  .icon-circle {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .gray-bg-circle {
    width: 350px;
    height: 350px;
  }
}

/* why choose us */
.why-choose-us {
  text-align: center;
}

/* Title */
.why-choose-us-title {
  font-size: 36px;
  font-weight: 700;
  color: #7379af;
  margin-bottom: 8px;
}

/* Subtitle */
.why-choose-us-subtitle {
  font-size: 16px;
  color: #080707;
  max-width: 850px;
  margin: 0 auto 40px;
}

/* 3 Column Layout */
.why-choose-us-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  width: 90%;
  margin: auto;
  align-items: center;
}

/* Items styling */
.why-choose-us-left,
.why-choose-us-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-choose-us-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}

.why-choose-us-icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #7379af;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose-us-icon-circle i {
  color: #fff;
  font-size: 28px;
}

.why-choose-us-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-choose-us-description {
  font-size: 14px;
  color: #0a0808;
}

/* Center Image */
.why-choose-us-image-wrapper {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  border: 6px solid #7379af;
}

.why-choose-us-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .why-choose-us-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-choose-us-left,
  .why-choose-us-right {
    align-items: center;
  }

  .why-choose-us-item {
    justify-content: center;
  }

  .why-choose-us-image-wrapper {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 500px) {
  .why-choose-us-title {
    font-size: 28px;
  }

  .why-choose-us-subtitle {
    font-size: 14px;
  }

  .why-choose-us-icon-circle {
    width: 55px;
    height: 55px;
  }

  .why-choose-us-icon-circle i {
    font-size: 22px;
  }

  .why-choose-us-heading {
    font-size: 18px;
  }

  .why-choose-us-description {
    font-size: 13px;
  }

  .why-choose-us-image-wrapper {
    width: 230px;
    height: 230px;
  }
}

/* mission and vision */
.mv_section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mv_card {
  border: 2px solid #ddd;
  border-radius: 0 0 15px 15px;
  padding: 25px 25px 35px;
  position: relative;
  background: #fff;
}

/* Key shape */
.mv_card::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
  border-radius: 50px 50px 0 0;
}

.mv_icon {
  position: absolute;
  top: -55px;
  left: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid;
  font-size: 28px;
}

.mv_title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

/* colors */
.vision_box {
  border-color: #0097a7;
}

.vision_box::before {
  background: #0097a7;
}

.vision_box .mv_icon {
  border-color: #0097a7;
  color: #0097a7;
}

.mission_box {
  border-color: #58a66f;
}

.mission_box::before {
  background: #58a66f;
}

.mission_box .mv_icon {
  border-color: #58a66f;
  color: #58a66f;
}

.values_box {
  border-color: #454f9d;
}

.values_box::before {
  background: #454f9d;
}

.values_box .mv_icon {
  border-color: #454f9d;
  color: #454f9d;
}

@media (max-width: 500px) {
  .mv_icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .mission_box {
    border-color: #58a66f;
    margin-top: 47px;
  }

  .values_box {
    border-color: #454f9d;
    margin-top: 47px;
  }

  .mv_title {
    font-size: 20px;
  }
}

.nav a.active {
  color: #454f9d;
  border-bottom: 2px solid #58a56e;
}

/* ---------------- Banner Slider ---------------- */
.banner-slider {
  width: 100%;
  height: 350px;
  /* Default desktop */
  overflow: hidden;
  position: relative;
}

.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s;
}

.banner-slide.show-slide {
  opacity: 1;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 12px 28px;
  border-radius: 10px;
  text-align: center;
}

/* ------------ Responsive Banner ------------ */
@media (max-width: 1024px) {
  .banner-slider {
    height: 280px;
  }

  .banner-text {
    font-size: 28px;
    padding: 10px 22px;
  }
}

@media (max-width: 768px) {
  .banner-slider {
    height: 230px;
  }

  .banner-text {
    font-size: 22px;
    padding: 8px 18px;
  }
}

@media (max-width: 576px) {
  .banner-slider {
    height: 180px;
  }

  .banner-text {
    width: 80%;
    font-size: 18px;
    padding: 6px 14px;
  }
}

@media (max-width: 400px) {
  .banner-slider {
    height: 150px;
  }

  .banner-text {
    font-size: 16px;
    padding: 5px 12px;
    width: 85%;
  }
}

/* ---------------- Breadcrumb ---------------- */
.breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  padding: 10px 20px;
  background: #fff;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.breadcrumb-nav a {
  text-decoration: none;
  color: #414c9c;
  font-weight: 600;
}

.breadcrumb-nav a:hover {
  color: #222;
}

.breadcrumb-nav span {
  color: #999;
  font-size: 14px;
  font-weight: bold;
}

/* ------------ Responsive Breadcrumb ------------ */
@media (max-width: 768px) {
  .breadcrumb-nav {
    font-size: 15px;
    padding: 8px 15px;
    gap: 6px;
  }

  .breadcrumb-nav span {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-nav {
    font-size: 14px;
    padding: 6px 10px;
    flex-wrap: wrap;
    text-align: center;
  }

  .breadcrumb-nav span {
    font-size: 12px;
  }
}

/* products pages */
.main-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 25px 15px;
  display: grid;
  gap: 25px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}


/* product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.product-box {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px;
  transition: .3s;
}

.product-box:hover {
  box-shadow: 0 5px 12px rgba(0, 0, 0, .15);
  transform: translateY(-4px);
}

.product-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* responsive */
@media(max-width: 991px) {
  .main-wrapper {
    grid-template-columns: 220px 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 768px) {
  .main-wrapper {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}


/* -----------------------------------------------------
   ADDED: FAB CIRCULAR TICK ICON FOR LIST ITEMS
------------------------------------------------------ */
.content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.content ul li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
}

/* FAB tick circle */
.content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #5aa770, #5962a5);
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* -----------------------------------------------------
   ADDED: HEADINGS (H2–H6) SAME FONT + SAME COLOR
------------------------------------------------------ */
.btn-quote {
  background-color: #5aa770;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-quote:hover {
  background-color: #5962a5;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-quote:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-quote:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(133, 230, 131, 0.4);
}

.content :is(h2, h3, h4, h5, h6) {
  font-family: inherit;
  font-weight: 600;
  margin: 25px 0 12px;
  background: linear-gradient(90deg, #3e7550, #343a73);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* -----------------------------------------------------
   RESPONSIVE FOR FAB TICK + TEXT
------------------------------------------------------ */

@media(max-width: 768px) {
  .content ul li {
    padding-left: 40px;
    font-size: 15px;
  }

  .content ul li::before {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
}

@media(max-width: 480px) {
  .content ul li {
    padding-left: 36px;
    font-size: 14px;
  }

  .content ul li::before {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}


/* faq */
.faq-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-illustration {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.faq-illustration:hover {
  transform: scale(1.05);
  box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
  .faq-illustration {
    max-width: 90%;
    margin: auto;
  }
}

.faq-list .faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: #0b0808;
  margin-top: 10px;
  line-height: 1.6;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-wrapper {
    text-align: center;
  }

  .faq-question {
    text-align: center;
  }

  .faq-question::after {
    right: 10px;
  }
}

/* sitemap page */

.tree {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tree ul {
  list-style: none;
  padding-left: 25px;
  position: relative;
  margin: 0;
}

.tree ul::before {
  content: "";
  border-left: 2px solid #ccc;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
}

.tree li {
  margin: 12px 0;
  padding-left: 20px;
  position: relative;
}

.tree li::before {
  content: "";
  border-top: 2px solid #ccc;
  position: absolute;
  top: 16px;
  left: 0;
  width: 20px;
}

.tree a,
.tree span {
  text-decoration: none;
  color: #454f9d;
  font-weight: 500;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tree a:hover {
  background: #7379af;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.tree span {
  color: #444;
  font-weight: 600;
}

@media (max-width: 600px) {
  .tree {
    padding: 15px;
  }

  .tree a,
  .tree span {
    font-size: 14px;
    padding: 5px 8px;
  }
}

/* privacy policy terms and conditions */

:root {
  --bg: #e9eaef;
  --card: #e6e7ea;
  --text: #090a0c;
  --muted: #090a0c;
  --accent: #7379af;
  --accent-2: #3e7550;
  --border: #1f2430;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.privacy-policy-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px;
}

.policy {
  background: linear-gradient(180deg, rgba(141, 168, 255, 0.06), rgba(93, 209, 182, 0.06)), var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.policy-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.policy-inner {
  padding: 28px;
}

.title-main {
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: #080707;
}

.subtitle {
  color: var(--muted);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  margin: 0 0 24px;
}

/* Unified heading style for h2–h6 via class */
.heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: #080809;
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: center;
}

.heading::before {
  content: "";
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.text {
  margin: 8px 0 14px;
  color: var(--text);
}

.list {
  list-style: none;
  margin: 8px 0 20px;
  padding-left: 0;
}

.list-item {
  margin: 8px 0;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.list-item::before {
  content: "";
  margin-top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 3px rgba(93, 209, 182, 0.18);
}

.block {
  background: rgba(246, 240, 240, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin: 14px 0 18px;
}

.contact-card {
  display: grid;
  gap: 8px;
  background: rgba(233, 229, 229, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.label {
  color: var(--muted);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

.contact-itema a {
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px dashed rgba(138, 168, 255, 0.5);
}

.contact-itema a:hover {
  color: #bcd0ff;
  border-bottom-color: rgba(135, 161, 236, 0.9);
}

@media (max-width: 640px) {
  .policy-inner {
    padding: 20px;
  }

  .contact-item {
    grid-template-columns: 1fr;
  }

  .heading {
    margin-top: 22px;
  }
}

nav ul li a.active {
  color: #fff;
  /* text color */
  background: #007bff;
  /* active background */
  padding: 8px 12px;
  border-radius: 4px;
}


/* footer */
.footer-wrapper {
  position: relative;
  padding: 150px 0px 118px;
  background: linear-gradient(rgba(5, 19, 17, 0.95), rgba(5, 19, 17, 0.95)),
    url(../images/bg-footer.jpg) center/cover no-repeat;
  color: #fff;
}

.footer-bg-circle {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #5aa770, #5962a5);
  border-radius: 50%;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.footer-box {
  width: 85%;
  max-width: 1200px;
  background: #fff;
  padding: 25px 45px 25px;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  margin: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  color: #000;
}

.footer-left {
  text-align: left;
}

.footer-logo {
  width: 120px;
}

.footer-left p {
  font-size: 15px;
  color: #0c0a0a;
}

.footer-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eaeaea;
  text-align: center;
  line-height: 38px;
  margin-right: 8px;
  font-size: 16px;
  color: #5962a5;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #5962a5;
  color: #fff;
  transform: scale(1.1);
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 800;
  color: #5962a5;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.footer-col h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  height: 2px;
  background: linear-gradient(90deg, #5aa770, #5962a5);
  border-radius: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li a {
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col li a:hover {
  color: #5aa770;
  padding-left: 6px;
}

.map-box {
  height: 160px;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 15px;
  width: 100%;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.policy-center-wrap {
  margin-top: -31px;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.policy-pill {
  padding: 8px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #5aa770, #5962a5);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom {
  grid-column: 1/-1;
  color: #000;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
}

.animate {
  opacity: 0;
  transform: translateY(20px);
}

/* ✅ YOUR ORIGINAL RESPONSIVE CODE (UNCHANGED) */
@media (max-width: 900px) {
  .footer-box {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-box {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bg-circle {
    width: 380px;
    height: 380px;
    top: 20px;
  }

  .map-box {
    height: 200px;
  }
}



/* new home page css */

/* about us home */
/* SECTION */
.arv-section {
  padding: 60px 20px;
  background: #f5f7fa;
}

.arv-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.arv-left {
  flex: 1;
}

/* MAIN CARD (IMPORTANT HOVER TARGET) */
.arv-card {
  background: #414C9C;
  padding: 18px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

/* IMAGE BOX */
.arv-img-box {
  overflow: hidden;
  border-radius: 20px;
}

/* IMAGE */
.arv-img-box img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease-in-out;
}

/* LABEL */
.arv-label {
  text-align: center;
  margin-top: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

/* 🔥 HOVER EFFECT (OUTER DIV PAR) */
.arv-card:hover {
  background: #4fa568;
}

/* IMAGE ZOOM */
.arv-card:hover .arv-img-box img {
  transform: scale(1.12);
}

/* OPTIONAL OVERLAY (PREMIUM LOOK) */
.arv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: 0.4s;
}

.arv-card:hover::after {
  opacity: 1;
}

/* RIGHT SIDE */
.arv-right {
  flex: 1;
}

.arv-sub {
  color: #4fa568;
  font-size: 20px;
  margin-bottom: 10px;
}

.arv-heading {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
}

.arv-para {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* BUTTON */
.arv-btn {
  display: inline-block;
  background: #414C9C;
  color: #fff;
  padding: 10px 22px;
  border-radius: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.arv-btn:hover {
  background: #4fa568;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .arv-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .arv-heading {
    font-size: 22px;
  }
}

/* product slider */


.cs-section {
  padding: 40px 20px;
  background: #f8f9fb;
  text-align: center;
}

.cs-heading-wrap {
  text-align: center;
  margin-bottom: 40px;
}

/* MAIN HEADING */
.cs-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin: 0;
  letter-spacing: 0.5px;
}

/* HIGHLIGHT TEXT */
.cs-title span {
  color: #414C9C;
  position: relative;
  font-weight: 700;
}

/* UNDERLINE EFFECT */
.cs-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #4fa568;
  border-radius: 2px;
}

/* SUBTITLE */
.cs-subtitle {
  max-width: 700px;
  margin: 22px auto 0;
  font-size: 18px;
  color: #666;
  line-height: 1.2;
}


/* SLIDER */
.cs-slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.cs-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

/* CARD */
.cs-card {
  min-width: 25%;
  background: #fff;
  height: 400px;
  padding: 10px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.cs-card:hover {
  transform: translateY(-5px);
}

.cs-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* TEXT */
.cs-card p {
  /* padding: 14px; */
  font-weight: 600;
}

/* OVERLAY FIX (opacity issue solved) */
.cs-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(79, 165, 103, 0.801);
  /* opacity only bg */
  display: flex;
  justify-content: center;
  border-radius: 14px;
  align-items: center;
  transition: 0.4s;
}

.cs-card:hover .cs-overlay {
  bottom: 0;
}

/* CONTENT ALIGN LEFT */
.cs-content {
  padding: 12px 14px 16px;
  text-align: left;
}

/* TITLE */
.cs-content h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* DESCRIPTION */
.cs-content p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* BUTTON CLEAR */
.cs-overlay button {
  background: #fff;
  color: #414C9C;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  opacity: 1;
  /* always clear */
}


.cs-overlay button a {
  text-decoration: none;
  color: #414C9C;
  font-weight: bold;
}

/* NAV */
.cs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #414C9C;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .cs-card {
    min-width: 48%;
  }
}

@media(max-width: 500px) {
  .cs-card {
    min-width: 100%;
  }
}


/* extra layput */
.pro-section {
  padding: 40px 20px;
  background: linear-gradient(to right, #f8f9fb 60%, #eef2ff);
}

.pro-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.pro-img-box {
  position: relative;
  flex: 1;
}

.pro-img-box img {
  width: 100%;
  height: 480px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
}

/* ACCENT SHAPE */
.pro-img-accent {
  position: absolute;
  bottom: -35px;
  left: -35px;
  width: 80%;
  height: 80%;
  background: #4fa568;
  border-radius: 14px;
  z-index: 1;
}

/* CONTENT */
.pro-content {
  flex: 1;
}

/* TITLE */
.pro-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.pro-title span {
  color: #414C9C;
  position: relative;
  font-weight: 700;
}

.pro-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #4fa568;
}

/* TEXT */
.pro-text {
  font-size: 16px;
  color: #555555e3;
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 20px;
}

/* DIVIDER */
.pro-divider {
  width: 60px;
  height: 3px;
  background: #4fa568;
  margin: 20px 0;
}

/* SUB */
.pro-sub {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* GRID LIST (MODERN STYLE) */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 20px;
}

.pro-grid div {
  background: #414C9C;
  /* BLUE THEME */
  color: #fff;
  /* WHITE TEXT */
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 15px rgba(65, 76, 156, 0.25);
  transition: 0.3s;
}

/* 🔥 HOVER EFFECT (premium feel) */
.pro-grid div:hover {

  transform: translateY(-3px);
}

/* BOTTOM TEXT */
.pro-bottom {
  font-weight: 500;
  color: #333;
  line-height: 1.1;
}

/* 🔥 RESPONSIVE */
@media(max-width: 900px) {
  .pro-container {
    flex-direction: column;
    gap: 30px;
  }

  .pro-title {
    font-size: 26px;
    text-align: center;
  }

  .pro-content {
    text-align: center;
  }

  .pro-grid {
    grid-template-columns: 1fr;
  }
}


/* cpunter section */
.pro-mag-sec {
  padding: 70px 60px;
  background: #fff;
}

/* GRID */
.pro-mag-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  margin-bottom: 60px;
}

/* LEFT */
.pro-tag {
  font-size: 16px;
  color: #4fa568;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.pro-mag-left h2 {
  font-size: 50px;
  font-weight: 800;
  color: #111;
  margin: 20px 0;
  line-height: 1.1;
}

.pro-mag-left p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

/* LIST */
.pro-mag-left ul {
  list-style: none;
  padding: 0;
}

.pro-mag-left li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.pro-mag-left li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #414C9C;
  position: absolute;
  left: 0;
  top: 7px;
}

/* RIGHT FEATURE CARDS */
.pro-mag-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-box {
  padding: 25px;
  border-left: 5px solid #414C9C;
  background: #f7f9fc;
  transition: 0.3s;
}

.feature-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 17px;
  color: #666;
}


/* ICON */
.stat-icon {
  font-size: 45px;
  margin-bottom: 10px;
  opacity: 0.9;
}


/* HOVER */
.feature-box:hover {
  background: #414C9C;
}

.feature-box:hover h4,
.feature-box:hover p {
  color: #fff;
}

/* STATS STRIP 🔥 */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(90deg, #4fa568, #414C9C);
  color: #fff;
}

.stat {
  text-align: center;
  padding: 20px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:last-child {
  border-right: none;
}

.stat h3 {
  font-size: 36px;
  font-weight: 700;
}

.stat p {
  font-size: 18px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .pro-mag-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 2fr 2fr;
  }
}

@media(max-width:576px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .pro-mag-left h2 {
    font-size: 30px;
  }
}


/* why choose */
/* SECTION */
.why-pro-sec {
  padding: 40px 60px;
  background: #f4f6fb;
}

/* GRID */
.why-pro-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

/* LEFT PANEL WITH IMAGE */
.why-pro-left {
  position: relative;
  padding: 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;

  /* BG IMAGE */
  background: url("../images/why-choose.jpg") center/cover no-repeat;
}

/* LIGHT OVERLAY (NOT BLUE ❌) */
.why-pro-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  /* dark neutral overlay */
  z-index: 1;
}

/* TEXT ABOVE OVERLAY */
.why-pro-left * {
  position: relative;
  z-index: 2;
}

/* TEXT STYLING */
.why-pro-tag {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.why-pro-left h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.2;
}

.why-pro-left p {
  line-height: 1.8;
  opacity: 0.95;
  font-size: 19px;
}

/* RIGHT SIDE */
.why-pro-right {
  display: flex;
  flex-direction: column;
}

/* STRIPS */
.why-line {
  padding: 25px 30px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  transition: 0.3s;
}

/* ACCENT LINE */
.why-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #4fa568;
  transition: 0.3s;
}

/* TEXT */
.why-line h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.why-line p {
  font-size: 19px;
  color: #666;
}

/* HOVER */
.why-line:hover {
  background: #414C9C;
}

.why-line:hover h3,
.why-line:hover p {
  color: #fff;
}

.why-line:hover::before {
  width: 100%;
  opacity: 0.1;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .why-pro-wrap {
    grid-template-columns: 1fr;
  }
}

@media(max-width:576px) {
  .why-pro-left {
    padding: 30px;
  }

  .why-pro-left h2 {
    font-size: 26px;
  }
}

/* SECTION */
.ind-modern-sec {
  padding: 60px 0;
  background: #fff;
}

/* HEADER */
.ind-modern-head {
  padding: 0 60px;
  margin-bottom: 40px;
}

.ind-modern-head span {
  color: #4fa568;
  letter-spacing: 2px;
  font-size: 20px;
}

.ind-modern-head h2 {
  font-size: 55px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #111;
}

/* SLIDER WRAPPER */
.ind-slider {
  overflow: hidden;
  padding: 0 60px;
  /* equal side spacing */
  cursor: grab;
}

.ind-slider:active {
  cursor: grabbing;
}

/* TRACK */
.ind-track {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  scroll-behavior: auto;
}

/* HIDE SCROLLBAR */
.ind-track::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.ind-modern-item {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.ind-modern-item:hover {
  transform: scale(1.05);
}

/* OVERLAY */
.ind-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
}

.ind-overlay h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.ind-overlay p {
  font-size: 13px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .ind-modern-item {
    width: 250px;
    height: 260px;
  }
}

@media(max-width:576px) {
  .ind-slider {
    padding: 0 20px;
  }

  .ind-modern-item {
    width: 220px;
  }

  .ind-modern-head h2 {
    font-size: 28px;
  }
}

/* footer */
/* FOOTER */
.custom-footer {
  background: #fff;
  padding-top: 60px;
  font-family: sans-serif;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 60px 40px;
}

/* COL */
.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #111;
}

/* BRAND */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}


.side-col {
  padding-left: 50px;
}


/* FOOTER LINK ICON */
.footer-links li a i {
  font-size: 12px;
  color: #4fa568;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.footer-links li a:hover i {
  color: #414C9C;
  transform: translateX(4px);
}

.footer-brand img {
  width: 80px;
}

.footer-title {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.footer-title span:first-child {
  color: #4fa568;
  font-weight: 700;
}

.footer-title span:last-child {
  color: #414C9C;
  font-weight: 700;
}

/* TEXT */
.footer-about p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  font-size: 17px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #4fa568;
  padding-left: 5px;
}

/* CONTACT */
.footer-contact li {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-contact i {
  color: #4fa568;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #414C9C;
  text-align: center;

  padding: 15px 50px;
  color: #fff;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:576px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 20px 30px;
  }

  .footer-bottom {
    font-size: 12px;
  }


  .side-col {
    padding-left: 0px;
  }
}