body {
  overflow-x: hidden;
}


.alpana-header {
  font-family: 'Montserrat', sans-serif;
  background: #111111;
}

header.alpana_header {
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(232, 80, 10, .06);
}


.alpana_header .navbar {
  position: relative;
  z-index: 1000;
}

@media (max-width: 1024px) {
  .alpana_header .navbar-expand-md .navbar-nav {
    gap: 0 !important;
  }

  .alpana_header .navbar-nav .nav-link {
    padding: 5px !important;
  }

  .nav-gradient-btn {
    padding: 5px 5px 5px 10px !important;
    font-size: 14px;
  }
}

@media (max-width: 820px) {
  .alpana_header .navbar-nav .nav-link {
    padding: 0px !important;
  }

  .alpana_header .container-fluid {
    padding: 0 35px;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    margin-right: 12px !important;
  }

  .nav-gradient-btn {
    padding: 5px 5px 5px 5px !important;
    font-size: 13px;
  }
}

@media (max-width: 767px) {

  .alpana_header .navbar-expand-md .navbar-nav {
    gap: 15px !important;
  }

  .alpana_header .navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
  }

  /* Force hamburger till iPad Air */
  .alpana_header .navbar-expand-md .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -16px);
    width: calc(100% - 24px);
    max-width: 420px;

    background: #ffffff;
    border-radius: 14px;

    opacity: 0;
    visibility: hidden;

    transition: all 0.35s ease;
    padding: 22px 20px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  }

  /* When menu opens */
  .alpana_header .navbar-collapse.show {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }

  /* Nav spacing – Figma style */
  .alpana_header .navbar-nav {
    gap: 16px;
  }

  .alpana_header .nav-link {
    color: #000 !important;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    text-align: center;
  }

  /* Contact button */
  .alpana_header .nav-gradient-btn {
    margin-top: 14px;
    padding: 12px 22px;
    font-size: 15px;
    border-radius: 30px;
  }
}



/* Dropdown Menu Styles */
.alpana_header .navbar .dropdown {
  position: relative;
}

.alpana_header .navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 200px;
  padding: 10px 0;
  margin: 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #000000;
  background-clip: padding-box;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgb(167 167 167 / 21%);
}

.alpana_header .navbar .dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -10px;
  margin-left: 1px;
}

/* Dropdown items */
.alpana_header .dropdown-menu .nav-item {
  width: 100%;
}

.alpana_header .dropdown-menu .nav-link {
  display: block;
  width: 100%;
  padding: 8px 20px;
  clear: both;
  color: #ffffffc7;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  margin-right: 20px;
}

.alpana_header .current_page_item a {
  color: #ec480c !important;
}

.alpana_header .dropdown-menu .nav-link:hover {
  color: #ed4609 !important;
}


/* .alpana_header .dropdown-menu .nav-link:hover,
        .alpana_header .dropdown-menu .nav-link:focus {
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
        } */

/* Dropdown arrow */
.alpana_header .dropdown-arrow {
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

/* Hover effects for desktop */
@media (min-width: 768px) {

  /* Show dropdown on hover */
  .alpana_header .navbar .dropdown:hover>.dropdown-menu {
    display: block;
  }

  /* Show nested dropdown on hover */
  .alpana_header .navbar .dropdown .dropdown:hover>.dropdown-menu {
    display: block;
  }

  /* Arrow rotation on hover */
  .alpana_header .navbar .dropdown:hover>.nav-link>.dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Smooth animation for dropdown */
  .alpana_header .navbar .dropdown-menu {
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

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

/* Mobile styles */
@media (max-width: 767.98px) {
  .alpana_header .navbar .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    /* box-shadow: none; */
    display: none;
    padding-left: 20px;
    text-align: center;
  }

  .alpana_header .navbar .dropdown.show>.dropdown-menu {
    display: block;
  }

  .alpana_header .navbar .dropdown .nav-link.dropdown-toggle::after {
    float: right;
    margin-top: 8px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .alpana_header .navbar .dropdown.show>.nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .alpana_header .dropdown-arrow {
    float: right;
    margin-top: 4px;
  }
}

/* Ensure proper spacing and alignment */
.alpana_header .navbar-nav .nav-link {
  padding: 0.5rem 1rem;
}

/* Active state for dropdown items */
.alpana_header .navbar .dropdown-menu .nav-item.active>.nav-link {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 500;
}


.alpana_header a.nav-link.dropdown-toggle::after {
  content: '';
  display: none !important;
}




.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
}


body.nav-open {
  overflow: hidden;
}






.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  font-size: 16px;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ed4609;
}

.alpana-header .alpana-nav-list .nav-link:hover,
.alpana-header .alpana-nav-list .nav-link.active {
  color: #ff6a00;
}

.main-nav {
  border-bottom: #ed4609 1px solid;
}

.navbar.main-nav {
  padding-top: 0px;
  padding-bottom: 0px;
  /* background: #111111; */

}

.navbar-nav .nav-link {
  padding-top: 5px;
  padding-bottom: 0px;
}

.container-fluid {
  padding: 0 60px;
}

.nav-gradient-btn {
  background: linear-gradient(90deg, #ed460a, #f15a07);
  color: #fff;
  border: none;
  padding: 5px 5px 5px 22px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.arrow-circle {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-circle img {
  width: 20px;
}

.nav-gradient-btn:hover {
  background: linear-gradient(90deg, #ff6f00, #f9a825);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-wrapper {
  background: #111;
  padding: 60px 0 60px 0px;
}

.hero-slide {
  width: 100%;
}

.hero-left {
  padding-left: 80px;
  padding-right: 40px;
}

.enquire-btn {
  width: max-content;
}

.hero-right {
  padding-right: 0;
}

@media (max-width: 768px) {
  .hero-left {
    padding: 30px 20px;
  }
}

.highlight {
  color: #f9a825;
}

.hero-wrapper {
  position: relative;
}


.hero-wrapper .flickity-prev-next-button {
  width: 25px;
  height: 25px;
  top: -45px;
  transform: none !important;
  background: rgba(10, 10, 10, 0.9);
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
}

.hero-wrapper .flickity-prev-next-button.previous {
  right: 60px;
  left: auto;
}

.hero-wrapper .flickity-prev-next-button.next {
  right: 20px;
}

.hero-wrapper .flickity-prev-next-button svg {
  width: 12px;
  height: 12px;
}

.header_nav_btn.nav-gradient-btn {
  background: linear-gradient(90deg, #ed460a, #f15a07);
  color: #fff;
  border: none;
  padding: 5px 5px 5px 22px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

/* .search-floating {
  position: absolute;
  bottom: 50px;
  width: 65%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
} */

.search {

  background: #ed4609;
  color: #fff;
  border: none;
  padding: 10px 40px;
  border-radius: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

.location-input .input-group-text {
  background: #b7b7b7;
  border: none;
  border-radius: 6px 0 0 6px;
}

.location-input img {
  width: 16px;
  height: 16px;
}

.fixed-icons .phone {
  position: absolute;
  left: 20px;
  bottom: 30px;
}

.fixed-icons .email {
  position: absolute;
  right: 20px;
  bottom: 30px;
}

.about-section {
  background: #111;
}

.about-points-box {
  padding: 20px 20px;
  border-radius: 4px;
  background: linear-gradient(143.46deg, #CD6F3B -7.22%, #0C0C0C 62.39%);
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about_bottom_row {
  margin-top: 0 !important;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: 'Poppins';
}

.about-points li img {
  width: 18px;
  height: 18px;
}


.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #fff;
  opacity: 0.8;
  cursor: pointer;

}

.text-white h5 {
  margin-bottom: 13px;
  font-size: 18px;
  font-family: 'Roboto';
  line-height: 25px;
}

.text-white p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.text-white h2 {
  margin-bottom: 12px;
  font-size: 30px;

}

.about-inline-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;


  /* display: flex; */
  align-items: center;
  height: 100%;
}

.bottom-text span {
  color: #ed4609;
  margin: 0 4px;

}

.bottom-text {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .bottom-text {
    font-size: 15px;
  }

  .bottom-text span {
    font-size: 18px;
  }
}

.services-section {
  background: #fff8f3;
  padding: 60px 0 25px;
}

.services-heading h2 {
  font-size: 28px;
  font-weight: 700;
}

.services-heading h2 span {
  color: #f45a1d;
}

.services-heading p {
  font-size: 14px;
  color: #222;
  margin-top: 5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* border-top: 1px solid #f3b28f;
  border-left: 1px solid #f3b28f; */
  margin-top: 40px;
}

.service-item {
  text-align: center;
  padding: 30px 15px;
  /* border-right: 1px solid #f3b28f;
  border-bottom: 1px solid #f3b28f; */
}


.icon-circle {
  width: 60px;
  height: 60px;
  background: #f45a1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-circle img {
  width: 28px;
}

.service-item h6 {
  font-size: 14px;
  font-weight: bolder;
  margin-bottom: 12px;
  font-family: 'roboto', sans-serif;
  min-height: 34px;
}

.service-btn {
  background: #f45a1d;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
}

.service-btn:hover {
  background: #ed4609;
  color: #fff;
  cursor: pointer;
}

.counter-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* border-top: 1px solid #f3b28f; */
  /* margin-top: 40px; */
}

.counter-box {
  text-align: center;
  padding: 0px 10px;
  border-right: 1px solid #f3b28f;
}

.counter-box:last-child {
  border-right: none;
}

.counter-box h3 {
  font-size: 90px;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(251, 235, 226, 0.54) 0%, rgba(183, 183, 183, 0.54) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: 'Montserrat';
}

.counter-box p {
  font-size: 13px;
  margin-top: -70px;
  color: #222;
  font-weight: 700;
}

.service-item {
  text-align: center;
  padding: 30px 15px;
  /* border-right: 1px solid rgba(244, 90, 29, 0.25);
  border-bottom: 1px solid rgba(244, 90, 29, 0.25); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  background: linear-gradient(to bottom, #F7E8DF, #FFF8F3);
}


/* Section Title */
.section-title {
  color: #ff4d00;
  font-weight: 700;
}

/* PORTFOLIO  */
.portfolio {
  background: black;
  padding: 60px 0;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.portfolio-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.portfolio-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: #fff;
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.text {
  color: white;
  font-size: 24px;
  margin-top: 8px;
  font-weight: 600;
}

/* BLOGS*/
.blogs {
  background-image: linear-gradient(to bottom, #FFFFFF, #FFE4D5);
  padding: 60px 0;
}

.blog-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.date-badge {
  position: absolute;
  bottom: 30px;
  right: 16px;
  background: #fff;
  padding: 4px 10px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 13px;
  color: #ED4609;
}

.read-more {
  color: #ff4d00;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

body {
  font-family: 'Segoe UI', sans-serif;
}


.section-title {
  color: #ff4d00;
  font-weight: 700;
}

/* CLIENTS */

.clients-section {
  padding: 60px 0 120px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 110px;
  width: 100%;
  object-fit: contain;
  opacity: 0.95;
}

@media (max-width: 1024px) {
  .footer .footer-logo-box::after {
    display: none;
  }
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .footer ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 14px;
    gap: 10px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.clients-section {
  padding: 60px 0 160px;
}

.contact-wrapper {
  position: relative;
  margin-top: -120px;
  margin-bottom: -140px;
  z-index: 5;
}

.contact-box {
  background: #1c1c1c;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-left {
  background: linear-gradient(180deg, #ffe4d5, #ffffff);
  padding: 30px;
  height: 100%;
}

.contact-right {
  padding: 30px;
  color: #fff;
}

.contact-right .form-control {
  border: none;
  color: #fff;
}

.send-btn {
  background: #ff4d00;
  color: #fff;
  padding: 8px 30px;
  border: none;
}



/* FORM */
.contact-right .form-control {
  border: none;
  color: #fff;
}

.send-btn {
  background: linear-gradient(90deg, #ed460a, #f15a07);
  ;
  color: #fff;
  padding: 7px 50px;
  border: none;
}

.send-btn:hover {
  background: linear-gradient(90deg, #ff6f00, #f9a825);
  color: #fff;
}


/*  FAQ  */
.faq-section {
  background: #000;
  padding: 100px 0 60px;
}

.accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 10px;
}

.accordion-button {
  background: linear-gradient(90deg, #ffe4d5, #fff);
  border-radius: 4px;
  font-weight: 600;
}

.accordion-body {
  background: #111;
  color: #fff;
}

.testimonial-section {
  background: #fff5ed;
  padding: 60px 0;
}

.testimonial-section h2 span {
  color: #f45a1d;
}

.sub-text {
  font-size: 14px;
  max-width: 700px;
  margin: 10px auto 40px;
}

.testimonial-card {
  background: linear-gradient(180deg, #000, #2b160a);
  color: #fff;
  padding: 40px;
  margin: 0 14px;
  border-radius: 6px;
  position: relative;

}

.quote-circle {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: #f45a1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-circle img {
  width: 18px;
}

.testimonial-card h5 {
  margin-bottom: 2px;
}

.flickity-viewport {
  overflow: visible !important;
}

.testimonial-slider {
  overflow: hidden;
  padding-top: 30px;
}

.testimonial-slider .testimonial-card {
  width: 48%;
}

.flickity-button-icon {
  fill: #f45a1d;
  width: 22px;
  height: 22px;
}

.flickity-prev-next-button {
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: -10px;
}

.flickity-prev-next-button.next {
  right: -10px;
}

.flickity-button {
  box-shadow: none;
}

.footer {
  /* background: linear-gradient(180deg, #000, #1a0c05); */
  color: #fff;
  padding: 65px 0 0 0;
  background: radial-gradient(17.41% 40.66% at 41.02% -2.55%, #ED4609 0%, #9C2E06 0%, #4C1703 45.86%, #000000 100%);
  position: relative;
}

/* LOGO */
.footer-logo {
  /* width: 140px; */
  width: 215px;
  margin-top: -20px;
}

.footer-logo-box h5 {
  margin-top: 10px;
  font-size: 16px;
}

/* .orange-line {
  width: 50px;
  height: 2px;
  background: #f45a1d;
 margin: 10px 0 10px;
} */

.orange-line {
  margin: 10px 0 10px;
  background: linear-gradient(90deg, #ED460A 0%, #CD6F3B 100%);
  width: 63px;
  height: 4px;
  top: 5234px;
  left: 379px;
  opacity: 1;
  border-radius: 40px;

}

/* LIST */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer .footer-links ul li {
  font-size: 13px;
  margin-bottom: 10px;
}

.footer .footer-links ul li a {
  font-family: Poppins;
  font-weight: 400;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: none;
  color: #fff;
}

.bottom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #f45a1d;
  border-radius: 50%;
  margin-right: 8px;
}

.bottom-icon img {
  width: 16px;
  height: 16px;
}


/* GET IN TOUCH */
.get-touch-row {
  margin-top: 40px;
}

.get-touch-row>div {
  padding-left: 15px;
  padding-right: 15px;
}


.touch-title {
  color: #f45a1d;
}

/* .orange-divider {
  width: 50px;
  height: 2px;
  background: #f45a1d;
  margin: 10px 0 20px;
} */

.get-touch-row p img {
  width: 14px;
  margin-right: 8px;
}

.text {
  color: white;
  font-size: 16px;
  margin-top: 8px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .footer .row.get-touch-row .row.social-row {
    gap: 15px;
  }

  .footer .row.get-touch-row .row.social-row .info-col {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.footer .container.footer-container {
  position: relative;
}

/* SOCIAL */
/* .social-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #f45a1d, transparent);
  margin: 30px 0 20px;
} */

.social-row img {
  width: 18px;
  margin: 0 15px;
  cursor: pointer;
}

.footer-links h6 {
  font-family: Roboto;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;

}

.get-touch-row h6.touch-title {
  font-family: Roboto;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.footer .footer-logo-box {
  position: relative;
  height: 100%;
  /* display: flex;
  align-items: center; */
}

.footer .footer-logo-box::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 0;
  width: 1px;
  height: 90%;
  background-color: #ED4609C9;

}

.footer .get-touch-row .col-lg-4 {
  display: flex;
  align-items: center;
}

.footer .get-touch-row .col-lg-4 a {
  text-decoration: none;
  color: #fff;
}












/* 
.social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.social-divider-line {
  width: 1px;
  height: 30px;
  background: #570B0AB0;
  opacity: 0.6;
  
}

.social-item.linkedin {
  color: #ff6a00;
}

.social-item.linkedin i {
  background: #ff6a00;
  color: #000;
}

.social-item:hover {
  opacity: 0.8;
}


.row.social-row {
      border-right: 1px solid linear-gradient(to right, transparent, #f45a1d, transparent);
} */


.social-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: radial-gradient(circle at center, #2a0f00 0%, #000 65%); */
  padding: 22px 40px;
  margin-top: 20px;
  /* border-top: 1.5px solid #570B0AB0; */
}

/* SOCIAL ITEM */
.social-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.35s ease;
}

/* ICON */
.social-item i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.35s ease;
}

.social-strip .social-item span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin: 0;
  text-align: left;
}

/* DIVIDER */
.social-divider {
  width: 1px;
  height: 32px;
  /* background: linear-gradient(to bottom, transparent, #ff6a00, transparent); */
  opacity: 0.7;
  border-right: 1px solid #570B0AB0;
}

/* 🔥 HOVER EFFECT (LinkedIn style) */
.social-item:hover {
  color: #ff6a00;
}

.social-item:hover i {
  background: #ff6a00;
  color: #000;
}

/* SUBTLE GLOW */
.social-item:hover {
  text-shadow: 0 0 8px rgba(255, 106, 0, 0.6);
}

@media (max-width: 768px) {
  .social-strip {
    flex-direction: column;
    gap: 16px;
  }

  .social-divider {
    display: none;
  }
}

.copyright_section {
  background: linear-gradient(90deg, #ED4609 0%, #9C2E06 100%);
  padding: 15px 0;
}


.copyright_section .copyright-text-row .copyright_col p {
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  text-align: left;
}

.copyright_section .copyright-text-row .declaration_col p {
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  text-align: right;
}


.copyright_section .copyright-text-row .copyright_col p a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.copyright_section .copyright-text-row .declaration_col p a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 820px) {
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
    gap: 5px !important;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }

  .get-touch-row>div {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .nav-gradient-btn {
    display: block;
  }

  .contact-btn-mobile {
    margin: 0 !important;
  }

  .mobile-nav .navbar-nav {
    gap: 15px !important;
  }

  .footer {
    text-align: center;
  }

  .footer .footer-logo-box {
    display: block;
  }

  .orange-line {
    margin: 10px auto 10px;
  }

  .get-touch-row {
    gap: 13px;
  }

  .footer .get-touch-row .col-lg-4 {
    display: inline-block;
  }

  .social-strip {
    flex-wrap: wrap;
    gap: 20px 0;
    flex-direction: row;
  }

  .copyright_section .copyright-text-row .copyright_col p {
    text-align: center;
  }

  .copyright_section .copyright-text-row .declaration_col p {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .header_nav_btn.btn.nav-gradient-btn {
    display: none !important;
  }

  .responsive_navbar.navbar-nav {
    flex-direction: column;
  }

  .responsive_navbar.navbar-nav .nav-gradient-btn {
    display: inline-flex !important;
    align-items: center !important;
    text-align: center;
    justify-content: center;
  }

  .hero-section {
    padding: 0px 0 !important;
  }
}





.hero-section {
  background: radial-gradient(circle at left, #111 0%, #000 60%);
  padding: 40px 0;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

.hero-content h1 {
  font-family: Montserrat;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: 0%;

}

.hero-content h1 span {
  background: radial-gradient(50% 50% at 50% 50%, #E9320C 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.hero-fluid {
  padding-right: 0;
  padding-left: 0;
}

.hero-image-col {
  padding-right: 0;
}

/* Make image touch right edge */
.hero-slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}


.hero-content p {
  margin-top: 20px;
  /* opacity: 0.9; */
  font-family: Roboto;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #FFFFFF;
}

/* .hero-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff6a00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
} */

.hero-btn i {
  background: #fff;
  color: #ff6a00;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider */
.hero-slider img {
  width: 100%;
  /* border-radius: 6px; */
  height: 400px;
  object-fit: cover;
}

/* Arrows */
.hero-arrows {
  position: absolute;
  top: -30px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-arrows button {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 8px;
}

.hero-arrows button:hover {
  background: #ff6a00;
  border-color: #ff6a00;
}

/* Responsive */

@media (max-width: 1024px) {
  .shadow {
    box-shadow: none !important;
  }

  .search-floating.search-floating-wrapper {
    position: unset !important;
    width: 100% !important;
    transform: none !important;
    margin-top: 0 !important;
  }


  /* .search-floating.search-floating-wrapper {
    top: 495px;
    bottom: 0;
  } */
}

@media (max-width: 991px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-arrows {
    top: -35px;
  }

  .search-floating.search-floating-wrapper {
    position: unset;
  }
}

@media (max-width: 820px) {
  .nav-gradient-btn {
    display: inline-flex !important;
    align-items: center !important;
  }
}

.about_bottom_row {
  margin-top: 25px !important;
}

.about_bottom_row .col-lg-4.btn_div {
  text-align: center;
}

.about-inline-text.bottom-text {
  text-align: center;
  padding-top: 20px;
}

/* .search-floating.search-floating-wrapper {
  position: relative;
  bottom: 69px;
  left: 47%;
  width: 65%;

} */
.search-floating.search-floating-wrapper {
  margin-top: -70px;
  /* z-index: 2; */
  position: relative;
  width: 65%;
  transform: translateX(25%);
}

.search-floating.search-floating-wrapper .search.search-btn {
  padding: 6px 40px;
}

.about-section h2 {
  font-family: 'Poppins';
  font-weight: 600;
  font-style: ExtraBold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;

}

.about-section .highlight {
  background: radial-gradient(50% 50% at 50% 50%, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Poppins', sans-serif;

}







.services-section.service_main_wrapper {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F3 100%);
}

.services-section.service_main_wrapper h2 {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-style: ExtraBold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
}

.services-section.service_main_wrapper p {
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;

}



.service-item {
  position: relative;
}

/* RIGHT BORDER */
.service-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg,
      #FFFFFF 0%,
      #ED460A 50%,
      #FFFFFF 100%);
}

/* BOTTOM BORDER */
.service-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      #FFF1EA 0%,
      #ED4609 50%,
      #FFF1EA 100%);
}

@media (min-width: 821px) {
  .service-item:nth-child(5)::after {
    display: none;
  }


  .service-item:nth-child(10)::after {
    display: none;
  }

  .service-item:nth-child(6)::before {
    display: none;
  }

  .service-item:nth-child(7)::before {
    display: none;
  }

  .service-item:nth-child(8)::before {
    display: none;
  }

  .service-item:nth-child(9)::before {
    display: none;
  }

  .service-item:nth-child(10)::before {
    display: none;
  }
}


@media (max-width: 820px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-item {
    border: 2px solid #ED460A;
    border-radius: 10px;
  }

  .service-item::before {
    display: none;
  }

  .service-item::after {
    display: none;
  }

  .counter-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* .counter-box {
    padding: 10px 10px;
  } */

  .counter-box:last-child {
    border-right: 1px solid #f3b28f;
  }

  .service-item h6 {
    font-size: 16px;
  }
}

@media (max-width: 765px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .counter-section {
    grid-template-columns: 1fr;
  }

  .counter-box {
    border: none;
  }

  .counter-box:last-child {
    border: none;
  }
}

section.counter_main_wrap {
  padding: 40px 0;
}


.portfolio.portfolio_main_wrapper h2.section-title {
  font-family: 'Poppins';
  font-size: 32px;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio.portfolio_main_wrapper p.text {
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 18px;
}

.portfolio.portfolio_main_wrapper .portfolio-caption span {
  font-family: Roboto;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  text-align: center;
  color: #2B2B2B;
}

.portfolio.portfolio_main_wrapper .portfolio-caption h5 {
  font-family: Roboto;
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  text-align: center;
  color: #000;
  margin: 0;
}

.portfolio.portfolio_main_wrapper .wide_column,
.portfolio.portfolio_main_wrapper .narrow_column {
  transition: all 0.3s ease;
}

.portfolio.portfolio_main_wrapper .portfolio-card img {
  height: 260px;
  object-fit: cover;
  width: 100%;
  object-position: center;
  transition: transform 0.6s ease,
    filter 0.6s ease;
  transform: scale(1);
  filter: grayscale(0);
}

.portfolio.portfolio_main_wrapper .portfolio-card img:hover {
  filter: grayscale(1);
  transition: all 346ms ease-in-out;
  transform: scale(1.08);
  filter: grayscale(100%);
}

@media (max-width: 829px) {

  .portfolio.portfolio_main_wrapper .wide_column,
  .portfolio.portfolio_main_wrapper .narrow_column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {

  .portfolio.portfolio_main_wrapper .wide_column,
  .portfolio.portfolio_main_wrapper .narrow_column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .portfolio.portfolio_main_wrapper .port_div {
    display: flex !important;
  }
}

/* .portfolio.portfolio_main_wrapper.service_portfolio_main_wrapper .port_div a.btn.nav-gradient-btn.service_enquire_btn {
  display: none !important;
} */


.blogs.blogs_main_wrapper h2.section-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blogs.blogs_main_wrapper p.text-muted {
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  color: #000000 !important;
}

.blogs.blogs_main_wrapper .p-3.blog_content_wrapper {
  padding-top: 0 !important;
}

.blogs.blogs_main_wrapper .p-3.blog_content_wrapper h6.blog_title {
  font-family: Roboto;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 53px;
}

.blogs.blogs_main_wrapper .p-3.blog_content_wrapper p.blog_para {
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  color: #2E2E2E !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 75px;
}

.blogs.blogs_main_wrapper .blog-card:hover {
  box-shadow: 0 10px 23px rgb(67 67 67 / 47%);
}

/* .blogs.blogs_main_wrapper .p-3.blog_content_wrapper a.read-more {
    font-family: Roboto;
    font-weight: 600;
    font-size: 16px;
     background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.blogs.blogs_main_wrapper .p-3.blog_content_wrapper a.read-more {
  position: relative;
  display: inline-block;
}

/* underline */
.blogs.blogs_main_wrapper .p-3.blog_content_wrapper a.read-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  transition: width 0.35s ease;
}

/* hover */
.blogs.blogs_main_wrapper .p-3.blog_content_wrapper a.read-more:hover::after {
  width: 100%;
}

.blogs.blogs_main_wrapper .p-3.blog_content_wrapper a.read-more {
  transition: transform 0.3s ease;
}

.blogs.blogs_main_wrapper .p-3.blog_content_wrapper a.read-more:hover {
  transform: translateX(6px);
  text-decoration: none;
}


@media (max-width: 1023px) {
  .blogs.blogs_main_wrapper .blog-card {
    height: 100%;
  }

  .blogs.blogs_main_wrapper .row.g-4>div[class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .blogs.blogs_main_wrapper .row.g-4>div[class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.clients-section.client_main_wrapper {
  padding: 60px 0 160px;
}

.clients-section.client_main_wrapper h2.section-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.clients-section.client_main_wrapper .client-slider {
  padding: 0 10px;
}

.clients-section.client_main_wrapper .client_logo {
  padding: 0 15px;
  /* text-align: center; */
  text-align: -webkit-center;
}

.clients-section.client_main_wrapper .client_logo img {
  max-width: 140px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: cover;
  /* filter: grayscale(60%); */
  transition: all 0.3s ease;
}

.clients-section.client_main_wrapper .client_logo img:hover {
  /* filter: grayscale(0%); */
  transform: scale(1.08);
}

/* Hide default arrows - optional */
.clients-section.client_main_wrapper .slick-prev,
.clients-section.client_main_wrapper .slick-next {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.4) !important;
  border-radius: 50%;
  z-index: 10;
}

.clients-section.client_main_wrapper .slick-prev:before,
.clients-section.client_main_wrapper .slick-next:before {
  font-family: "slick";
  font-size: 30px;
  color: white;
}

.clients-section.client_main_wrapper .slick-prev {
  left: 10px !important;
}

.clients-section.client_main_wrapper .slick-next {
  right: 10px !important;
}

/* RTL row - reverse direction */
.clients-section.client_main_wrapper .slider-rtl {
  direction: rtl;
}

.clients-section.client_main_wrapper .slider-rtl .slick-track {
  direction: rtl;
}


@media (max-width: 1024px) {
  .clients-section.client_main_wrapper {
    padding: 60px 0;
  }
}






.contact-wrapper.contact_main_wrapper {
  position: relative;
  margin-top: -80px;
  /* margin-bottom: -215px; */
  z-index: 5;
}

.contact-wrapper.contact_main_wrapper h5.contact_title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  color: #000;
}

.contact-wrapper.contact_main_wrapper .divider {
  border: 2px solid #000000;
  width: 45%;
  margin: 15px 0;
}

.contact-wrapper.contact_main_wrapper .contact-left .small_para h4 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #000;
}

.contact-wrapper.contact_main_wrapper .contact-left .small_para p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  line-height: 21px;
}

.contact-wrapper.contact_main_wrapper .contact-right h5.talk_title {
  font-family: Poppins;
  font-weight: 400;
  font-size: 38px;
  line-height: 24px;
  color: #fff;
  padding-bottom: 15px;
}

.contact-wrapper.contact_main_wrapper .contact-right p {
  color: #fff;
  font-family: Poppins;
  font-weight: 400;
  font-size: 17px;
  line-height: 19px;
}


.contact-wrapper.contact_main_wrapper .contact-left {
  padding: 30px;
  height: 100%;
  background: linear-gradient(360deg, #FFD3BB 0%, #FFFFFF 100%);
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}



.contact-wrapper.contact_main_wrapper .contact-right {
  padding: 15px 30px;
  color: #fff;
}



@media (max-width: 1024px) {
  .contact-wrapper.contact_main_wrapper {
    background: #1c1c1c;
    position: unset;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 5;
    padding: 60px 0;
  }
}

@media (max-width: 820px) {
  .contact-wrapper.contact_main_wrapper .contact-right {
    padding: 30px 15px;
  }

  .contact-wrapper.contact_main_wrapper .contact-left {
    padding: 30px 15px;
  }
}



.faq-section.faq_main_wrapper {
  background: #000;
  padding: 180px 0 60px;
}

.faq-section.faq_main_wrapper h2.section-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-section.faq_main_wrapper .accordion-button {
  border-radius: 3px !important;
  font-weight: 600;
  background: linear-gradient(90deg, #FFF4EE 0%, #FFF0E7 100%);
  font-family: Poppins;
  font-weight: 500;
  font-size: 17px;
  color: #000;
}

.faq-section.faq_main_wrapper .accordion-body {
  color: #fff;
  background: linear-gradient(90deg, #FFF4EE 0%, #FFF0E7 100%);
  border-top: 2px solid #ED460A;
  opacity: 1;
  border-radius: 3px;
  /* border-top-width: 1px; */
  font-family: Poppins;
  font-weight: 500;
  font-size: 15px;
  color: #000;
  padding: 25px 20px;
}

.faq-section.faq_main_wrapper .accordion-item {
  margin-bottom: 15px;
}

.faq-section.faq_main_wrapper .accordion-button:focus {
  box-shadow: none;
}



.faq-section.faq_main_wrapper .accordion .collapsing {
  transition: height 0.45s ease, visibility 0.45s ease !important;
}

@media (prefers-reduced-motion: reduce) {
  .faq-section.faq_main_wrapper .collapsing {
    transition: height 0.45s ease, visibility 0.45s ease !important;
  }
}

/* .faq-section.faq_main_wrapper .accordion-body {
  padding: 1.25rem 1.5rem;         
} */

.faq-section.faq_main_wrapper .accordion .collapse {
  transition: none;
}

.faq-section.faq_main_wrapper .accordion .collapsing {
  transition: max-height 0.5s ease;
  /* ← change duration here */
  overflow: hidden;
}

.faq-section.faq_main_wrapper .accordion .collapse.show {
  max-height: 800px;

}


@media (max-width: 1024px) {
  .faq-section.faq_main_wrapper {
    background: #000;
    padding: 60px 0;
  }
}

.testimonial-section.testimonial_main_wrapper {
  background: linear-gradient(360deg, #FFFFFF 0%, #FFF1E9 100%);

}

.testimonial-section.testimonial_main_wrapper h2.testimonial_title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  color: #000;
}

.testimonial-section.testimonial_main_wrapper h2.testimonial_title span {
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-section.testimonial_main_wrapper p.sub-text {
  max-width: 1000px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}

.testimonial-section.testimonial_main_wrapper .testimonial-slider .testimonial-card {
  width: 100%;
  margin: 0 auto;
  max-height: 100px;
}

.testimonial-section.testimonial_main_wrapper .testimonial-slider {
  padding-top: 0;
}

.testimonial-section.testimonial_main_wrapper .testimonial-card-wrapper {
  margin-top: 25px;
}

.testimonial-section.testimonial_main_wrapper .testimonial-card {
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
  min-height: 300px;
  position: relative;
  background: linear-gradient(129.38deg, #000000 51.04%, #45200B 117.72%);
}

.testimonial-section.testimonial_main_wrapper h6.name {
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  /* padding-bottom: 10px; */
}

.testimonial-section.testimonial_main_wrapper p.tes_para {
  font-family: Poppins;
  font-weight: 400;
  font-size: 17px;
  line-height: 32px;
  text-align: left;
  color: #FFD3BB;
}

.testimonial-section.testimonial_main_wrapper p.testimonial-text {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #fff;
}

.testimonial-section.testimonial_main_wrapper .quote-icon {
  width: 50px;
  height: 50px;
  background: #ff7a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-section.testimonial_main_wrapper .quote-icon img {
  width: 22px;
}

.testimonial-section.testimonial_main_wrapper .slick-dots {
  display: block !important;
  position: unset !important;
  margin-top: 20px;
}


.testimonial-section.testimonial_main_wrapper .slick-dots li button:before {
  font-size: 40px;
}

.testimonial-section.testimonial_main_wrapper .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ee480a;
}












































section.counter_main_wrap.about_counter_main_wrapper {
  padding: 30px 0 60px;
}




.portfolio.portfolio_main_wrapper.macbook_portfolio_main_wrapper {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFECE1 100%);

}

.portfolio.portfolio_main_wrapper.macbook_portfolio_main_wrapper p.text {
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}

section.clients-section.client_main_wrapper.macbook_client_main_wrapper {
  padding: 60px 0 30px;
}

section.contact-wrapper.contact_main_wrapper.macbook_contact_main_wrapper {
  margin-top: 0;
  margin-bottom: 0;
  z-index: unset;
  position: unset;
  padding: 30px 0 60px;
}





.process-section {
  color: #fff;
  background: #000000;
  padding: 60px 0;
}


.process-section .process-pill {
  display: inline-block;
  padding: 4px 35px;
  color: #ff6a00;
  border-radius: 27px;
  background: #F8E5DA;
  border: 1px solid #ED460A;
}

.process-section .process-pill p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.process-section .process-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-family: Roboto;
  font-weight: 500;
  font-size: 17px;
  color: #fff;
}


.process-section .process-card {
  color: #000;
  padding: 25px;
  border-radius: 4px;
  text-align: left;
  position: relative;
  height: 100%;
}

.process-section .straight_bg .process-card {
  color: #000;
  padding: 20px;
  border-radius: 4px;
  text-align: left;
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #FFD3BB 0%, #FFFFFF 100%);
}

.process-section .vice_bg .process-card {
  background: linear-gradient(360deg, #FFD3BB 0%, #FFFFFF 100%);

}

.process-section .process-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(180deg, #F15A07 0%, #9C2E06 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.process-section .process-icon img {
  width: 28px;
  height: auto;
  display: block;
}


.process-section .process-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: Protest Strike;
  font-weight: 400;
  font-size: 67px;

}

.process-section .straight_bg .process-number {
  color: #FFFFFF6E;
}

.process-section .vice_bg .process-number {
  color: #ED460921;

}

.process-section .process-card h5 {
  font-family: Roboto;
  font-weight: 600;
  font-size: 20px;
  min-height: 50px;
  color: #000000;
}

.process-section .process-card p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
}




.train-branding-section {
  padding: 60px 0;
  background: linear-gradient(360deg, #FFFFFF 0%, #FFE8DC 100%);

}

.train-branding-section .left_col {
  padding-right: 20px;
}

.train-branding-section h2.section-title {
  font-family: Roboto;
  font-weight: 600;
  font-size: 28px;
  background: linear-gradient(90deg, #ED460A 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.train-branding-section p.section-para.section_para {
  font-weight: 700;
  font-size: 16px
}

.train-branding-section .content {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

.train-branding-section .content .highlight-text {
  color: #ff5a00;
  font-weight: 600;
}

.train-branding-section .gradient-frame::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 45%;
  height: 45%;
  background: linear-gradient(180deg, #ED460A 0%, #CD6F3B 100%);
  z-index: 0;
}

.train-branding-section .gradient-frame::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 45%;
  height: 45%;
  background: linear-gradient(180deg, #ED460A 0%, #CD6F3B 100%);
  z-index: 1;
}


.train-branding-section .gradient-frame {
  position: relative;
  display: inline-block;
}

/* Image itself */
.train-branding-section .gradient-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
}

.train-branding-section .gradient-frame img.img-fluid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
}


@media (max-width: 820px) {
  .train-branding-section .right_col {
    text-align: center;
  }
}


section.clients-section.client_main_wrapper.service_client_main_wrapper {
  padding: 60px 0 30px;
}

section.contact-wrapper.contact_main_wrapper.service_contact_main_wrapper {
  margin: 0;
  padding: 30px 0 60px;
}











.service-banner {
  background: #111111;
  overflow: hidden;
  padding-top: 20px;
}

.service-banner .service-left .service-content h1.title {
  font-family: Roboto;
  font-weight: 600;
  font-size: 40px;
  background: linear-gradient(90deg, #ED460A 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-banner .service-left .service-content p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

.service-banner .service-left {
  min-height: 280px;
  display: flex;
  align-items: center;
}

.service-banner .service-content {
  padding: 60px;
  color: #fff;
}

.service-banner .service-right {
  position: relative;
  min-height: 280px;
}

.service-banner .service-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-banner .service-right {
  position: relative;
}

.service-banner .service-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-banner .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.service-banner .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-banner .service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/service_air.png") no-repeat center center;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
  opacity: 74%;
}

@media (max-width: 1024px) {
  .service-banner .service-left {
    min-height: auto;
  }

  .service-banner .service-right {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .service-banner .service-content {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .service-banner .service-content {
    padding: 15px;
  }
}

















.about-company-section {
  background: linear-gradient(0deg, #FFFFFF 0%, #FEF1EA 100%);
  padding: 60px 0;
}

.about-company-section .process-pill {
  display: inline-block;
  padding: 4px 35px;
  color: #ff6a00;
  border-radius: 27px;
  background: #F8E5DA;
  border: 1px solid #ED460A;
}

.about-company-section .process-pill p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.about-company-section h2.about-title {
  font-family: Roboto;
  font-weight: 500;
  font-size: 20px;
  color: #000;
}

.about-company-section .content {
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

/* highlights */
.about-company-section .highlight-text {
  color: #ff5a00;
  font-weight: 600;
}

/* image card */
.about-company-section .about-image-wrapper {
  max-width: 950px;
  background: #000;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.about-company-section .about-image-wrapper img {
  border-radius: 10px;
  width: 100%;
}

.about-company-section .service-image {
  position: relative;
  width: 85%;
  height: 80%;
  margin: 0 auto;
  margin-top: 30px;
}

.about-company-section .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about-company-section .service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/service_air.png") no-repeat center center;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
  opacity: 74%;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .about-company-section .service-image {
    width: 100%;
    height: 100%;
  }
}









.vision-mission-section {
  width: 100%;
}

.vision-mission-section .vision-content {
  padding: 30px 60px;
  color: #fff;
}

.vision-mission-section .vm-title {
  margin-bottom: 15px;
  position: relative;
  font-family: Roboto;
  font-weight: 600;
  font-size: 32px;
  text-align: left;

}

.vision-mission-section .vm-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 20px;
}

.vision-mission-section .vm-subtitle {
  margin: 25px 0 15px;
  font-family: Roboto;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
}

.vision-mission-section .vision-content p {
  font-family: Roboto;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}

.vision-mission-section .vision-box {
  background: linear-gradient(90deg, #ED460A 0%, #F15A07 100%);
}

.vision-mission-section .mission-box {
  position: relative;
  background-color: #0b0b0b;
  background-image: url("../images/mission_bg.png");
  color: #fff;
  object-fit: cover;
}

.vision-mission-section .mission-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.vision-mission-section .mission-box .vision-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .vision-mission-section .vision-content {
    padding: 30px 30px;
  }
}


















/* SECTION */
.why-choose-section {
  background: linear-gradient(360deg, #FFFFFF 0%, #FEF1EA 100%);
  padding: 60px 0 30px;
}

.why-choose-section .process-pill {
  display: inline-block;
  padding: 4px 35px;
  color: #ff6a00;
  border-radius: 27px;
  background: #F8E5DA;
  border: 1px solid #ED460A;
}

.why-choose-section .process-pill p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(237, 70, 9) 0%, rgb(205, 111, 59) 100%) text;
  margin: 0px;
}

.why-choose-section .why-title {
  font-family: Roboto;
  font-weight: 600;
  font-size: 32px;
}

.why-choose-section .why-title span {
  background: linear-gradient(90deg, #ED460A 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-choose-section p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

.why-choose-section a.contact-btn {
  width: max-content;
  text-decoration: none;
  background: linear-gradient(90deg, #ed460a, #f15a07);
  color: #fff;
  border: none;
  padding: 5px 5px 5px 22px;
  border-radius: 50px;
  font-weight: 500;
}

.why-choose-section a.contact-btn:hover {
  background: linear-gradient(90deg, #ff6f00, #f9a825);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* .feature-item {
  position: relative;
  padding-left: 60px;
} */
.why-choose-section .title_box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.why-choose-section .feature-img {
  /* position: absolute; */
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ED4609 0%, #F15A07 100%);

}

.why-choose-section .feature-img img {
  width: 25px;
  filter: brightness(0) invert(1);
}

.why-choose-section .title_box .feature-img h5 {
  font-family: Roboto;
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  margin-bottom: 0px;
}

.why-choose-section .feature_column {
  padding: 15px;
}

.why-choose-section .feature_column::before {
  content: "";
  position: absolute;
  top: 225px;
  width: 24%;
  height: 3px;
  background: linear-gradient(90deg,
      #FFFFFF 0%,
      #ED460A 50%,
      #FFFFFF 100%);
  display: none;
}

@media (max-width: 1024px) {
  .why-choose-section .feature_column::before {
    display: none;
  }
}





















.contact-info-section.contact_info_wrapper {
  color: #fff;
  background: #000000;
  padding: 60px 0;
}

.contact-info-section.contact_info_wrapper .process-pill {
  display: inline-block;
  padding: 4px 35px;
  color: #ff6a00;
  border-radius: 27px;
  background: #F8E5DA;
  border: 1px solid #ED460A;
}

.contact-info-section.contact_info_wrapper .process-pill p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}


.contact-info-section.contact_info_wrapper .info-box {
  color: #000;
  padding: 20px;
  border-radius: 4px;
  text-align: left;
  position: relative;
  height: 100%;
  transition: .3s ease;
  background: linear-gradient(180deg, #FFD3BB 0%, #FFFFFF 100%);
}

.contact-info-section.contact_info_wrapper .info-box.bg_dark_color {
  background: linear-gradient(360deg, #FFD3BB 0%, #FFFFFF 100%);
}

.contact-info-section.contact_info_wrapper .info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ED460A 0%, #F15A07 100%);
  border-radius: 4px 4px 0px 0px;
}

.contact-info-section.contact_info_wrapper .info-box:hover {
  background: linear-gradient(360deg, #FFD3BB 0%, #FFFFFF 100%);
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(241, 90, 7, .6);
}

.contact-info-section.contact_info_wrapper .info-box.bg_dark_color:hover {
  background: linear-gradient(180deg, #FFD3BB 0%, #FFFFFF 100%);
}

.contact-info-section.contact_info_wrapper .info-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
  background: linear-gradient(180deg, #F15A07 0%, #9C2E06 100%);
}

.contact-info-section.contact_info_wrapper .info-box h6 {
  font-family: Roboto;
  font-weight: 600;
  font-size: 20px;
  color: #000000;
}

.info-box a {
  text-decoration: none;
  line-height: 1.6;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

.contact-info-section.contact_info_wrapper .info-box:hover a {
  background: linear-gradient(90deg, #ED460A 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: 600;
}

.contact-info-section.contact_info_wrapper .process-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: emoji;
  font-weight: 400;
  font-size: 67px;
  color: #f1590842;
}











.contact-main.contact_main_wrpaper .contact-form-box {
  background: #1c1c1c;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: 30px;
}

.contact-main.contact_main_wrpaper .contact-form-box h3 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 38px;
  line-height: 24px;
  color: #fff;
  padding-bottom: 15px;
}

.contact-main.contact_main_wrpaper .contact-form-box p {
  color: #fff;
  font-family: Poppins;
  font-weight: 400;
  font-size: 17px;
  line-height: 19px;
}

.contact-main.contact_main_wrpaper .contact-form-box input {
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 7px 10px;
}

.contact-main.contact_main_wrpaper .contact-form-box textarea {
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
}

.contact-main.contact_main_wrpaper .contact-form-box input:focus {
  box-shadow: none;
}

.contact-main.contact_main_wrpaper .contact-form-box textarea:focus {
  box-shadow: none;
}

.contact-main.contact_main_wrpaper .contact-form-box button {
  width: 100%;
  font-weight: 600;
  background: linear-gradient(90deg, #ed460a, #f15a07);
  color: #fff;
  padding: 7px 50px;
  border: none;
  border-radius: 8px;
}

.contact-main.contact_main_wrpaper .contact-form-box button:hover {
  background: linear-gradient(90deg, #ff6f00, #f9a825);
  color: #fff;
}

.contact-main.contact_main_wrpaper .contact-form-box p input.wpcf7-submit.submit_btn {
  width: 100%;
  font-weight: 600;
  background: linear-gradient(90deg, #ed460a, #f15a07);
  color: #fff;
  padding: 10px 50px;
  border: none;
  border-radius: 8px;
}

.contact-main.contact_main_wrpaper .contact-form-box p input.wpcf7-submit.submit_btn:hover {
  background: linear-gradient(90deg, #ff6f00, #f9a825);
  color: #fff;
}

.contact-main.contact_main_wrpaper .contact-form-box p .wpcf7-spinner {
  display: none;
}

.map.contact_map_wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

@media (max-width: 1024px) {
  .contact-main.contact_main_wrpaper {
    padding: 40px 0;
  }
}





.clients-section.client_main_wrapper.gallery_client_wrapper {
  padding: 60px 0;
}










.gallery_main_wrapper {
  padding: 60px 0;
  background-image: linear-gradient(to bottom, #FFFFFF, #ffeee5);
}

.gallery_main_wrapper .section-title {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
}

.gallery_main_wrapper .section-sub {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #000000;
  text-align: center;
}

.gallery_main_wrapper .filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  margin-top: 40px;
}


.gallery_main_wrapper .filter-btn {
  padding: 5px 20px;
  /* border-radius: 50px; */
  /* background: #f0550829; */
  /* border: 2px solid #ED460A; */
  /* color: #000; */
  font-size: 16px;
  font-weight: 500;

  color: #ff6a00;
  border-radius: 27px;
  background: #F8E5DA;
  border: 1px solid #ED460A;
}

.gallery_main_wrapper .filter-btn:hover {
  /* background: linear-gradient(90deg, #ff6f00, #f9a825);
  border: 1px solid #ffffff00;
  color: #fff; */

  background: linear-gradient(90deg, #ff6f00, #f9a825);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  border: none;
}

.gallery_main_wrapper .filter-btn.active {
  background: linear-gradient(90deg, #ED460A 0%, #F15A07 100%);
  border: none;
  color: #fff;
}

/* ================= GRID ================= */
.gallery_main_wrapper .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media(max-width:992px) {
  .gallery_main_wrapper .gallery {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:576px) {
  .gallery_main_wrapper .gallery {
    grid-template-columns: repeat(1, 1fr)
  }
}

/* ================= CARD ================= */
.gallery_main_wrapper .gallery-card {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid #cccccc70;
}

.gallery_main_wrapper .gallery-card:hover {
  border: none;
}

.gallery_main_wrapper .gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: .4s ease;
}

.gallery_main_wrapper .gallery-card:hover img {
  transform: scale(1.06);
}

.gallery_main_wrapper .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgb(0 0 0));
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: .3s ease;
}

.gallery_main_wrapper .gallery-card:hover .card-overlay {
  opacity: 1;
}

.gallery_main_wrapper .card-overlay h6 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.gallery_main_wrapper .card-overlay span {
  font-size: 14px;
  color: #d8d8d8;
  font-weight: 500;
  font-family: 'Montserrat';
}

.gallery_main_wrapper .load-more {
  text-align: center;
  margin-top: 50px;
}

.gallery_main_wrapper .load-more button {
  background: linear-gradient(90deg, #ED460A 0%, #F15A07 100%);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

.gallery_main_wrapper .load-more button:hover {
  background: linear-gradient(90deg, #ff6f00, #f9a825);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ================= MODAL (IMAGE-SIZED) ================= */
.gallery_main_modal .modal-backdrop.show {
  background: rgba(0, 0, 0, .45);
}

.gallery_main_modal .modal-dialog {
  max-width: unset;
  width: auto;
}

.gallery_main_modal .modal-content {
  background: #000;
  border-radius: 8px;
  padding: 25px;
  width: fit-content;
  margin: auto;
}

.gallery_main_modal .lightbox-img {
  max-width: 90vw;
  max-height: 75vh;
  display: block;
  margin: auto;
}

/* Close */
.gallery_main_modal .lightbox-close {
  position: absolute;
  top: -6px;
  right: 7px;
  font-size: 25px;
  cursor: pointer;
  color: #fff;
}

.gallery_main_modal .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  user-select: none;
}

.gallery_main_modal .lb-prev {
  left: 0px;
}

.gallery_main_modal .lb-next {
  right: 0px;
}

.lb-details {
  margin-top: 14px;
}

.gallery_main_modal .lb-details h6 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.gallery_main_modal .lb-details small {
  font-size: 14px;
  color: #d8d8d8;
  font-weight: 500;
  font-family: 'Montserrat';
  margin: 0;
}

.gallery_main_modal .lb-details p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Montserrat';
  margin: 0;
}


@media (max-width: 767px) {
  .gallery_main_modal .modal-content {
    padding: 12px;
  }

  .gallery_main_modal .lb-nav {
    font-size: 20px;
  }

  .gallery_main_modal .lightbox-close {
    top: -13px;
    right: 3px;
    font-size: 23px;
  }
}























.career_section_wrapper {
  padding: 60px 0;
  background: linear-gradient(360deg, #FFFFFF 0%, #FEF1EA 100%);
}

.career_section_wrapper .career-intro h2 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* .career_section_wrapper .career-intro h2 span {
  background: linear-gradient(90deg, #ff6f00, #f9a825);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.career_section_wrapper .career-intro p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

.career_section_wrapper .apply-wrapper {
  position: relative;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(90deg, #ff6f00, #f9a825, #ff6f00);
  background-size: 300% 300%;
  animation: borderMove 6s linear infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.career_section_wrapper .apply-panel {
  padding: 20px;
  background: #1c1c1c;
  border-radius: 8px;
}

.career_section_wrapper .apply-panel h4 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  padding-bottom: 5px;
}

.career_section_wrapper .apply-panel p {
  color: #fff;
  font-family: Poppins;
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
}

.career_section_wrapper .form-label {
  font-size: 13px;
  color: #fff;
  margin-bottom: 6px;
}

.career_section_wrapper .form-control {
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 10px;
}

.career_section_wrapper .form-select {
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
}

.career_section_wrapper .form-control::placeholder {
  color: #777;
}

.career_section_wrapper .form-control:focus {
  border-color: #f9a825;
  box-shadow: none;
  background: #0e0e0e;
  color: #fff;
}


.career_section_wrapper .form-select:focus {
  border-color: #f9a825;
  box-shadow: none;
  background: #0e0e0e;
  color: #fff;
}

.career_section_wrapper .file-box {
  border: 2px dashed #2b2b2b;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  color: #aaa;
  cursor: pointer;
}

.career_section_wrapper .file-box:hover {
  border-color: #f9a825;
}

.career_section_wrapper .file-box input {
  display: none;
}

.career_section_wrapper .btn-apply {
  width: 100%;
  font-weight: 600;
  background: linear-gradient(90deg, #ed460a, #f15a07);
  color: #fff;
  padding: 10px 50px;
  border: none;
  border-radius: 8px;
}

.career_section_wrapper .btn-apply:hover {
  background: linear-gradient(90deg, #ff6f00, #f9a825);
  color: #fff;
}

@media(max-width:991px) {
  .career_section_wrapper .apply-wrapper {
    margin-top: 50px;
  }
}














.prime_locations_main_wrapper {
  background: #fff;
  padding: 60px 0;
}

.prime_locations_main_wrapper .content_box .section-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* margin-bottom: 25px; */
}

.prime_locations_main_wrapper .content_box p {
  text-align: center;
  font-family: Roboto;
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

.prime_locations_main_wrapper .content_box {
  margin-bottom: 30px;
}

.prime_locations_main_wrapper .location-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform .35s ease, box-shadow .35s ease;
}

.prime_locations_main_wrapper .location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgb(0 0 0 / 32%);
}

.prime_locations_main_wrapper .location-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.prime_locations_main_wrapper .location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.prime_locations_main_wrapper .location-overlay h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.prime_locations_main_wrapper .view-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* background: linear-gradient(90deg, #ff6f00, #f9a825); */
  background: linear-gradient(90deg, #ed460a, #f15a07);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
}

.prime_locations_main_wrapper .location-card:hover .view-map {
  background: linear-gradient(90deg, #ff6f00, #f9a825);
}

.prime_locations_main_wrapper .view-map i {
  font-size: 14px;
}


@media (max-width: 575px) {
  .prime_locations_main_wrapper .location-card img {
    height: 220px;
  }
}






.alpana_railway_routes_section {
  background-color: #FFF8F3;
  /* soft off-white, like handmade paper */
  font-family: 'Poppins', sans-serif;
  padding: 60px 0;
}

/* main container – subtle art background */
/* .alpana_railway_routes_section .alpana-locations {
  background: #fff8f1b3;
  backdrop-filter: blur(2px);
  border-radius: 3rem 3rem 2rem 2rem;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 20px 30px -15px rgba(140, 90, 40, 0.2);
  border: 1px solid #eedbc8;
} */

/* section heading – artistic yet clean */
.alpana_railway_routes_section .section-title {
  font-family: 'Poppins';
  font-weight: 500;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
  font-size: 2.8rem;
  /* letter-spacing: 1px; */
  position: relative;
  display: inline-block;
}

.alpana_railway_routes_section .section-title span {
  color: #f45a1d;
}

.alpana_railway_routes_section .section-title i {
  color: #b67e55;
  font-size: 2.4rem;
  margin-right: 12px;
  background: #fff0de;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px #e7d3be;
}

.alpana_railway_routes_section .subhead {
  color: #866649;
  border-left: 5px solid #d4a373;
  padding-left: 1.2rem;
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(to right, #fffcf8, transparent);
  border-radius: 0 100px 100px 0;
}

/* cards – like art gallery panels */
.alpana_railway_routes_section .art-card {
  background: white;
  border: none;
  border-radius: 2rem 2rem 1.8rem 1.8rem;
  box-shadow: 0 15px 25px -12px rgba(110, 70, 30, 0.18);
  transition: transform 0.25s ease, box-shadow 0.3s;
  height: 100%;
  overflow: hidden;
  backdrop-filter: blur(4px);
  border: 1px solid #f5e1cf;
}

.alpana_railway_routes_section .art-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 35px -14px #b98f67;
}

.alpana_railway_routes_section .card-header-art {
  background: #fcf2e7;
  border-bottom: 3px dashed #ff7e05;
  padding: 1.4rem 1rem 1rem 1rem;
  text-align: center;
}

.alpana_railway_routes_section .card-header-art h3 {
  font-family: 'Poppins';
  font-weight: 600;
  color: #4f3a26;
  font-size: 25px;
  /* letter-spacing: 1px; */
  margin: 0;
}

.alpana_railway_routes_section .card-header-art h3 i {
  color: #ff7e05;
  margin-right: 8px;
  font-size: 1.8rem;
}

.alpana_railway_routes_section .region-tag {
  font-size: 15px;
  background: #ffe1c5;
  color: #4d321d;
  border-radius: 40px;
  padding: 0.2rem 1.2rem;
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 300;
  border: 1px solid #ff7e05;
}

/* station list – elegant spacing */
.alpana_railway_routes_section .station-scroll {
  max-height: 360px;
  overflow-y: auto;
  padding: 1rem 1.2rem 0.8rem 1.2rem;
  margin: 0;
  background: #fefcf9;
  scrollbar-width: thin;
  scrollbar-color: #bf8c5e #ff7e0514;
}

.alpana_railway_routes_section .station-scroll ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alpana_railway_routes_section .station-scroll li {
  padding: 0.5rem 0 0.5rem 2rem;
  border-bottom: 1px solid #f0ddce;
  color: #3d2f22;
  font-weight: 400;
  position: relative;
  transition: background 0.1s;
  font-size: 1.05rem;
}

.alpana_railway_routes_section .station-scroll li:last-child {
  border-bottom: none;
}

/* artistic bullet: alpana-style dot */
.alpana_railway_routes_section .station-scroll li::before {
  content: "⦿";
  /* artistic circle */
  font-size: 1rem;
  color: #ff7e05;
  position: absolute;
  left: 0.2rem;
  top: 0.45rem;
  opacity: 0.9;
  text-shadow: 1px 1px 0 #ffe7d6;
  font-style: normal;
}

/* special for branch info */
.alpana_railway_routes_section .branch-note {
  background: #ffe1c5;
  padding: 6px 10px;
  /* margin: 0 1rem 1rem 1rem; */
  border-radius: 50px;
  font-size: 12px;
  color: #574d45;
  border: 1px solid #ff7e05;
  text-align: center;
}

.alpana_railway_routes_section .branch-note i {
  color: #b57948;
}

.alpana_railway_routes_section .badge-counter {
  background: #e7cfb9;
  color: #3e2c1b;
  border-radius: 50px;
  padding: 0.2rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 400;
  border: 1px solid #cfa776;
}

.alpana_railway_routes_section .footer-art {
  border-top: 2px double #ddb58c;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #6d533b;
}

.alpana_railway_routes_section .footer-art i {
  color: #b57848;
  margin-right: 5px;
}

/* adapt for mobile */
@media (max-width: 576px) {
  .alpana_railway_routes_section .section-title {
    font-size: 2.2rem;
  }

  .alpana_railway_routes_section .card-header-art h3 {
    font-size: 1.6rem;
  }
}










.trusted-section.client_trusted_main_wrapper {
  padding: 60px 0 30px;
  background: linear-gradient(360deg, #FFFFFF 0%, #FEF1EA 100%);
}

.trusted-section.client_trusted_main_wrapper .section-title h2 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.trusted-section.client_trusted_main_wrapper .section-title p {
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  text-align: center;
}

/* Logo Grid */
.trusted-section.client_trusted_main_wrapper .logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.trusted-section.client_trusted_main_wrapper .logo-card {
  /* background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08); */
  border-radius: 8px;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;

  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 10px 20px rgb(255 107 53 / 29%);
}

.trusted-section.client_trusted_main_wrapper .logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.trusted-section.client_trusted_main_wrapper .logo-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.trusted-section.client_trusted_main_wrapper .logo-card:hover::before {
  opacity: 1;
}

.trusted-section.client_trusted_main_wrapper .logo-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 20px; */
  position: relative;
  z-index: 1;
}

.trusted-section.client_trusted_main_wrapper .logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  /* filter: brightness(0) invert(1); */
  opacity: 0.9;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.trusted-section.client_trusted_main_wrapper .logo-card:hover .logo-container img {
  opacity: 1;
  transform: scale(1.05);
  filter: brightness(1) invert(0);
}

.trusted-section.client_trusted_main_wrapper .logo-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  line-height: 1.4;
  display: none;
}

.trusted-section.client_trusted_main_wrapper .logo-card:hover .logo-name {
  color: #ff6b35;
}

/* Row Indicators */
.trusted-section.client_trusted_main_wrapper .row-indicator {
  text-align: center;
  margin: 50px 0 30px;
  color: #ff6f00;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  position: relative;
  text-transform: uppercase;
}

.trusted-section.client_trusted_main_wrapper .row-indicator::before,
.trusted-section.client_trusted_main_wrapper .row-indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6f00);
}

.trusted-section.client_trusted_main_wrapper .row-indicator::before {
  left: 0;
}

.trusted-section.client_trusted_main_wrapper .row-indicator::after {
  right: 0;
  background: linear-gradient(90deg, #ff6f00, transparent);
}

/* Stats Counter */
.trusted-section.client_trusted_main_wrapper .stats-section {
  margin-top: 80px;
  padding: 70px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.trusted-section.client_trusted_main_wrapper .stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.trusted-section.client_trusted_main_wrapper .stat-item {
  text-align: center;
  padding: 25px;
  position: relative;
  z-index: 1;
}

.trusted-section.client_trusted_main_wrapper .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  line-height: 1;
  font-family: 'Segoe UI', sans-serif;
}

.trusted-section.client_trusted_main_wrapper .stat-label {
  font-size: 1.1rem;
  color: #b0b0b0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

@media (max-width:767px) {
  .trusted-section.client_trusted_main_wrapper .arrow-indicator {
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
    bottom: 7px !important;
  }
}

/* Modal Styles */
.client_main_modal .modal-backdrop.show {
  opacity: 0.9;
  background: rgba(15, 15, 15, 0.95);
}

.client_main_modal .modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.client_main_modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 30px;
  background: rgba(255, 107, 53, 0.05);
}

.client_main_modal .modal-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

.client_main_modal .btn-close {
  filter: invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
  background: none;
  font-size: 1.5rem;
}

.client_main_modal .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
  color: #ff6b35;
}

.client_main_modal .modal-body {
  padding: 35px;
  text-align: center;
}

.client_main_modal .modal-logo-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 35px 35px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.client_main_modal .modal-logo-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1), transparent 70%);
}

.client_main_modal .modal-logo-container img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.client_main_modal .modal-company-name {
  font-size: 24px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.client_main_modal .modal-company-description {
  color: #b0b0b0;
  font-size: 17px;
  line-height: 1.3;
  max-width: 600px;
  margin: 0 auto;
}

/* Modal Navigation */
.client_main_modal .modal-nav-container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 1055;
}

.client_main_modal .modal-nav-btn {
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.4);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.client_main_modal .modal-nav-btn:hover {
  background: rgba(255, 107, 53, 0.4);
  border-color: #ff6b35;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.client_main_modal .modal-nav-btn i {
  font-size: 1.2rem;
}

@media (max-width: 1200px) {
  .trusted-section.client_trusted_main_wrapper .logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 992px) {
  .trusted-section.client_trusted_main_wrapper .logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }

  .trusted-section.client_trusted_main_wrapper .section-title h2 {
    font-size: 2.3rem;
  }

  .trusted-section.client_trusted_main_wrapper .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .trusted-section.client_trusted_main_wrapper .logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .trusted-section.client_trusted_main_wrapper .section-title h2 {
    font-size: 2rem;
  }

  .trusted-section.client_trusted_main_wrapper .section-title p {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .trusted-section.client_trusted_main_wrapper .trusted-section {
    padding: 50px 0;
  }

  .trusted-section.client_trusted_main_wrapper .logo-card {
    min-height: 100%;
    padding: 10px;
  }

  .trusted-section.client_trusted_main_wrapper .stat-number {
    font-size: 2.5rem;
  }

  .client_main_modal .modal-nav-container {
    padding: 0 10px;
  }

  .client_main_modal .modal-nav-btn {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .trusted-section.client_trusted_main_wrapper .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .trusted-section.client_trusted_main_wrapper .section-title h2 {
    font-size: 1.8rem;
  }

  .trusted-section.client_trusted_main_wrapper .logo-container {
    height: 70px;
  }

  .trusted-section.client_trusted_main_wrapper .logo-container img {
    max-width: 120px;
    max-height: 70px;
  }

  .trusted-section.client_trusted_main_wrapper .stat-number {
    font-size: 2.2rem;
  }

  .client_main_modal .modal-nav-btn {
    width: 40px;
    height: 40px;
  }

  .modal-body {
    padding: 30px 20px;
  }

  .client_main_modal .modal-logo-container {
    padding: 40px 20px;
  }

  .client_main_modal .modal-company-name {
    font-size: 1.6rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.trusted-section.client_trusted_main_wrapper .logo-card {
  opacity: 0;
  transform: translateY(30px);
}

.trusted-section.client_trusted_main_wrapper .logo-card.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.trusted-section.client_trusted_main_wrapper .counter {
  opacity: 0;
}

.trusted-section.client_trusted_main_wrapper .counter.animated {
  opacity: 1;
}

.trusted-section.client_trusted_main_wrapper .row-separator {
  margin: 50px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}




















.trusted-section.client_trusted_main_wrapper .logo-card {
  position: relative;
}

.trusted-section.client_trusted_main_wrapper .arrow-indicator {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgb(255 68 0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.95rem;
  opacity: 0.6;
  transition: all 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

.trusted-section.client_trusted_main_wrapper .logo-card:hover .arrow-indicator {
  opacity: 1;
  transform: translateX(4px);
  background: rgba(255, 107, 53, 0.25);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.3);
}





.about-section .video-column {
  align-items: stretch;
}

.about-section .video-box {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-section .video-box img.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section .video-box .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.about-section .video-box .play-btn img {
  width: 70px;
  height: 70px;
}

.video-embed {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-section .video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 992px) {
  .about-section .video-box {
    min-height: 100%;
  }
}

@media (max-width: 768px) {
  .about-section .video-box {
    min-height: 235px;
    border-radius: 12px;
  }

  .about-section .video-box .play-btn img {
    width: 55px;
    height: 55px;
  }
}




.clients-section.client_main_wrapper.location_client_main_wrapper {
  padding: 60px 0;
}

.faq-section.faq_main_wrapper.location_faq_main_wrapper {
  padding: 60px 0;
}














.service-banner.location_banner_wrapper.blogs_listing_banner_wrapper {
  position: relative;
}

.service-banner.location_banner_wrapper.blogs_listing_banner_wrapper .service-image {
  max-height: 450px;
}

.blogs_listing_main_wrapper {
  font-family: 'Roboto', sans-serif;
  background: #faf7f5;
  color: #4a4a4a;
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin: 0;
  padding-bottom: 50px;
}

.blogs_listing_main_wrapper .blw-hero {
  background: linear-gradient(155deg, #fffaf7 0%, #fdeee4 55%, #fddfc9 100%);
  padding: 76px 28px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.blogs_listing_main_wrapper .blw-hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  top: -200px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 0, .11) 0%, transparent 70%);
}

.blogs_listing_main_wrapper .blw-hero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  bottom: -160px;
  left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 0, .08) 0%, transparent 70%);
}

.blogs_listing_main_wrapper .blw-hero>* {
  position: relative;
  z-index: 1;
}

.blogs_listing_main_wrapper .blw-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #fde4d4;
  color: #ff4d00;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.blogs_listing_main_wrapper .blw-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #1b1b1b;
  line-height: 1.15;
  margin-bottom: 14px;
}

.blogs_listing_main_wrapper .blw-hero h1 em {
  color: #ff4d00;
  font-style: normal;
}

.blogs_listing_main_wrapper .blw-hero p {
  font-size: .97rem;
  color: #8a8a8a;
  max-width: 480px;
  margin: 0 auto 26px;
  line-height: 1.75;
  font-weight: 400;
}

.blogs_listing_main_wrapper .blw-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 700;
}

.blogs_listing_main_wrapper .blw-breadcrumb a {
  color: #ff4d00;
  text-decoration: none;
}

.blogs_listing_main_wrapper .blw-breadcrumb .blw-sep {
  color: #ccc;
}

.blogs_listing_main_wrapper .blw-breadcrumb .blw-leaf {
  color: #8a8a8a;
}

.blogs_listing_main_wrapper .blw-filter-outer {
  max-width: 1280px;
  margin: -38px auto 52px;
  padding: 0 28px;
  position: relative;
  z-index: 10;
}

.blogs_listing_main_wrapper .blw-filter-bar {
  background: linear-gradient(90deg, #ff6f00, #f9a825);
  border-radius: 20px;
  box-shadow: 0 10px 44px rgba(255, 77, 0, .12);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Search */
.blogs_listing_main_wrapper .blw-search {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.blogs_listing_main_wrapper .blw-search i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff4d00;
  font-size: .85rem;
  pointer-events: none;
}

.blogs_listing_main_wrapper .blw-search input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 2px solid #efe8e3;
  border-radius: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: .86rem;
  font-weight: 600;
  color: #000000;
  background: #faf7f5;
  outline: none;
  transition: .2s;
}

.blogs_listing_main_wrapper .blw-search input:focus {
  border-color: #ff4d00;
  background: #fff;
}

.blogs_listing_main_wrapper .blw-search input::placeholder {
  color: #c0b8b3;
}

.blogs_listing_main_wrapper .blw-select {
  position: relative;
  min-width: 220px;
}

.blogs_listing_main_wrapper .blw-select-btn {
  width: 100%;
  padding: 12px 42px 12px 16px;
  border: 2px solid #efe8e3;
  border-radius: 12px;
  background: #faf7f5;
  font-family: 'Roboto', sans-serif;
  font-size: .86rem;
  font-weight: 500;
  color: #1b1b1b;
  cursor: pointer;
  text-align: left;
  outline: none;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.blogs_listing_main_wrapper .blw-select-btn.open,
.blogs_listing_main_wrapper .blw-select-btn:focus {
  border-color: #ff4d00;
  background: #fff;
}

.blogs_listing_main_wrapper .blw-select-btn .blw-chev {
  color: #ff4d00;
  font-size: .72rem;
  transition: transform .22s;
  flex-shrink: 0;
}

.blogs_listing_main_wrapper .blw-select-btn.open .blw-chev {
  transform: rotate(180deg);
}

.blogs_listing_main_wrapper .blw-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid #fde4d4;
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .11);
  overflow: hidden;
  z-index: 200;
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}

.blogs_listing_main_wrapper .blw-dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.blogs_listing_main_wrapper .blw-dropdown .blw-opt {
  padding: 11px 18px;
  font-size: .84rem;
  font-weight: 500;
  color: #4a4a4a;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .15s;
}

.blogs_listing_main_wrapper .blw-dropdown .blw-opt:hover {
  background: #fff4ef;
  color: #ff4d00;
}

.blogs_listing_main_wrapper .blw-dropdown .blw-opt.active {
  background: #ff4d00;
  color: #fff;
}

.blogs_listing_main_wrapper .blw-dropdown .blw-opt .blw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: .55;
  flex-shrink: 0;
}

.blogs_listing_main_wrapper .blw-count {
  background: #fff4ef;
  color: #ff4d00;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}

.blogs_listing_main_wrapper .blw-count strong {
  font-size: .98rem;
}

.blogs_listing_main_wrapper .blw-grid-outer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.blogs_listing_main_wrapper .blw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blogs_listing_main_wrapper .blw-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .07);
  transition: transform .32s cubic-bezier(.34, 1.4, .64, 1), box-shadow .3s;
}

.blogs_listing_main_wrapper .blw-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 52px rgba(255, 77, 0, .17);
}

.blogs_listing_main_wrapper .blw-card.blw-hidden {
  display: none;
}

.blogs_listing_main_wrapper .blw-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.blogs_listing_main_wrapper .blw-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.blogs_listing_main_wrapper .blw-card:hover .blw-card-img img {
  transform: scale(1.07);
}

.blogs_listing_main_wrapper .blw-card-overlay {
  position: absolute;
  inset: 0;
}

.blogs_listing_main_wrapper .blw-card-cat {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #ff4d00;
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.blogs_listing_main_wrapper .blw-card-body {
  padding: 16px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blogs_listing_main_wrapper .blw-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blogs_listing_main_wrapper .blw-card-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14PX;
  font-weight: 500;
  color: #000000c4;
}

.blogs_listing_main_wrapper .blw-card-meta-item i {
  color: #ff4d00;
  font-size: .68rem;
}

.blogs_listing_main_wrapper .blw-card-meta-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d0c8c2;
  flex-shrink: 0;
}

.blogs_listing_main_wrapper .blw-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18PX;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.48;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs_listing_main_wrapper .blw-card-excerpt {
  font-size: 15px;
  color: #595959;
  line-height: 1.4;
  flex: 1;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs_listing_main_wrapper .blw-card-hr {
  height: 1px;
  background: #efe8e3;
  margin-bottom: 16px;
}

.blogs_listing_main_wrapper .blw-btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .79rem;
  font-weight: 700;
  color: #ff4d00;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  transition: gap .2s;
}

.blogs_listing_main_wrapper .blw-btn-read .blw-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff4ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: #ff4d00;
  transition: .24s;
}

.blogs_listing_main_wrapper .blw-btn-read:hover {
  gap: 12px;
}

.blogs_listing_main_wrapper .blw-btn-read:hover .blw-ico {
  background: #ff4d00;
  color: #fff;
  transform: rotate(-42deg);
}

.blogs_listing_main_wrapper .blw-empty {
  display: none;
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
}

.blogs_listing_main_wrapper .blw-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff4ef;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ff4d00;
}

.blogs_listing_main_wrapper .blw-empty h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1b1b1b;
  margin-bottom: 8px;
}

.blogs_listing_main_wrapper .blw-empty p {
  font-size: .86rem;
  color: #8a8a8a;
}

.blogs_listing_main_wrapper .blw-lm-outer {
  max-width: 1280px;
  margin: 42px auto;
  padding: 0 28px;
  text-align: center;
}

.blogs_listing_main_wrapper .blw-progress-wrap {
  max-width: 340px;
  margin: 0 auto 22px;
}

.blogs_listing_main_wrapper .blw-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: .74rem;
  font-weight: 700;
  color: #8a8a8a;
  margin-bottom: 8px;
}

.blogs_listing_main_wrapper .blw-progress-track {
  height: 4px;
  background: #efe8e3;
  border-radius: 4px;
  overflow: hidden;
}

.blogs_listing_main_wrapper .blw-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff4d00, #ff7040);
  border-radius: 4px;
  transition: width .4s ease;
}

.blogs_listing_main_wrapper .blw-btn-lm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #ff4d00;
  border: 2.5px solid #ff4d00;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: 13px 38px;
  cursor: pointer;
  transition: all .24s;
  box-shadow: 0 4px 20px rgba(255, 77, 0, .14);
  margin-top: 15px;
}

.blogs_listing_main_wrapper .blw-btn-lm:hover:not(:disabled) {
  background: #ff4d00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(255, 77, 0, .3);
}

.blogs_listing_main_wrapper .blw-btn-lm:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

.blogs_listing_main_wrapper .blw-btn-lm .blw-spin {
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255, 77, 0, .25);
  border-top-color: #ff4d00;
  border-radius: 50%;
  animation: blwSpin .65s linear infinite;
  display: none;
}

.blogs_listing_main_wrapper .blw-btn-lm.loading .blw-spin {
  display: block;
}

.blogs_listing_main_wrapper .blw-btn-lm.loading .blw-lm-txt {
  display: none;
}

@keyframes blwSpin {
  to {
    transform: rotate(360deg);
  }
}

.blogs_listing_main_wrapper .blw-card.blw-animate {
  animation: blwCardIn .38s ease both;
}

@keyframes blwCardIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 1199px) {
  .blogs_listing_main_wrapper .blw-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .blogs_listing_main_wrapper .blw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .blogs_listing_main_wrapper .blw-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
  }

  .blogs_listing_main_wrapper .blw-select {
    min-width: unset;
  }

  .blogs_listing_main_wrapper .blw-count {
    text-align: center;
  }

  .blogs_listing_main_wrapper .blw-filter-outer,
  .blogs_listing_main_wrapper .blw-grid-outer,
  .blogs_listing_main_wrapper .blw-lm-outer {
    padding: 0 16px;
  }

  .blogs_listing_main_wrapper .blw-hero {
    padding: 52px 16px 86px;
  }
}

@media (max-width: 575px) {
  .blogs_listing_main_wrapper .blw-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}















.single_post_main_wrapper {
  --acc: #ff4d00;
  --acc-dk: #cc3d00;
  --acc-lt: #fff4f0;
  --txt: #1a1a1a;
  --body: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --soft: #f9fafb;
  --rad: 10px;
  font-family: 'Lato', 'Segoe UI', sans-serif;
  color: var(--txt);
}

.single_post_main_wrapper .sp-breadcrumb-bar {
  background: var(--soft);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.single_post_main_wrapper .sp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.single_post_main_wrapper .sp-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.single_post_main_wrapper .sp-breadcrumb a:hover {
  color: var(--acc);
}

.single_post_main_wrapper .sp-bc-sep {
  font-size: 9px;
  opacity: .5;
}

.single_post_main_wrapper .sp-header-section {
  padding: 48px 0 32px;
  background: #fff;
}

.single_post_main_wrapper .sp-category-pill {
  display: inline-block;
  background: var(--acc-lt);
  color: var(--acc);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 77, 0, .2);
  margin-bottom: 16px;
}

.single_post_main_wrapper .sp-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.3px;
  color: var(--txt);
  margin: 0 0 22px;
}

.single_post_main_wrapper .sp-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.single_post_main_wrapper .sp-meta-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.single_post_main_wrapper .sp-meta-author a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
  text-decoration: none;
}

.single_post_main_wrapper .sp-meta-author a:hover {
  color: var(--acc);
}

.single_post_main_wrapper .sp-meta-info {
  display: block;
  font-size: 13px;
  color: #363636;
  margin-top: 2px;
}

.single_post_main_wrapper .sp-featured-section {
  padding: 0 0 40px;
  background: #fff;
}

.single_post_main_wrapper .sp-featured-img-box {
  border-radius: var(--rad);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .09);
  line-height: 0;
}

.single_post_main_wrapper .sp-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.single_post_main_wrapper .sp-featured-img-box:hover .sp-featured-img {
  transform: scale(1.025);
}

.single_post_main_wrapper .sp-content-section {
  padding: 8px 0 40px;
  background: #fff;
}

.single_post_main_wrapper .sp-article {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
}

.single_post_main_wrapper .sp-article>*+* {
  margin-top: 1.4em;
}

.single_post_main_wrapper .sp-article h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--txt);
  line-height: 1.25;
  margin-top: 2em;
  padding-top: .5em;
  border-top: 1px solid var(--border);
}

.single_post_main_wrapper .sp-article h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--txt);
  margin-top: 1.75em;
}

.single_post_main_wrapper .sp-article p {
  margin-bottom: 0;
}

.single_post_main_wrapper .sp-article a {
  color: var(--acc);
  text-underline-offset: 3px;
}

.single_post_main_wrapper .sp-article a:hover {
  color: var(--acc-dk);
}

.single_post_main_wrapper .sp-article img {
  max-width: 100%;
  border-radius: var(--rad);
  display: block;
}

.single_post_main_wrapper .sp-article blockquote {
  border-left: 3px solid var(--acc);
  background: var(--acc-lt);
  padding: 16px 20px;
  border-radius: 0 var(--rad) var(--rad) 0;
  font-style: italic;
  color: #555;
  margin: 1.5em 0;
}

.single_post_main_wrapper .sp-article ul,
.single_post_main_wrapper .sp-article ol {
  padding-left: 1.5em;
}

.single_post_main_wrapper .sp-article li {
  margin-bottom: .4em;
}

.single_post_main_wrapper .sp-bottom-bar-section {
  padding: 0 0 36px;
  background: #fff;
}

.single_post_main_wrapper .sp-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.single_post_main_wrapper .sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single_post_main_wrapper .sp-tag {
  padding: 4px 12px;
  background: var(--soft);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: all .15s;
}

.single_post_main_wrapper .sp-tag:hover {
  background: var(--acc-lt);
  border-color: var(--acc);
  color: var(--acc);
}

.single_post_main_wrapper .sp-share {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.single_post_main_wrapper .sp-share-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.single_post_main_wrapper .sp-share-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s, opacity .15s;
}

.single_post_main_wrapper .sp-share-icon:hover {
  transform: scale(1.12);
  opacity: .9;
}

.single_post_main_wrapper .sp-fb {
  background: #1877f2;
}

.single_post_main_wrapper .sp-tw {
  background: #1da1f2;
}

.single_post_main_wrapper .sp-li {
  background: #0a66c2;
}

.single_post_main_wrapper .sp-wa {
  background: #25d366;
}

.single_post_main_wrapper .sp-copy {
  background: var(--muted);
}

.single_post_main_wrapper .sp-copy.copied {
  background: #22a741;
}

.single_post_main_wrapper .sp-author-section {
  padding: 0 0 40px;
  background: #fff;
}

.single_post_main_wrapper .sp-author-box {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  align-items: flex-start;
}

.single_post_main_wrapper .sp-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--border);
}

.single_post_main_wrapper .sp-author-role {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--acc);
  margin-bottom: 4px;
}

.single_post_main_wrapper .sp-author-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--txt);
  margin: 0 0 6px;
}

.single_post_main_wrapper .sp-author-name a {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}

.single_post_main_wrapper .sp-author-name a:hover {
  color: var(--acc);
}

.single_post_main_wrapper .sp-author-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.single_post_main_wrapper .sp-prevnext-section {
  padding: 0 0 52px;
  background: #fff;
}

.single_post_main_wrapper .sp-nav-card {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  height: 100%;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.single_post_main_wrapper .sp-nav-card:hover {
  border-color: var(--acc);
  box-shadow: 0 6px 24px rgba(255, 77, 0, .13);
  transform: translateY(-2px);
}

.single_post_main_wrapper .sp-nav-card--right {
  flex-direction: row-reverse;
}

.single_post_main_wrapper .sp-nav-thumb {
  width: 90px;
  flex-shrink: 0;
  overflow: hidden;
}

.single_post_main_wrapper .sp-nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.single_post_main_wrapper .sp-nav-card:hover .sp-nav-thumb img {
  transform: scale(1.07);
}

.single_post_main_wrapper .sp-nav-text {
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.single_post_main_wrapper .sp-nav-text--right {
  text-align: right;
}

.single_post_main_wrapper .sp-nav-dir {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--acc);
  display: flex;
  align-items: center;
  gap: 5px;
}

.single_post_main_wrapper .sp-nav-dir--right {
  justify-content: flex-end;
}

.single_post_main_wrapper .sp-nav-cat {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
}

.single_post_main_wrapper .sp-nav-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single_post_main_wrapper .sp-related-section {
  background: var(--soft);
  border-top: 1px solid var(--border);
  padding: 52px 0 68px;
}

.single_post_main_wrapper .sp-related-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--txt);
  margin: 0;
  padding-left: 14px;
  border-left: 4px solid var(--acc);
}

.single_post_main_wrapper .sp-rel-card {
  background: #fff;
  border-radius: var(--rad);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}

.single_post_main_wrapper .sp-rel-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.single_post_main_wrapper .sp-rel-img-wrap {
  display: block;
  text-decoration: none;
}

.single_post_main_wrapper .sp-rel-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--soft);
}

.single_post_main_wrapper .sp-rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.single_post_main_wrapper .sp-rel-card:hover .sp-rel-img img {
  transform: scale(1.06);
}

.single_post_main_wrapper .sp-rel-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.single_post_main_wrapper .sp-rel-cat {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--acc);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 50px;
}

.single_post_main_wrapper .sp-rel-body {
  padding: 16px 18px 20px;
}

.single_post_main_wrapper .sp-rel-date {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.single_post_main_wrapper .sp-rel-heading {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--txt);
  margin: 0 0 8px;
}

.single_post_main_wrapper .sp-rel-heading a {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}

.single_post_main_wrapper .sp-rel-heading a:hover {
  color: var(--acc);
}

.single_post_main_wrapper .sp-rel-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.single_post_main_wrapper .sp-rel-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--acc);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s;
}

.single_post_main_wrapper .sp-rel-link:hover {
  gap: 9px;
}

@media (max-width: 767px) {
  .single_post_main_wrapper .sp-header-section {
    padding: 32px 0 24px;
  }

  .single_post_main_wrapper .sp-featured-section {
    padding: 0 0 28px;
  }

  .single_post_main_wrapper .sp-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .single_post_main_wrapper .sp-nav-thumb {
    width: 76px;
  }

  .single_post_main_wrapper .sp-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .single_post_main_wrapper .sp-share {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .single_post_main_wrapper .sp-title {
    font-size: 1.55rem;
  }


}

.clients-section.client_main_wrapper .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .get-touch-row .contact-details-list {
  display: flex;
  flex-direction: column;
}

.footer .get-touch-row .bottom-icon.envelope-icon img {
  width: 22px;
  height: 22px;
}

.footer .get-touch-row .bottom-icon.location-icon {
  width: 38px;
  height: 38px;
}

@media (max-width: 1024px) {
  .footer .get-touch-row .bottom-icon.location-icon {
    width: 110px;
    height: 40px;
  }
}

@media (max-width: 991px) {
  .footer .get-touch-row .bottom-icon.location-icon {
    width: 70%;
    height: 30%;
  }
}

@media (max-width: 767px) {
  .footer .get-touch-row .bottom-icon.location-icon {
    width: 38px;
    height: 38px;
  }
}















.alpana-stats-section {
  position: relative;
  padding: 50px 0 70px;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.alpana-stats-section .stats-bg {
  position: absolute;
  inset: 0;
  background: url('https://rishfotech.com/alpana-art/wp-content/uploads/2026/03/kol.jpeg') center center / cover no-repeat;
  filter: grayscale(30%) brightness(0.45);
  transform: scale(1.04);
  transition: transform 12s ease;
  z-index: 0;
}

.alpana-stats-section:hover .stats-bg {
  transform: scale(1.0);
}



.alpana-stats-section .stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FFF8F3 0%, #fdbaa175 100%);
  z-index: 1;
}

.alpana-stats-section .stats-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      #ed4609 30%,
      #ff7a3d 60%,
      transparent 100%);
  z-index: 2;
}

.alpana-stats-section .stats-content {
  position: relative;
  z-index: 3;
  max-width: 1240px;
}

.alpana-stats-section .stats-eyebrow {
  text-align: center;
  margin-bottom: 20px;
}



.alpana-stats-section .stats-eyebrow span {
  display: inline-block;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
}

.alpana-stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .alpana-stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .alpana-stats-section .stat-label {
    font-size: 11px;
  }

  .alpana-stats-section .stat-number {
    font-size: 20px;
  }

  .alpana-stats-section .stat-badge {
    width: 75px;
    height: 75px;
  }
}

@media (max-width: 575px) {
  .alpana-stats-section .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

}

.alpana-stats-section .stat-card {
  position: relative;
  background: rgb(18 18 20 / 43%);
  border: solid 3px #ffffff00;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  cursor: default;
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  overflow: hidden;
  transition: 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(0px);
}

.alpana-stats-section .stat-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ed4609, transparent 60%);
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}

.alpana-stats-section .stat-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(237, 70, 9, 0.55);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}

.alpana-stats-section .stat-card:hover {
  border-color: rgba(237, 70, 9, 0.9);
  transform: translateY(-10px);
  border: solid 3px #ff4400e6;
}

.alpana-stats-section .stat-card:hover::before {
  opacity: 0.07;
}

.alpana-stats-section .stat-card:hover::after {
  /* opacity: 1; */
}

.alpana-stats-section .stat-card-inner {
  position: relative;
  z-index: 1;
}

.alpana-stats-section .stat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ed4609 0%, #b53200 100%);
  margin: 0 auto 22px;
  transition: 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.alpana-stats-section .stat-badge::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(237, 70, 9, 0.5);
  opacity: 0;
  transform: scale(0.8);
  transition: 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.alpana-stats-section .stat-card:hover .stat-badge::before {
  opacity: 1;
  transform: scale(1);
}

.alpana-stats-section .stat-card:hover .stat-badge {
  transform: scale(1.1);
}

.alpana-stats-section .stat-number {
  font-family: 'poppins', sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 1px;
}

.alpana-stats-section .stat-label {
  font-family: 'roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e0d5cc;
  line-height: 1.55;
  transition: color 0.3s ease;
}

.alpana-stats-section .stat-card:hover .stat-label {
  color: #ffffff;
}

.alpana-stats-section .stat-divider {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #ed4609, transparent);
  margin: 14px auto 0;
  border-radius: 2px;
  transition: width 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.alpana-stats-section .stat-card:hover .stat-divider {
  width: 56px;
}

.alpana-stats-section .stat-card {
  opacity: 0;
  transform: translateY(30px);
  animation: statsReveal 0.7s forwards;
}

.alpana-stats-section .stat-card:nth-child(1) {
  animation-delay: 0.05s;
}

.alpana-stats-section .stat-card:nth-child(2) {
  animation-delay: 0.18s;
}

.alpana-stats-section .stat-card:nth-child(3) {
  animation-delay: 0.31s;
}

.alpana-stats-section .stat-card:nth-child(4) {
  animation-delay: 0.44s;
}

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

.alpana-stats-section .stats-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.alpana-stats-section .particle {
  position: absolute;
  border-radius: 50%;
  background: #ed4609;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  10% {
    opacity: 0.6;
    transform: translateY(-20px) scale(1);
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0.3);
  }
}


.alpana-stats-section.about_counter_main_wrapper .stats-topline {
  display: none;
}

.alpana-stats-section.about_counter_main_wrapper {
  padding: 40px 0 60px;
}

























.rpb {
  background: #0e0e0e;
  padding: 60px 0;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
  position: relative;
}

.rpb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237, 70, 9, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 70, 9, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.rpb .rpb-inner {
  position: relative;
  z-index: 1;
}

.rpb .rpb-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px;
}

.rpb .rpb-header-left {}

.rpb .rpb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.rpb .rpb-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ed4609;
}

.rpb .rpb-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ed4609;
}

.rpb h2.section-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  background: linear-gradient(90deg, #ED4609 0%, #CD6F3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rpb .rpb-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 0.95;
  color: #fff;
  margin: 0;
  letter-spacing: 1.5px;
}

.rpb .rpb-title em {
  font-style: normal;
  color: #ed4609;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px #ed4609;
}

.rpb .rpb-subtitle {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(200, 190, 180, 0.6);
  font-weight: 400;
  max-width: 420px;
  line-height: 1.6;
}

.rpb .rpb-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.rpb .rpb-slide-counter {
  font-family: 'Bebas Neue', cursive;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(200, 190, 180, 0.4);
}

.rpb .rpb-slide-counter span {
  color: #ed4609;
  font-size: 22px;
  vertical-align: middle;
  margin-right: 2px;
}

.rpb .rpb-nav {
  display: flex;
  gap: 10px;
}

.rpb .rpb-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(237, 70, 9, 0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.rpb .rpb-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ed4609;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.rpb .rpb-btn:hover::before {
  transform: scale(1);
}

.rpb .rpb-btn:hover {
  border-color: #ed4609;
}

.rpb .rpb-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .rpb .rpb-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
  }

  .rpb .rpb-header-right {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
}

.rpb .rpb-progress-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 40px;
  border-radius: 2px;
  overflow: hidden;
}

.rpb .rpb-progress-fill {
  height: 100%;
  background: #ed4609;
  border-radius: 2px;
  width: 16.66%;
  transition: width 0.4s ease;
}

.rpb .rpb-slider {
  margin: 0 -10px;
}

.rpb .rpb-slider .slick-list {
  overflow: visible;
}

.rpb .rpb-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.rpb .rpb-slider .slick-slide {
  height: auto;
}

.rpb .rpb-slider .slick-slide>div {
  height: 100%;
}

.rpb .rpb-card {
  margin: 0 10px;
  height: 100%;
  cursor: pointer;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.rpb .rpb-card:hover {
  border-color: rgba(237, 70, 9, 0.4);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(237, 70, 9, 0.2);
  transform: translateY(-6px);
}

.rpb .rpb-card-img {
  position: relative;
  /* aspect-ratio: 3/2; */
  overflow: hidden;
  flex-shrink: 0;
}

.rpb .rpb-card-img img {
  width: 100%;
  /* height: 100%; */
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.rpb .rpb-card:hover .rpb-card-img img {
  transform: scale(1.08);
}

.rpb .rpb-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* height: 55%; */
  height: 30%;
  background: linear-gradient(to top, rgba(22, 22, 22, 0.95) 0%, transparent 100%);
  pointer-events: none;
}

.rpb .rpb-card-num {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Bebas Neue', cursive;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.rpb .rpb-card-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: #ed4609;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.rpb .rpb-card-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(237, 70, 9, 0.12);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.rpb .rpb-card:hover .rpb-card-view {
  opacity: 1;
}

.rpb .rpb-card-view-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(237, 70, 9, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.75);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.rpb .rpb-card:hover .rpb-card-view-icon {
  transform: scale(1);
}

.rpb .rpb-card-view-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rpb .rpb-card-body {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rpb .rpb-card-body h5 {
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.rpb .rpb-card:hover .rpb-card-body h5 {
  color: #ed4609;
}

.rpb .rpb-card-line {
  width: 24px;
  height: 2px;
  background: #ed4609;
  border-radius: 1px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.rpb .rpb-card:hover .rpb-card-line {
  width: 48px;
}

.rpb .rpb-card-body p {
  font-size: 15px;
  color: #c8beb4f5;
  margin: 0;
  line-height: 1.65;
  font-weight: 400;
}

.rpb .rpb-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ed4609;
  margin-top: auto;
  padding-top: 10px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rpb .rpb-card:hover .rpb-card-link {
  opacity: 1;
  transform: translateY(0);
}

.rpb .rpb-card-link svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #ed4609;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.rpb .rpb-card:hover .rpb-card-link svg {
  transform: translateX(3px);
}

.rpb-modal .modal-dialog {
  max-width: 980px;
  margin: 20px auto;
}

.rpb-modal .modal-content {
  background: #111;
  border: 1px solid rgba(237, 70, 9, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.rpb-modal .rpb-modal-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: 520px;
}

@media (max-width: 768px) {
  .rpb-modal .rpb-modal-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}

.rpb-modal .rpb-modal-left {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}

.rpb-modal .rpb-modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
  transition: opacity 0.25s ease;
}

.rpb-modal .rpb-modal-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(237, 70, 9, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.rpb-modal .rpb-modal-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 5;
}

.rpb-modal .rpb-modal-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(237, 70, 9, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
}

.rpb-modal .rpb-modal-nav-btn:hover {
  background: #ed4609;
  border-color: #ed4609;
  transform: scale(1.1);
}

.rpb-modal .rpb-modal-nav-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rpb-modal .rpb-modal-counter-pill {
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  min-width: 60px;
  text-align: center;
}

.rpb-modal .rpb-modal-right {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  overflow-y: auto;
  max-height: 600px;
}

.rpb-modal .rpb-modal-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.rpb-modal .rpb-modal-close:hover {
  background: #ed4609;
  border-color: #ed4609;
}

.rpb-modal .rpb-modal-close svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.rpb-modal .rpb-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ed4609;
  margin-bottom: 12px;
}

.rpb-modal .rpb-modal-tag::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: #ed4609;
  display: block;
}

.rpb-modal .rpb-modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 16px;
}

.rpb-modal .rpb-modal-divider {
  width: 36px;
  height: 2px;
  background: #ed4609;
  border-radius: 1px;
  margin-bottom: 16px;
}

.rpb-modal .rpb-modal-desc {
  font-size: 14px;
  color: rgba(200, 190, 180, 0.65);
  line-height: 1.75;
  margin: 0 0 28px;
}

.rpb-modal .rpb-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}

.rpb-modal .rpb-modal-thumb {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  opacity: 0.45;
}

.rpb-modal .rpb-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rpb-modal .rpb-modal-thumb:hover {
  opacity: 0.75;
  transform: scale(1.03);
}

.rpb-modal .rpb-modal-thumb.active {
  border-color: #ed4609;
  opacity: 1;
}

.rpb-modal .rpb-modal-hint {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 11px;
  color: rgba(200, 190, 180, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rpb-modal .rpb-modal-hint kbd {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 10px;
  color: rgba(200, 190, 180, 0.5);
  font-family: 'Outfit', sans-serif;
}

@media (max-width: 768px) {
  .rpb-modal .modal-dialog {
    margin: 10px;
  }

  .rpb-modal .rpb-modal-right {
    max-height: unset;
  }

  .rpb-modal .rpb-modal-close {
    display: none;
  }

  .rpb-modal .modal-content {
    border-radius: 14px;
  }
}













.portfolio_main_slider_wrapper .portfolio-slide-item {
  padding: 10px;
}

.portfolio_main_slider_wrapper .portfolio-card {
  height: 100%;
}

.portfolio.portfolio_main_wrapper.portfolio_slider_wrapper .slick-dots li button:before {
  font-size: 30px;
  opacity: 1;
  color: #ffffff;
}

.portfolio.portfolio_main_wrapper.portfolio_slider_wrapper .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ed460a;
}


.portfolio.portfolio_main_wrapper.portfolio_slider_wrapper .portfolio-caption {
  position: unset;
  padding: 20px 15px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #1b1b1b;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio.portfolio_main_wrapper.portfolio_slider_wrapper .portfolio-caption span {
  font-family: Roboto;
  font-weight: 400;
  font-size: 17px;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
}

.portfolio.portfolio_main_wrapper.portfolio_slider_wrapper .portfolio-slide-item a {
  text-decoration: none !important;
}

.portfolio.portfolio_main_wrapper.portfolio_slider_wrapper .portfolio-caption h5 {
  font-family: Roboto;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.portfolio_slider_wrapper .slick-prev:before,
.portfolio_slider_wrapper .slick-next:before {
  font-family: 'slick';
  font-size: 18px;
  line-height: 1;
  opacity: 1;
  font-weight: 900;
  color: #ed4609;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: none;
}

.portfolio_slider_wrapper .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ed4609;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.portfolio_slider_wrapper .slick-prev:hover {
  background: #ed4609;
  border-color: #ed4609;
  color: #fff;
}

.portfolio_slider_wrapper .slick-next:hover {
  background: #ed4609;
  border-color: #ed4609;
  color: #fff;
}

.portfolio_slider_wrapper .slick-arrow:hover:before {
  color: #fff;
}

.portfolio_slider_wrapper .slick-arrow:hover {
  background: #ed4609;
}


/* .custom-arrow {
    background: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
} */

.portfolio_slider_wrapper .custom-arrow i {
  font-size: 16px;
  color: #ed4609;
}

.portfolio_slider_wrapper .custom-arrow i:hover {
  color: #fff;
}

.portfolio_slider_wrapper button.slick-prev.custom-arrow.slick-arrow {
  left: -15px;
}

.portfolio_slider_wrapper button.slick-next.custom-arrow.slick-arrow {
  right: -15px;
}



#portfolioModal .content-box {
  padding: 10px;
}


#portfolioModal button.btn-close {
  opacity: 1 !important;
}

@media (min-width: 993px) and (max-width: 1024px) {
  .process-section .straight_bg {
    width: 50%;
  }

  .process-section .vice_bg {
    width: 50%;
  }
}


.footer-video {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  bottom: 0;
  left: 0;
  opacity: 0.20;
}


.about_banner.about-banner-main-wrapper .service-image::after {
  background: none;
}

.about-company-section.about-company-main-wrapper .company-image::after {
  background: none;
}

.service_banner_main_wrapper .service-image::after {
  background: none;
}

.career_banner_wrapper.career_banner_main_wrapper .service-image::after {
  background: none;
}



@media (min-width: 1170px) {

  .service_banner_main_wrapper {
    height: 500px;
  }

  .service_banner_main_wrapper .service-left {
    min-height: 0;
    display: flex;
    align-items: center;
  }

  .service_banner_main_wrapper .service-right {
    position: relative;
    min-height: 0;
  }

  .service_banner_main_wrapper .service-image img {
    width: 100%;
    /* object-fit: cover; */
    object-fit: contain;
    object-position: right;
    overflow: hidden;
    max-height: 480px;
    height: 100%;
  }
}



























/* ----- parent CSS class for all custom styles ----- */
.alpana-gallery-container {
  --primary-burgundy: #9b2c2c;
  --secondary-gold: #c9a03d;
  --soft-bg: #fef8f0;
  --dark-text: #2d2a24;
  --light-card: #ffffff;
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 32px rgba(0, 0, 0, 0.12);
  font-family: 'Inter', sans-serif;
  background-color: var(--soft-bg);
  color: var(--dark-text);
}

.alpana-gallery-container {
  border-top: solid 1px #ee490a;
}

/* .alpana-gallery-container {
        position: relative;
    }

    .alpana-gallery-container .alpana-location-container {
        position: relative;
    } */
.alpana-gallery-container .footer-video {
  opacity: 0.50;
}

/* hero / banner inspired by gallery page color scheme */
.alpana-gallery-container .hero-section {
  /* background: linear-gradient(135deg, #2c1a12 0%, #4a2a1e 100%); */
  background: unset;
  /* padding: 2.5rem 1rem; */
  /* border-radius: 0 0 2rem 2rem; */
  margin-bottom: 2rem;
  /* box-shadow: var(--shadow-sm); */
  padding: 70px 0;
}

.alpana-gallery-container .video-title-box {
  position: relative;
  height: 300px;
  /* background: linear-gradient(360deg, #ffffff 0%, #f055089c 100%); */
  background: #000;
}

.alpana-gallery-container .hero-title {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -0.3px;
  color: #fff;
}

.alpana-gallery-container .hero-sub {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
}

/* dropdown + filter bar */
.alpana-gallery-container .filter-card {
  background: var(--light-card);
  border: none;
  border-radius: 1.5rem;
  padding: 0.8rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.alpana-gallery-container .form-select {
  background-color: #fffbf5;
  border: 1px solid #e4d5c3;
  border-radius: 2rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  color: #3e2c22;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s;
}

.alpana-gallery-container .form-select:focus {
  border-color: var(--secondary-gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 160, 61, 0.25);
}

/* gallery grid */
.alpana-gallery-container .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

/* image card - modern aesthetic, rounded corners, subtle shadow */
.alpana-gallery-container .image-card {
  background: var(--light-card);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  cursor: pointer;
  border: 1px solid rgba(201, 160, 61, 0.2);
}

.alpana-gallery-container .image-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.alpana-gallery-container .img-wrapper {
  position: relative;
  overflow: hidden;
  background: #f1ede7;
  aspect-ratio: 4 / 3;
}

.alpana-gallery-container .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.alpana-gallery-container .image-card:hover img {
  transform: scale(1.03);
}

/* station name badge on image corner */
.alpana-gallery-container .station-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.8rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff2df;
  border-left: 3px solid var(--secondary-gold);
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.alpana-gallery-container .card-caption {
  padding: 0.8rem 1rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5c4b3a;
  border-top: 1px solid #f0e5d8;
  background: #ffffff;
}

/* load more button */
.alpana-gallery-container .load-more-btn {
  background: linear-gradient(90deg, #ed460a, #f15a07);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(155, 44, 44, 0.3);
}

.alpana-gallery-container .load-more-btn:hover {
  background: linear-gradient(95deg, #822424, #9b3a24);
  background: linear-gradient(90deg, #ff6f00, #f9a825);
  color: #fff;
  transform: translateY(-2px);
  transform: scale(1.02);
  box-shadow: 0 8px 18px rgba(155, 44, 44, 0.4);
}

/* modal custom styling (modern slider) */
.alpana-gallery-container .modal-content {
  border-radius: 1.5rem;
  background: #1e1915;
  border: none;
}

.alpana-gallery-container .modal-header {
  border-bottom: 1px solid rgba(255, 245, 220, 0.2);
  background: transparent;
  padding: 1rem 1.5rem;
}

.alpana-gallery-container .modal-title {
  color: #f7e5cf;
  font-weight: 600;
}

.alpana-gallery-container .btn-close-white {
  filter: brightness(0) invert(1);
}

.alpana-gallery-container .modal-body {
  background: #0c0a08;
  padding: 1rem;
}

.alpana-gallery-container .slider-container {
  position: relative;
  background: #0000001a;
  border-radius: 1rem;
  overflow: hidden;
}

.alpana-gallery-container .slider-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #1c1814;
  border-radius: 0.75rem;
}

.alpana-gallery-container .slider-nav {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 60px;
  padding: 0.6rem 1rem;
}

.alpana-gallery-container .carousel-control-prev-icon,
.alpana-gallery-container .carousel-control-next-icon {
  background-color: #c9a03d;
  border-radius: 50%;
  padding: 1rem;
  background-size: 60%;
}

.card-caption {
  display: none;
}

/* responsive */
@media (max-width: 767px) {
  .alpana-gallery-container .hero-section {
    padding: ;
  }

  .alpana-gallery-container .video-title-box {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .alpana-gallery-container .gallery-grid {
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .alpana-gallery-container .hero-title {
    font-size: 1.8rem;
  }
}









.alpana_railway_routes_section.alpana-locations-routes-section .inner-location-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.alpana_railway_routes_section.alpana-locations-routes-section .inner-location-btn-wrapper .header_nav_btn.nav-gradient-btn {
  gap: 7px;
}

.alpana_railway_routes_section.alpana-locations-routes-section {
  padding: 60px 0 90px;
}

@media (max-width: 767px) {
  .alpana_railway_routes_section.alpana-locations-routes-section .inner-location-btn-wrapper .header_nav_btn.btn.nav-gradient-btn {
    display: inline-flex !important;
  }
}