@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: "Source Serif 4", 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%;
  animation: marquee 20s 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: 10px 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;
  font-size: 22px;
  font-weight: bold;
  gap: 6px;
}

.brand img {
  height: 50px;
  width: auto;
}

.brand span {
  margin-top: 21px;
}

.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: 500;
  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: 23px 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: 40px;
  }
}

/* Bootstrap carousel fixes */
.carousel-inner {
  width: 100%;
  max-height: 500px;
}

.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 117px;
  }
}

/* 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;
  }
}

