@font-face {
  font-family: "EduSAHand-Regular";
  src: url(../font/EduSAHand-Regular.ttf);
}

@font-face {
  font-family: "EduSAHand-Medium";
  src: url(../font/EduSAHand-Medium.ttf);
}

@font-face {
  font-family: "EduSAHand-SemiBold";
  src: url(../font/EduSAHand-SemiBold.ttf);
}


@font-face {
  font-family: "EduSAHand-Bold";
  src: url(../font/EduSAHand-Bold.ttf);
}

@font-face {
  font-family: "Regular";
  src: url(../font/Regular.ttf);
}

:root {
  --font-12: 12px;
  --font-14: 14px;
  --font-16: 16px;
  --font-18: 18px;
  --font-20: 20px;
  --font-22: 22px;
  --font-24: 24px;
  --font-26: 26px;
  --font-28: 28px;
  --font-30: 30px;
  --font-32: 32px;
  --font-34: 34px;
  --font-36: 36px;
  --font-38: 38px;
  --font-40: 40px;
  --font-42: 42px;
  --main-color: #212121;
  --hover-color: #da3f4e;
  --hover-color2: #f5cd70;

  --h-font-400: "EduSAHand-Regular";
  --h-font-500: "EduSAHand-Medium";
  --h-font-600: "EduSAHand-SemiBold";
  --h-font-700: "EduSAHand-Bold";
  --para-font: "Regular";
}

body {
  font-size: var(--font-16);
  line-height: 1.4;
}

p,
a,
span,
strong,
b {
  font-family: var(--para-font);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}




/* =========== Banner Style Css ============= */
.slider-container {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slides-wrapper {
  display: flex;
  /* Arrange slides horizontally */
  height: 100%;
  /* Ensure wrapper takes full height of container */
  transition: transform 1s ease-in-out;
  /* Smooth transition for slide change */
}

.slide {
  flex-shrink: 0;
  /* Prevent slides from shrinking */
  width: 100%;
  /* Each slide takes full width of the container */
  height: 100%;
  position: relative;
  /* For positioning background and overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: white;
  overflow: hidden;
  /* Ensure background doesn't overflow during zoom */
}

/* The 'active' class is now primarily for content animation and background zoom */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.5s ease-in-out;
  /* Smooth zoom effect */
  z-index: -1;
}

/* Apply zoom effect to the background of the currently active slide */
.slide.active .slide-bg {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 2, 95, 0.5);
  /* Dark overlay */
  z-index: 0;
}

.slide-content {
  position: relative;
  /* Content is relative to the slide */
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.5s;
  /* Delay content animation */
}

/* Content animation for the active slide */
.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h2 {
  font-size: 3.6rem;
  font-family: var(--h-font-700);
  margin-bottom: 1rem;
  line-height: 1.4;
  /* Animations for h2, p, and button will be triggered by .slide.active .slide-content */
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFadeIn 0.8s ease-out forwards;
  animation-delay: 0.8s;
  /* Delay for headline */
}

.slide-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFadeIn 0.8s ease-out forwards;
  animation-delay: 1.1s;
  /* Delay for paragraph */
}

.slide-content .cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--hover-color);
  /* Tailwind blue-500 */
  color: white;
  border-radius: 9999px;
  /* Fully rounded */
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFadeIn 0.8s ease-out forwards;
  animation-delay: 1.4s;
  /* Delay for button */
}

.slide-content .cta-button:hover {
  background-color: #2563EB;
  /* Darker blue */
  transform: translateY(-2px);
}

/* Keyframe animations for content */
@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.05);
}

.nav-button.prev {
  left: 20px;
}

.nav-button.next {
  right: 20px;
}

.pagination-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .nav-button {
    padding: 0.75rem 1rem;
    font-size: 1.5rem;
  }

  .nav-button.prev {
    left: 10px;
  }

  .nav-button.next {
    right: 10px;
  }

  .pagination-dots {
    bottom: 20px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .slide-content .cta-button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}

/* =========== Banner Style Css ============= */




/* ============= About us Section Style Css ============= */
.sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.sec-title .title {
  position: relative;
  display: block;
  font-size: var(--font-16);
  line-height: 24px;
  color: #ff2222;
  font-family: var(--h-font-500);
  margin-bottom: 15px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: var(--font-34);
  line-height: 1.28em;
  color: #222222;
  font-family: var(--h-font-600);
  padding-bottom: 18px;
}

.sec-title h2:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 50px;
  height: 3px;
  background-color: #d1d2d6;
}

.sec-title .text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 15px;
}

.sec-title.light h2 {
  color: #ffffff;
}

.sec-title.text-center h2:before {
  left: 50%;
  margin-left: -25px;
}

.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #222222;
  font-weight: 400;
  padding-left: 35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #ff2222;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
  color: #44bce2;
}

.btn-style-one {
  margin-top: 2rem;
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: #ffffff;
  padding: 6px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ff2222;
}

.btn-style-one:hover {
  background-color: #001e57;
  color: #ffffff;
}

.about-section {
  position: relative;
  padding: 120px 0 70px;
}

.about-section .sec-title {
  margin-bottom: 45px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-left: 30px;
}

.about-section .text {
  font-size: 17px;
  line-height: 26px;
}

.about-section .list-style-one {
  margin-bottom: 45px;
}

.about-section .btn-box {
  position: relative;
}

.about-section .btn-box a {
  padding: 15px 50px;
}

.about-section .image-column {
  position: relative;
}

.about-section .image-column .text-layer {
  position: absolute;
  right: -110px;
  top: 50%;
  font-size: 325px;
  line-height: 1em;
  color: #ffffff;
  margin-top: -175px;
  font-weight: 500;
}

.about-section .image-column .inner-column {
  position: relative;
  padding-bottom: 125px;
}

.about-section .image-column .inner-column:before {
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  content: "";
}

.about-section .image-column .image-1 {
  position: relative;
}

.about-section .image-column .image-2 {
  position: absolute;
  left: -70px;
  bottom: -172px;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img {
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
  width: 100%;
  border-radius: 5px;
}

.about-section .image-column .image-2 img {
  width: 80%;
}

.about-section .image-column .video-link {
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link {
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover {
  background-color: #191e34;
  color: #fff
}

.para_highlight {
  color: var(--hover-color);
}

/* ============= About us Section Style Css ============= */




/* Services Section Specific Styles */
.services_sec {
  padding: 60px 0;
  background: #f3f4f7;
}

.service-card {
  margin-top: 1.5rem;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  min-height: 320px;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon-wrapper span {
  display: inline-block;
  font-size: 3.2rem;
  margin-bottom: .4rem;
  transition: color 0.3s ease-in-out;
  animation: updown 3s linear infinite;
}

.service-card h3 {
  font-size: var(--font-20);
  font-family: var(--h-font-500);
  color: var(--main-color);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  color: #4B5563;
  /* Tailwind gray-600 */
  line-height: 1.6;
}

.section-title h2 {
  font-size: var(--font-32);
  font-family: var(--h-font-700);
}

/* Dual color title */
.section-title .highlight {
  color: var(--hover-color);
  font-size: var(--font-42);
}

@keyframes updown {

  0%,
  100% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0px);
  }

}

/* How It Works Section Specific Styles (Vertical Process with Dotted Line) */

#how-it-works {
  padding: 60px 0;
  background: url(../imgs/Shipping-from-China-to-Philippines.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 9;
}

#how-it-works::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .1);
  padding: 20px;
  backdrop-filter: blur(5px);
  z-index: -9;
}

.process-container {
  position: relative;
  /* Needed for positioning the dotted line */
  display: flex;
  flex-direction: column;
  /* Stack items vertically */
  gap: 3rem;
  /* Space between process items */
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  /* Add padding for the line to sit inside */
}

/* Dotted vertical line connecting the numbers */
.process-container::before {
  content: '';
  position: absolute;
  top: 30px;
  /* Start from the middle of the first number */
  bottom: 30px;
  /* End at the middle of the last number */
  left: calc(20px + 30px - 1px);
  /* 20px padding + 30px (center of number) - half line width */
  width: 2px;
  background-color: transparent;
  /* Make background transparent */
  border-left: 2px dotted #9CA3AF;
  /* Light gray dotted line */
  z-index: 0;
  /* Behind the numbers and content */
}

.process-item {
  display: flex;
  align-items: flex-start;
  /* Align content to the top */
  opacity: 0;
  /* Hidden by default for animation */
  transform: translateY(50px);
  /* Start below for slide-up */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  position: relative;
  /* Ensure process-number z-index works */
}

/* Animation for process items (triggered by Intersection Observer) */
.process-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.process-item .process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--hover-color);
  /* Blue background */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-18);
  font-family: var(--h-font-500);
  flex-shrink: 0;
  /* Prevent shrinking */
  margin-right: 2rem;
  /* Space from content */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  position: relative;
  /* Important for z-index to work against ::before */
  z-index: 1;
  /* Ensure numbers are above the dotted line */
}

.process-item:hover .process-number {
  background-color: #2563EB;
  /* Darker blue on hover */
  transform: scale(1.05);
}

.process-item .process-content {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  flex-grow: 1;
  /* Take remaining space */
  text-align: left;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.process-item:hover .process-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.process-item .process-content h3 {
  font-size: var(--font-20);
  font-family: var(--h-font-500);
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.process-item .process-content p {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .process-item .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-right: 1.5rem;
  }

  .process-item .process-content {
    padding: 1.25rem 1.5rem;
  }

  .process-item .process-content h3 {
    font-size: 1.35rem;
  }

  /* Adjust dotted line for smaller screens */
  .process-container::before {
    left: calc(20px + 25px - 1px);
    /* 20px padding + 25px (center of 50px number) - half line width */
    top: 25px;
    /* Half height of 50px number */
    bottom: 25px;
    /* Half height of 50px number from bottom of container */
  }
}

@media (max-width: 480px) {
  .process-item {
    flex-direction: column;
    /* Stack number and content vertically on very small screens */
    align-items: center;
    text-align: center;
  }

  .process-item .process-number {
    margin-right: 0;
    margin-bottom: 1rem;
    /* Space below number */
  }

  .process-item .process-content {
    width: 100%;
    padding: 1rem;
  }

  .process-item .process-content h3 {
    font-size: 1.2rem;
  }

  .process-item .process-content p {
    font-size: 0.85rem;
  }

  /* Dotted line for extra small screens (when number and content stack) */
  .process-container::before {
    left: 50%;
    /* Center the line */
    transform: translateX(-50%);
    /* Adjust for line width */
    top: 25px;
    /* Adjust based on number size */
    bottom: 25px;
    /* Adjust based on number size */
  }
}




/* ============ Faq Style Css ============ */
.faq_section {
  padding: 60px 0;
}

.accordion .accordion-item {
  padding: 0 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #03b5d2;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--main-color);
  font-size: var(--font-26);
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--hover-color);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: #03b5d2;
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"]+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

/* ============ Faq Style Css ============ */

/* ============== Blogs Section Style ============== */

#blogs {
  padding: 60px 0;
  background: #f3f4f7;
}

/* Blogs Section Specific Styles */
.blog-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  /* Ensures image corners are rounded */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Ensure cards fill grid cell height */
  opacity: 0;
  /* Hidden by default for animation */
  transform: translateY(50px);
  /* Start below for slide-up */
}

.blog-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  /* Fixed height for blog images */
  overflow: hidden;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.1);
  /* Zoom effect on image hover */
}

.blog-category-ribbon {
  position: absolute;
  top: 15px;
  left: -10px;
  /* Adjust to make it look like a ribbon */
  background-color: var(--main-color);
  /* Tailwind amber-500 */
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0 0.5rem 0.5rem 0;
  /* Rounded on right side */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transform: rotate(-5deg);
  /* Slight rotation for ribbon effect */
  transition: background-color 0.3s ease-in-out;
}

.blog-card:hover .blog-category-ribbon {
  background-color: #D97706;
  /* Darker amber on hover */
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: var(--font-20);
  font-family: var(--h-font-600);
  color: #1F2937;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
  /* Allow paragraph to take up space */
}

.blog-content .read-more {
  display: inline-block;
  color: #3B82F6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.blog-content .read-more:hover {
  color: #2563EB;
  text-decoration: underline;
}

/* Blog section responsive grid */
@media (max-width: 768px) {
  .blogs-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* 1 column on small screens */
  }

  .blog-image-wrapper {
    height: 180px;
  }

  .blog-content h3 {
    font-size: 1.35rem;
  }

  .blog-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .blog-image-wrapper {
    height: 160px;
  }

  .blog-content h3 {
    font-size: 1.25rem;
  }

  .blog-content p {
    font-size: 0.8rem;
  }
}

/* ============== Blogs Section Style ============== */





/* ============= Contact Us Style Css =============== */

.breadcrumb-section {
  padding: 100px 0;
  background-image: url('../imgs/breadcumb-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 9;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(29, 41, 59, 0.6);
  backdrop-filter: blur(2px);
  z-index: -1;
}

.bread_title_wrapper {}

.bread_title_wrapper h1 {
  margin-bottom: 0;
  font-size: var(--font-42);
}

.breadcrumb-container {
  width: 100%;
  background-color: #e0e7eb;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on iOS */
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  /* Remove default list bullets */
  padding: 0;
  margin: 0;
  white-space: nowrap;
  /* Prevent wrapping of breadcrumb items */
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #4a5568;
  /* Default text color */
}

.breadcrumb-item:not(:last-child)::after {
  content: '»';
  /* Separator character */
  margin: 0 0.5rem;
  /* Space around the separator */
  color: #718096;
  /* Separator color */
}

.breadcrumb-link {
  text-decoration: none;
  /* Remove underline from links */
  color: #4a5568;
  /* Link color */
  transition: color 0.2s ease-in-out;
  /* Smooth color transition on hover */
}

.breadcrumb-link:hover {
  color: #2b6cb0;
  /* Darker blue on hover */
}

.breadcrumb-item.active .breadcrumb-link,
.breadcrumb-item.active span {
  color: #10b981;
  /* Green color for active item */
  font-weight: 500;
  /* Slightly bolder for active item */
  cursor: default;
  /* No pointer for active item */
}

.breadcrumb-item.active .breadcrumb-link:hover {
  color: #10b981;
  /* Keep green on hover for active item */
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .breadcrumb-container {
    padding: 0.75rem 1rem;
  }

  .breadcrumb-item {
    font-size: 0.9rem;
  }

  .breadcrumb-item:not(:last-child)::after {
    margin: 0 0.4rem;
  }
}

.contact_us {
  padding: 60px 0;
}

.form-container {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-title {
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
}

.form-title h3 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-title h3 i {
  color: var(--primary-color);
}

.form-section-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-floating>.form-control,
.form-floating>.form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating>label {
  padding: 1rem 0.75rem;
}

.contactUsBtn {
  padding: 10px 1rem;
  border: none;
  outline: none;
  background: #2563EB;
  color: #fff;
  width: 100%;
  transition: .4s ease-in-out;
}

.contactUsBtn:hover {
  background: var(--hover-color);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-text {
  color: #6b7280;
}

textarea.form-control {
  min-height: 120px;
}

.card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  opacity: 0.05;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: 0;
}

@media (max-width: 768px) {
  .form-container {
    padding: 25px;
  }
}

.google_map {
  padding-bottom: 60px;
}

/* ============= Contact Us Style Css =============== */