@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap");

:root {
  --color1: #062f3a;
  --color2: #fd5523;
  --color3: #f5f5f5;
  --color4: #1a1a1a;
  --btn-theme-base: var(--color2);
  --btn-theme-white: #ffffff;
  --btn-theme-black: var(--color1);
  --top-bar-height: 40px; /* Adjust based on your actual top bar height */
  --nav-height: 80px; /* Adjust based on your actual nav height */
}
@font-face {
  font-family: "Griffon_Bold";
  src: url("../fonts/Griffon_Bold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
body,
p,
a,
li {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
a {
  text-decoration: none !important;
}
li {
  list-style-type: none !important;
}
.heading1 {
  font-size: 2.5rem;
}
.heading2 {
  font-size: 2rem;
}
.heading3 {
  font-size: 1.75rem;
}
.heading4 {
  font-size: 1.5rem;
}
.heading5 {
  font-size: 1.25rem;
}
.heading6 {
  font-size: 1rem;
}
.pad {
  padding: 90px 0;
}
.wrdbrk {
  white-space: pre;
}
.fullpad {
  padding: 0 !important;
  margin: 0 !important;
}
/* custom css starts */
/* Top Bar Styles */
.main-header .top-bar {
  background-color: var(--color1);
  padding: 10px 0;
}

.main-header .contact-info {
  display: flex;
  align-items: center;
}

.main-header .contact-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-header .contact-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.main-header .contact-icon {
  color: var(--color2);
  margin-right: 10px;
  font-size: 16px;
}

.main-header .contact-text a,
.main-header .contact-text p {
  color: var(--color3);
  margin: 0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.main-header .contact-text a:hover {
  color: var(--color2);
  text-decoration: none;
}

.main-header .top-right-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Main Navigation Styles */
.main-nav {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Your Exact Logo Styling */
.main-menu-left {
  position: relative;
  display: block;
}

/* .main-menu-left::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -14px;
  background-color: var(--color2);
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0% 100%);
  opacity: 0.6;
  z-index: 0;
} */

.main-menu-logo {
  position: relative;
  display: block;
  z-index: 1;
  width: 160px;
}
/* .main-menu-left::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color2);
  clip-path: polygon(0 0, 76% 0, 100% 100%, 0% 100%);
  z-index: 0;
} */

/* Navbar Links */
.nav-link {
  color: var(--color4) !important;
  font-weight: bold !important;
  padding: 8px 15px;
  margin: 0 5px;
  position: relative;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color2);
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--color2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover:after {
  transform: scaleX(1);
}

/* Active Section Highlighting */
.nav-link.active {
  color: var(--color2);
}

.nav-link.active:after {
  transform: scaleX(1);
}

/* Animated Hamburger */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--color1);
  transition: all 0.3s ease;
}

.navbar-toggler-icon:before,
.navbar-toggler-icon:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color1);
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon:before {
  transform: translateY(-8px);
}

.navbar-toggler-icon:after {
  transform: translateY(8px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}
/* banner section */
/* Banner Section - Scoped Styles */
.banner-section {
  position: relative;
  background-color: var(--color1);
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
}

.banner-section .banner-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/banner-ong-pattern.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.02;
  z-index: -1;
}

.banner-section .banner-content {
  position: relative;
  z-index: 2;
  padding-right: 30px;
}

.banner-section .banner-subtitle {
  color: var(--color2);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.banner-section .banner-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color3);
}

.banner-section .text-orange {
  color: var(--color2);
}

.banner-section .banner-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color3);
  margin-bottom: 30px;
  opacity: 0.9;
}

.banner-section .btn-theme {
  display: inline-flex;
  align-items: center;
  background-color: var(--color2);
  color: var(--color3);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.banner-section .btn-theme:hover {
  background-color: var(--color3);
  color: var(--color1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.banner-section .btn-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.banner-section .btn-theme:hover .btn-icon {
  transform: translateX(4px);
}

.banner-section .customer-reviews {
  display: flex;
  align-items: center;
}

.banner-section .review-images {
  display: flex;
}

.banner-section .review-icon {
  font-size: 24px;
  color: var(--color3);
  margin-right: -12px;
  transition: transform 0.3s ease;
}

.banner-section .review-icon:hover {
  transform: translateY(-5px);
  color: var(--color2);
}

.banner-section .review-text {
  margin-left: 20px;
}

.banner-section .review-rating {
  font-weight: 700;
  color: var(--color2);
  margin-right: 5px;
}

.banner-section .review-count {
  font-size: 14px;
  color: var(--color3);
  opacity: 0.8;
}

.banner-section .banner-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  z-index: 2;
}

.banner-section .banner-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  animation: leftRight 4s ease-in-out infinite;
}

.banner-section .banner-image:hover img {
  transform: scale(1.03);
}

.banner-section .line-shape {
  position: absolute;
  background-color: var(--color2);
  z-index: 1;
}

.banner-section .line-shape-1 {
  top: -39%;
  right: -26px;
  width: 250px;
  height: 200%;
  transform: rotate(34deg);
}

.banner-section .line-shape-2 {
  top: 30%;
  right: 59%;
  width: 100px;
  height: 150%;
  transform: rotate(34deg);
}

/* Typewriter Effect */
.banner-section .typewriter-text::after {
  content: "|";
  display: inline-block;
  margin-left: 2px;
  color: var(--color2);
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes leftRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* About Section - Scoped Styles */
.about-section {
  background-color: var(--color3);
  overflow: hidden;
  padding: 100px 0;
}

/* Dark Gradient for Counter */
.about-section .bg-gradient-dark {
  background: linear-gradient(
    135deg,
    rgba(6, 47, 58, 0.9) 0%,
    rgba(26, 26, 26, 0.95) 100%
  );
}

/* Decorative Shapes */
.about-section .about-shape-1 {
  top: 50px;
  left: 0;
  animation: floatAnimation 6s ease-in-out infinite;
  width: 150px;
}

.about-section .about-shape-2 {
  bottom: 50px;
  right: 0;
  animation: floatAnimation 8s ease-in-out infinite 2s;
  width: 150px;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Images Container */
.about-section .about-img-box {
  height: 100%;
  min-height: 400px;
}

/* Main Image */
.about-section .about-main-img {
  height: 100%;
  border: 15px solid var(--color3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Secondary Image */
.about-section .about-secondary-img {
  width: 250px;
  height: 250px;
  bottom: -50px;
  right: 551px;
  border-width: 4px !important;
}

/* Counter */
.about-section .about-counter {
  top: 30px;
  right: -30px;
  width: 160px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-section .about-counter-shape {
  bottom: 0;
  right: 0;
  z-index: 0;
  opacity: 0.2;
  width: 100%;
  height: 100%;
}

.about-section .about-counter-number h2 {
  font-size: 42px;
  line-height: 1;
  color: white;
}

.about-section .about-counter p {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

/* Section Title */
.about-section .section-tagline-line {
  height: 2px;
  width: 40px;
}

.about-section .section-tagline-icon {
  font-size: 20px;
}

.about-section .section-heading {
  font-size: 36px;
  color: var(--color1);
  line-height: 1.3;
}

.about-section .about-text {
  color: var(--color4);
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
}

/* Progress Circles */
.about-section .about-progress-circle {
  width: 110px;
  height: 110px;
}

.about-section .progress-circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.about-section .progress-circle-bg {
  fill: none;
  stroke: var(--color3);
  stroke-width: 8;
}

.about-section .progress-circle-fill {
  fill: none;
  stroke: var(--color2);
  stroke-width: 8;
  stroke-dasharray: 283;
  stroke-linecap: square;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.5s ease-in-out;
}

.about-section .about-progress-number {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 24px;
  color: var(--color1);
}

.about-section .about-progress-text p {
  font-size: 18px;
  color: var(--color1);
  line-height: 1.4;
}

/* Features */
.about-section .about-feature-icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: var(--color2);
}

.about-section .about-feature-text {
  color: var(--color4);
  font-size: 16px;
}

/* Founder */
.about-section .about-founder-img {
  width: 70px;
  height: 70px;
  background-color: var(--color3);
}

.about-section .about-founder-name {
  color: var(--color1);
  font-size: 18px;
}

.about-section .about-founder-title {
  color: var(--color4);
}
/* why choose us */
/* Why Choose Section - Desktop First */
.why-choose-section {
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}

.why-choose-section .why-choose-bg {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.why-choose-section .why-choose-pattern {
  top: 0;
  left: 0;
  background-image: url("../images/why-choose-two-shpae-bg.png");
  opacity: 0.1;
  z-index: 0;
}

/* Content Styling */
.why-choose-section .section-tagline-line {
  height: 2px;
  width: 40px;
}

.why-choose-section .section-tagline-icon {
  font-size: 20px;
}

.why-choose-section .section-heading {
  font-size: 36px;
  line-height: 1.3;
}

.why-choose-section .why-choose-text {
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
}

/* Features */
.why-choose-section .why-choose-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  position: relative;
}

.why-choose-section .why-choose-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background-color: var(--color2);
  border-radius: 50%;
  z-index: -1;
}

.why-choose-section .why-choose-feature-content h4 {
  font-size: 20px;
  line-height: 1.4;
}

.why-choose-section .why-choose-feature-content p {
  font-size: 15px;
  line-height: 1.6;
}
.why-choose-section .why-choose-feature {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Clients Box */
.why-choose-section .why-choose-clients {
  bottom: 50px;
  right: 50px;
  padding: 30px;
  width: 300px;
}

.why-choose-section .why-choose-review-img {
  width: 50px;
  height: 50px;
}

.why-choose-section .why-choose-client-count h3 {
  font-size: 42px;
  line-height: 1;
}

.why-choose-section .why-choose-client-count p {
  font-size: 18px;
}

/* Truck Image */
.why-choose-section .why-choose-truck {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 500px;
  z-index: 0;
}

/* Button */
.why-choose-section .btn {
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.why-choose-section .btn:hover {
  background-color: var(--color4);
  color: var(--color3);
}
/* services section */
/* Services Section - Scoped Styles */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-section .section-tagline-line {
  height: 2px;
  width: 40px;
  background-color: var(--color2);
}

.services-section .section-tagline-icon {
  font-size: 20px;
  color: var(--color2);
}

.services-section .section-tagline-text {
  color: var(--color2);
}

.services-section .section-heading {
  font-size: 36px;
  line-height: 1.3;
  color: var(--color1);
}

.services-section .section-subtitle {
  font-size: 16px;
  color: var(--color4);
}

.services-section .service-card {
  transition: all 0.3s ease;
  height: 100%;
  min-height: 400px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.services-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--color2) !important;
}

.services-section .service-card-img {
  overflow: hidden;
}

.services-section .service-card-img img {
  transition: transform 0.5s ease;
  object-fit: cover;
}

.services-section .service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.services-section .service-icon {
  width: 60px;
  height: 60px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--color3);
  background-color: var(--color2);
  transition: all 0.3s ease;
}

.services-section .service-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color2);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: -1;
}

.services-section .service-card:hover .service-icon::after {
  opacity: 0.2;
  transform: scale(1.5);
}

.services-section .service-card:hover .service-icon {
  background-color: var(--color1);
  border-color: var(--color2);
}

.services-section .service-icon i {
  color: var(--color3);
  transition: all 0.3s ease;
}

.services-section .service-card:hover .service-icon i {
  transform: rotateY(180deg);
}

.services-section .service-title {
  font-size: 20px;
  line-height: 1.4;
  color: var(--color1);
}

.services-section .service-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color4);
}

.services-section .services-swiper {
  padding: 30px 0 60px;
}

.services-section .swiper-slide {
  height: auto;
  padding: 15px;
}

.services-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color3);
  opacity: 1;
}

.services-section .swiper-pagination-bullet-active {
  background-color: var(--color2);
}

.services-section .swiper-button-prev,
.services-section .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: var(--color3);
  border-radius: 50%;
  color: var(--color2);
  transition: all 0.3s ease;
}

.services-section .swiper-button-prev:hover,
.services-section .swiper-button-next:hover {
  background-color: var(--color2);
  color: var(--color3);
}

.services-section .swiper-button-prev::after,
.services-section .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}
/* counter section */
/* Counters Section - Scoped Styles */
.counters-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color1);
}
.counters-section .bg-pattern {
  background-image: url("../images/why-choose-two-pattern.png");
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 0.05;
}
.counters-section .counters-card {
  text-align: center;
  margin-bottom: 30px;
}

.counters-section .counters-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--color1);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 500ms linear;
  z-index: 2;
  position: relative;
}

.counters-section .counters-card:hover .counters-card-icon {
  background-color: var(--color3);
}

.counters-section .counters-card-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--color3);
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.counters-section .counters-card:hover .counters-card-icon::before {
  transform: scale(1);
  box-shadow: 0 0 20px rgba(253, 85, 35, 0.3);
}

.counters-section .counters-card-icon i {
  font-size: 40px;
  color: var(--color3);
  transition: all 500ms linear 0.1s;
}

.counters-section .counters-card:hover .counters-card-icon i {
  transform: scale(0.9);
  color: var(--color1);
}

.counters-section .counters-card-content {
  background-color: var(--color3);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 70px 20px 30px;
  border-radius: 10px;
  margin-top: -50px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.counters-section .counters-card-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color2);
  border-radius: 10px;
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.counters-section .counters-card:hover .counters-card-content::before {
  transform: scaleX(1) rotateX(0);
  opacity: 1;
}

.counters-section .counters-card-count {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counters-section .counters-card-count h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  color: var(--color2);
  transition: all 500ms ease;
}

.counters-section .counters-card:hover .counters-card-count h3 {
  color: var(--color3);
}

.counters-section .counters-card-count span {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: var(--color2);
  transition: all 500ms ease;
}

.counters-section .counters-card:hover .counters-card-count span {
  color: var(--color3);
}

.counters-section .counters-card-text {
  font-size: 18px;
  color: var(--color4);
  font-weight: 600;
  line-height: 28px;
  margin-top: 10px;
  transition: all 500ms ease;
}

.counters-section .counters-card:hover .counters-card-text {
  color: var(--color3);
}

/* Tablet styles */
/* branches */
/* Branches Section - Scoped Styles */
.branches-section {
  position: relative;
  overflow: hidden;
}

.branches-section .branch-card {
  position: relative;
  height: 100%;
  perspective: 1000px;
}

.branches-section .branch-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
  background: var(--color3);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
  z-index: 1;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    0 100%
  );
}

.branches-section .branch-card-inner::before,
.branches-section .branch-card-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.branches-section .branch-card-inner::before {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--color2), var(--color1));
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    0 100%
  );
}

.branches-section .branch-card-inner::after {
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--color1);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 40px),
    calc(100% - 40px) 100%,
    0 100%
  );
}

.branches-section .branch-card:hover .branch-card-inner {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.branches-section .branch-card:hover .branch-card-inner::before {
  opacity: 0.2;
  transform: translateY(5px);
}

.branches-section .branch-card:hover .branch-card-inner::after {
  opacity: 1;
  transform: translateY(10px);
}

.branches-section .branch-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color1);
  color: var(--color3);
  border-radius: 50%;
  font-size: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.branches-section .branch-card-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.branches-section .branch-card:hover .branch-card-icon {
  background: var(--color2);
  transform: rotateY(180deg);
}

.branches-section .branch-card:hover .branch-card-icon::before {
  left: 100%;
}

.branches-section .branch-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.branches-section .branch-card:hover .branch-card-title {
  color: var(--color2);
}

/* .branches-section .branch-card-content {
  text-align: center;
} */

.branches-section .branch-card-address,
.branches-section .branch-card-phone {
  font-size: 15px;
  color: var(--color4);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  transition: all 0.3s ease;
  gap: 20px;
}

.branches-section .branch-card-address i,
.branches-section .branch-card-phone i {
  margin-right: 8px;
  color: var(--color1);
  transition: all 0.3s ease;
}

.branches-section .branch-card:hover .branch-card-address,
.branches-section .branch-card:hover .branch-card-phone {
  color: var(--color3);
}

.branches-section .branch-card:hover .branch-card-address i,
.branches-section .branch-card:hover .branch-card-phone i {
  color: var(--color2);
}
/* terms and conditions section */
/* Terms Section - Scoped Styles */
.terms-section {
  position: relative;
  overflow: hidden;
}

.terms-section .section-underline {
  width: 80px;
  height: 3px;
  margin-top: 1rem;
}

/* Default styles (lg+) */
.terms-section .terms-card {
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
  padding: 3rem;
}

.terms-section .terms-point {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section .terms-point-number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.terms-section .terms-point-content {
  padding-left: 1rem;
}

.terms-section .terms-point-underline {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
}

.terms-section .terms-point:hover .terms-point-underline {
  width: 100%;
}

.terms-section .terms-sublist {
  list-style-type: none;
}

.terms-section .terms-sublist li::before {
  content: "•";
  color: var(--color2);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Tablet styles */
/* footer styles */
/* Footer Section - Scoped Styles */
.footer-section {
  position: relative;
}

.footer-section .footer-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-section .footer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.footer-section .footer-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: rgba(253, 85, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-section .footer-card:hover .footer-card-icon {
  background-color: var(--color2);
  color: var(--color3);
  transform: rotateY(360deg);
}

.footer-section .footer-card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-section .footer-card-text a {
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-section .footer-card-text a:hover {
  color: var(--color2) !important;
}

.footer-section .footer-form-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-section .footer-form-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-section .btn-orange {
  background-color: var(--color2);
  transition: all 0.3s ease;
}

.footer-section .btn-orange:hover {
  background-color: var(--color1);
}

.footer-section .footer-map-card {
  height: 100%;
  min-height: 300px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Tablet styles */
/* header styles override for scrolling nav */
/* Add these styles to your existing CSS */

/* Sticky Header Behavior */
.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1030;
  transition: transform 0.3s ease;
}

.top-bar {
  transition: all 0.3s ease;
}

.main-nav {
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Scrolled State */
.main-header.scrolled {
  transform: translateY(calc(-1 * var(--top-bar-height, 40px)));
}

.main-header.scrolled .main-nav {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

/* Body Padding to prevent content jump */
body {
  padding-top: calc(var(--top-bar-height) + var(--nav-height) + 1em);
}
/* Ensure content doesn't jump */
/* body {
  padding-top: calc(var(--top-bar-height) + var(--nav-height));
} */
/* track order modal */
/* Modal Styling */
/* Tracking Progress Styles */
.hh-grayBox {
  background-color: #f8f8f8;
  margin-bottom: 20px;
  padding: 35px;
  margin-top: 20px;
  border-radius: 10px;
}

.pt45 {
  padding-top: 45px;
}
.pb20 {
  padding-bottom: 20px;
}

.order-tracking {
  text-align: center;
  width: 33.33%;
  position: relative;
  display: block;
}

.order-tracking .is-complete {
  display: block;
  position: relative;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  border: 0px solid #afafaf;
  background-color: #f7be16;
  margin: 0 auto;
  transition: all 0.25s linear;
  z-index: 2;
}

.order-tracking .is-complete:after {
  display: block;
  position: absolute;
  content: "";
  height: 14px;
  width: 7px;
  top: -2px;
  bottom: 0;
  left: 5px;
  margin: auto 0;
  border: 0px solid #afafaf;
  border-width: 0px 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.order-tracking.completed .is-complete {
  border-color: #27aa80;
  border-width: 0px;
  background-color: #27aa80;
}

.order-tracking.completed .is-complete:after {
  border-color: #fff;
  border-width: 0px 3px 3px 0;
  width: 7px;
  left: 11px;
  opacity: 1;
}

.order-tracking p {
  color: #a4a4a4;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 20px;
}

.order-tracking p span {
  font-size: 14px;
}

.order-tracking.completed p {
  color: #000;
}

.order-tracking::before {
  content: "";
  display: block;
  height: 3px;
  width: calc(100% - 40px);
  background-color: #f7be16;
  top: 13px;
  position: absolute;
  left: calc(-50% + 20px);
  z-index: 0;
}

.order-tracking:first-child:before {
  display: none;
}

.order-tracking.completed:before {
  background-color: #27aa80;
}

/* Modal Adjustments */
#trackingProgressModal .modal-content {
  border-radius: 15px;
}

#trackingProgressModal .modal-body {
  padding: 30px;
}
/* utility classes */
.font-griffon {
  font-family: "Griffon Bold", serif;
}
.text-black {
  color: var(--color4) !important;
}
.text-milk {
  color: var(--color3) !important;
}
.text-blue {
  color: var(--color1) !important;
}
.text-orange {
  color: var(--color2) !important;
}
.bg-blue {
  background-color: var(--color1) !important;
}
.bg-black {
  background-color: var(--color4) !important;
}
.bg-orange {
  background-color: var(--color2) !important;
}
.bg-milk {
  background-color: var(--color3) !important;
}
.para-font {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.small-heading {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.head-font {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
/* theme button */
.btn-theme {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--color2);
  color: var(--btn-theme-white);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  padding: 5px 30px 5px;
  padding-right: 8px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}

.btn-theme > span {
  position: relative;
  font-size: 15px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color4);
  border-radius: 50%;
  color: var(--btn-theme-white);
  transition: all 0.5s linear;
}

.btn-theme:hover > span {
  background-color: var(--color4);
  color: var(--color2);
}

.btn-theme > span > i {
  position: relative;
  display: inline-block;
}

.btn-theme:hover > span > i {
  -webkit-animation: bounceright 0.3s alternate ease infinite;
  animation: bounceright 0.3s alternate ease infinite;
}

.btn-theme::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--color4);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.btn-theme:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.btn-theme::after {
  position: absolute;
  background-color: var(--color3);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.btn-theme:hover::after {
  width: 100%;
  height: 100%;
  color: var(--color4);
  visibility: visible;
  opacity: 1;
}

.btn-theme:hover {
  color: var(--color4);
}

.btn-theme-two {
  border-radius: 30px;
}

/* Bounce Right Animation */
@keyframes bounceright {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(5px);
  }
}

/* custom css ends */
.w0 {
  width: 0%;
}
.fixed {
  position: fixed;
  z-index: 2;
}
.priceicn {
  width: 50px;
}
.priceicn2 {
  width: 120px;
}
.point {
  bottom: 10px;
  left: 10px;
}
.point1 {
  bottom: 70px;
  left: 10px;
}
.point2 {
  bottom: 15px;
  right: 10px;
}
.blink {
  -webkit-animation: blink 1s;
  animation: blink 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (min-width: 1px) and (max-width: 767.98px) {
    /* Header Styles */
    .top-bar {
      padding: 8px 0;
    }
    .contact-list {
      flex-direction: column;
      gap: 8px;
    }
    .contact-item {
      margin-right: 0;
    }
    .top-right-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    .opening-hours {
      margin-right: 0;
    }
    .social-links {
      margin-left: 0;
    }
    .social-links a {
      margin-left: 0;
      margin-right: 10px;
    }
    .main-menu-logo {
      padding: 0px;
      padding-right: 40px;
    }
    .main-menu-logo img {
      height: auto;
    }
    .navbar-collapse {
      padding: 15px 0;
      background: white;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    .nav-item {
      margin: 5px 0;
    }
    .main-menu-left::after {
      clip-path: none;
    }
    .main-menu-left::before {
      z-index: -1;
    }

    /* Banner Section */
    .banner-section {
      padding: 60px 0;
    }
    .banner-section .banner-content {
      padding-right: 0;
      padding-top: 0px;
    }
    .banner-section .banner-title {
      font-size: 24px;
    }
    .banner-section .btn-theme {
      padding: 10px 20px;
    }
    .banner-section .line-shape-1,
    .banner-section .line-shape-2 {
      display: none;
    }
    .banner-section .banner-text {
      font-size: 12px;
    }

    /* About Section */
    .about-section {
      padding: 60px 0;
    }
    .about-section .about-img-box {
      min-height: 300px;
      margin-bottom: 30px;
    }
    .about-section .about-main-img {
      border-width: 10px;
    }
    .about-section .about-secondary-img {
      width: 150px;
      height: 150px;
      bottom: -25px;
      right: 10px;
      border-width: 3px !important;
    }
    .about-section .about-counter {
      position: relative;
      top: auto;
      right: auto;
      margin: -30px auto 30px;
      width: 120px;
    }
    .about-section .section-heading {
      font-size: 28px;
      text-align: center;
    }
    .about-section .about-text {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .about-section .about-progress {
      justify-content: center;
    }
    .about-section .about-progress-circle {
      width: 80px;
      height: 80px;
    }
    .about-section .about-feature-icon {
      width: 32px;
      height: 32px;
      font-size: 12px;
    }
    .about-section .about-cta {
      justify-content: center;
      flex-direction: column;
    }
    .about-section .about-founder {
      margin-top: 20px;
      justify-content: center;
      width: 100%;
    }
    .about-section .about-feature {
      display: flex;
      align-items: center;
      width: 100%;
      max-width: 215px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    /* Why Choose Section */
    .why-choose-section {
      padding: 60px 0;
      text-align: center;
    }
    .why-choose-section .why-choose-bg {
      clip-path: none;
      opacity: 0.7;
    }
    .why-choose-section .section-tagline {
      justify-content: center;
    }
    .why-choose-section .section-heading {
      font-size: 28px;
    }
    .why-choose-section .why-choose-text {
      margin-left: auto;
      margin-right: auto;
    }
    .why-choose-section .why-choose-feature {
      display: flex;
      flex-direction: column;
      text-align: center;
      margin-bottom: 30px;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
    .why-choose-section .why-choose-icon {
      margin: 0 auto 15px;
    }
    .why-choose-section .why-choose-clients {
      position: relative;
      right: auto;
      bottom: auto;
      width: 100%;
      margin-top: 40px;
      clip-path: none;
    }
    .why-choose-section .why-choose-review-list {
      justify-content: center;
    }

    /* Services Section */
    .services-section .section-heading {
      font-size: 28px;
    }
    .services-section .swiper-slide {
      padding: 10px;
    }
    .services-section .service-card-body {
      padding: 15px !important;
    }
    .services-section .service-icon {
      width: 50px;
      height: 50px;
      margin-top: -30px;
    }
    .services-section .swiper-button-prev,
    .services-section .swiper-button-next {
      display: none;
    }
    .services-section .service-card {
      min-height: 350px;
    }

    /* Counters Section */
    .counters-section .counters-card-count h3 {
      font-size: 36px;
      line-height: 36px;
    }
    .counters-section .counters-card-count span {
      font-size: 30px;
      line-height: 36px;
    }
    .counters-section .counters-card-text {
      font-size: 15px;
    }
    .counters-section .counters-card-icon {
      width: 80px;
      height: 80px;
    }
    .counters-section .counters-card-icon i {
      font-size: 32px;
    }
    .counters-section .counters-card-content {
      padding: 60px 15px 25px;
    }

    /* Branches Section */
    .branches-section .branch-card-inner {
      padding: 20px;
      clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 20px),
        calc(100% - 20px) 100%,
        0 100%
      );
    }
    .branches-section .branch-card-title {
      font-size: 18px;
    }
    .branches-section .branch-card-address,
    .branches-section .branch-card-phone {
      font-size: 16px;
      flex-direction: row;
    }
    .branches-section .branch-card-address i,
    .branches-section .branch-card-phone i {
      margin-right: 0;
      margin-bottom: 5px;
    }
    .branches-section .branch-card-icon {
      width: 45px;
      height: 45px;
      font-size: 20px;
      margin-bottom: 15px;
    }

    /* Terms Section */
    .terms-section .terms-card {
      padding: 1.5rem !important;
    }
    .terms-section .terms-point {
      padding-left: 2.5rem;
      margin-bottom: 2rem;
    }
    .terms-section .terms-point-number {
      font-size: 1.2rem;
    }
    .terms-section .section-tagline-text {
      font-size: 0.8rem;
    }

    /* Footer Section */
    .footer-section .footer-card {
      padding: 1.25rem !important;
      margin-bottom: 1rem !important;
    }
    .footer-section .footer-card-icon {
      width: 45px;
      height: 45px;
    }
    .footer-section .footer-form-card {
      margin-bottom: 1rem;
    }

    /* Utility Classes */
    .pad {
      padding: 40px 0;
    }
  }
@media (min-width: 768px) and (max-width: 991.98px) {
  /* tablet mq */
  /* Header Styles */
  .main-menu-logo {
    padding-right: 50px;
  }
  .nav-link {
    padding: 8px 12px;
  }

  /* Banner Section */
  .banner-section .banner-title {
    font-size: 36px;
  }
  .banner-section .line-shape-1 {
    right: -150px;
  }
  .banner-section .line-shape-2 {
    right: 25%;
  }

  /* About Section */
  .about-section {
    padding: 80px 0;
  }
  .about-section .about-img-box {
    min-height: 350px;
  }
  .about-section .about-secondary-img {
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: 500px;
  }
  .about-section .about-counter {
    width: 140px;
    right: -20px;
  }
  .about-section .section-heading {
    font-size: 32px;
  }
  .about-section .about-progress-circle {
    width: 90px;
    height: 90px;
  }
  .about-section .about-progress-number {
    font-size: 20px;
  }
  .about-section .about-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Why Choose Section */
  .why-choose-section {
    padding: 80px 0;
  }
  .why-choose-section .section-heading {
    font-size: 32px;
  }
  .why-choose-section .why-choose-clients {
    right: 30px;
    width: 250px;
    padding: 20px;
  }
  .why-choose-section .why-choose-client-count h3 {
    font-size: 36px;
  }
  .why-choose-section .why-choose-truck {
    max-width: 400px;
  }

  /* Services Section */
  .services-section .section-heading {
    font-size: 32px;
  }
  .services-section .service-title {
    font-size: 18px;
  }
  .services-section .service-text {
    font-size: 14px;
  }
  .services-section .service-card {
    min-height: 380px;
  }

  /* Counters Section */
  .counters-section .counters-card-count h3 {
    font-size: 42px;
    line-height: 42px;
  }
  .counters-section .counters-card-count span {
    font-size: 36px;
    line-height: 42px;
  }
  .counters-section .counters-card-text {
    font-size: 16px;
  }
  .counters-section .counters-card-icon {
    width: 90px;
    height: 90px;
  }
  .counters-section .counters-card-icon i {
    font-size: 36px;
  }

  /* Branches Section */
  .branches-section .branch-card-inner {
    padding: 25px;
  }
  .branches-section .branch-card-title {
    font-size: 20px;
  }
  .branches-section .branch-card-address,
  .branches-section .branch-card-phone {
    font-size: 14px;
  }
  .branches-section .branch-card-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  /* Terms Section */
  .terms-section .terms-card {
    padding: 2.5rem !important;
  }
  .terms-section .terms-point {
    padding-left: 3.5rem;
  }
  .terms-section .terms-point-number {
    font-size: 1.3rem;
  }

  /* Footer Section */
  .footer-section .footer-card {
    padding: 1.5rem !important;
  }
  .footer-section .footer-card-icon {
    width: 50px;
    height: 50px;
  }

  /* Utility Classes */
  .pad {
    padding: 40px 0;
  }
}

#notfound {
  position: relative;
  height: 100vh;
}
#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.notfound {
  max-width: 410px;
  width: 100%;
  text-align: center;
}
.oopslogo {
  width: 350px;
}
.notfound h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}
.notfound p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 5px;
}
.notfound a {
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background: #0046d5;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0px 4px 15px -5px #0046d5;
}

@media only screen and (max-width: 767px) {
  .notfound .notfound-404 {
    height: 142px;
  }
}

.time-of-year {
  margin: 100px 75px 10px 75px;
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.time-of-year .tooltip {
  background: #db2a1b;
  border-radius: 3px;
  bottom: -49px;
  font-size: 20px;
  display: block;
  left: -67px;
  padding: 15px;
  pointer-events: none;
  position: absolute;
  width: 320px;
  height: 100px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}
.time-of-year .tooltip::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #db2a1b;
  bottom: 58px;
  content: " ";
  position: absolute;
  left: 0%;
  margin-left: -13px;
  transform: rotate(92deg);
}
.time-of-year:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

span.infos {
	font-size: 14px;
	line-height: 15px;
	display: inline-block;
	color: #d93025;
	font-weight: bold;
}