:root {
  --brand: #ff5a00;
  --brand-dark: #e84f00;
  --ink: #171719;
  --muted: #626262;
  --dark: #262426;
  --dark-2: #343034;
  --light: #f6f6f4;
  --border: #e6e6e6;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
p {
  color: #000000;
}
.site-header {
  position: relative;
  z-index: 1030;
  background: #fff;
}
.header-shell {
  background: #fdfdfd;
  border-bottom: 1px solid #e8e8e8;
}
.header-container {
  display: grid;
  grid-template-columns: 235px 1fr;
  grid-template-rows: 40px 72px;
  min-height: 112px;
}
.brand-area {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  padding-right: 22px;
  border-right: 1px solid #ededed0f;
}
.brand-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.brand-logo {
  max-width: 180px;
}
.top-contact-bar {
  grid-column: 2;
  grid-row: 1;
  border-bottom: 1px solid #f0f0f0;
}
.top-contact-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 14px;
  padding-left: 12px;
}
.contact-items {
  display: flex;
  align-items: center;
  gap: 17px;
}
.contact-items a {
  color: #333;
  font-weight: 600;
}
.contact-items a:hover {
  color: var(--brand);
}
.contact-items i {
  color: var(--brand);
  margin-right: 6px;
}
.contact-divider {
  width: 1px;
  height: 15px;
  background: #ddd;
}
.social-items {
  display: flex;
  align-items: center;
  gap: 8px;
}
.follow-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #ff5a00;
  margin-right: 4px;
  font-weight: 500;
}
.social-items a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #000000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: 0.2s;
}
.social-items a:hover {
  background: var(--brand);
  color: #fff;
}
.nav-area {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
}
.navbar {
  width: 100%;
  min-height: 72px;
}
.navbar-nav {
  gap: 3px;
}
.nav-link {
  font-weight: 600;
  color: #252525 !important;
  padding: 0.65rem 1.15rem !important;
  position: relative;
  font-size: 16px;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 0px;
  background: var(--brand);
  transform: scaleX(0);
  transition: 0.2s;
}
.nav-link:hover:after,
.nav-link.active:after {
  transform: scaleX(1);
}
.nav-cta {
  margin-left: 12px;
}
/* Services dropdown */
.services-dropdown {
  position: relative;
}
.services-dropdown .dropdown-toggle::after {
  margin-left: 7px;
  vertical-align: 0.16em;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-bottom: 0;
  border-left: 0.35em solid transparent;
  display: none;
}
.services-dropdown .dropdown-menu {
  min-width: 100%;
  margin-top: 1px;
  padding: 8px 0;
  border: 0;
  border-top: 3px solid var(--brand);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  z-index: 2000;
}
.services-dropdown .dropdown-item {
  font-size: 14px;
  font-weight: 600;
  color: #292929;
  padding: 11px 17px;
  white-space: nowrap;
  transition: 0.2s;
}
.services-dropdown .dropdown-item i {
  color: var(--brand);
  width: 18px;
}
.services-dropdown .dropdown-item:hover,
.services-dropdown .dropdown-item:focus {
  background: #fff3ec;
  color: var(--brand);
  padding-left: 21px;
}
@media (min-width: 992px) {
  .services-dropdown:hover > .dropdown-menu {
    display: block;
  }
  .services-dropdown > .dropdown-toggle {
    cursor: pointer;
  }
}
.btn-brand {
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  font-size: 14px;
}
.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}
.section-padding {
  padding: 45px 0;
}
.section-padding-sm {
  padding: 45px 0;
}
.section-kicker {
  display: inline-block;
  color: #ff5a00;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.section-kicker.light {
  color: #ff7a32;
}
.section-heading {
  margin-bottom: 28px;
}
.section-heading p {
  max-width: 100%;
  margin: 10px auto 0;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  line-height: 48px;
  font-weight: 800;
  margin: 0;
  color: var(--ink);
  margin-bottom: 12px;
}
.section-title span {
  color: var(--brand);
}
.hero-section {
  margin-top: 0;
}
.hero-slide {
  position: relative;
}
.hero-slide-1 {
  background-image: url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=2200&q=90");
}
.hero-slide-2 {
  /* background-image:url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2200&q=90"); */
}
.hero-slide-3 {
  background-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=2200&q=90");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.hero-content {
  max-width: 720px;
  color: #fff;
  position: relative;
  z-index: 2;
  padding-top: 20px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.8px;
  font-weight: 800;
  color: #ff8a4d;
}
.hero-content h1,
.hero-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.05;
  font-weight: 800;
  margin: 15px 0 20px;
  color: #fff;
}
.hero-content h1 span,
.hero-content h2 span {
  color: #ff6b16;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.carousel-indicators [data-bs-target] {
  width: 34px;
  height: 3px;
  border: 0;
  margin: 0 5px;
}
.about-section {
  background: #fff;
}
.about-visual {
  position: relative;
  padding: 12px 35px 25px 0;
}
.about-card-main {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.13);
}
.about-card-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-card-main:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.35));
}
.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  background: var(--brand);
  color: #fff;
  padding: 17px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge strong {
  font-size: 34px;
  line-height: 1;
  font-family: "Montserrat";
}
.about-badge span {
  font-weight: 700;
  line-height: 1.25;
}
.about-accent {
  position: absolute;
  right: 15px;
  top: -6px;
  width: 70px;
  height: 70px;
  border: 12px solid var(--brand);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 12px 0 0;
  color: var(--brand);
  font-size: 28px;
  padding: 14px;
}
.lead-copy {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  line-height: 26px;
}
.point-item {
  font-weight: 700;
  font-size: 18px;
}
.point-item i {
  color: var(--brand);
  margin-right: 7px;
}
.services-section {
  background: #f7f7f6;
}
.service-slider-wrap {
  position: relative;
  padding: 0 8px;
}
.service-slider {
  display: flex;
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 8px 0 18px;
}
.service-card {
  background: #fff;
  min-width: calc(33% - 11.5px);
  border: 1px solid #e8e8e8;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.11);
}
.service-image {
  height: 205px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s;
}
.service-card:hover .service-image img {
  transform: scale(1.06);
}
.service-body {
  padding: 22px 20px 15px;
  position: relative;
}
.service-icon {
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 4px solid #fff;
}
.service-body h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 13px 0 8px;
  font-weight: 800;
}
.service-body p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 11px;
}
.service-link {
  font-size: 14px;
  color: var(--brand);
  font-weight: 800;
}
.service-link i {
  margin-left: 5px;
}
.slider-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.16);
  z-index: 5;
  color: var(--brand);
}
.slider-prev {
  left: -12px;
}
.slider-next {
  right: -12px;
}
.glance-section {
  background: linear-gradient(135deg, #2a282a, #454146);
  padding: 35px 0 50px;
  color: #fff;
  /* background: linear-gradient(135deg, #ff5a00, #ff0000); */
}
.glance-section .section-title {
  color: #fff;
}
.glance-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.glance-item {
  text-align: center;
  padding: 30px 15px 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}
.glance-item:last-child {
  border-right: 0;
}
.glance-item i {
  font-size: 50px;
  color: #fff;
  display: block;
  margin-bottom: 19px;
}
.glance-item strong {
  display: block;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}
.glance-item small {
  display: block;
  color: #ffffff;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.4;
}
.partners-section {
  background: #fff;
  padding-bottom: 20px;
}
.partner-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.partner-logo {
  border: 1px solid #e6e6e67d;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
}
.partner-logo span {
  color: var(--brand);
}
.quote-section {
  background: #f4f1ef00;
  padding: 0px 0 28px;
}
.quote-box {
  background: var(--dark);
  border-radius: 8px;
  padding: 38px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  overflow: hidden;
}
.quote-box:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 60px solid rgba(255, 90, 0, 0.16);
  border-radius: 50%;
  right: -80px;
  top: -120px;
}
.quote-box > * {
  position: relative;
  z-index: 1;
}
.quote-box h2 {
  font-family: "Montserrat";
  font-size: 35px;
  color: #fff;
  font-weight: 700;
  margin: 3px 0 8px;
}
.quote-box p {
  color: #ddd;
  margin: 0;
  max-width: 650px;
}
.light-text {
  color: #ff7a32;
}
.testimonials-section {
  background: #fff;
  padding-bottom: 90px !IMPORTANT;
  padding-top: 22px;
}
.testimonial-card {
  height: 100%;
  background: #f7f7f6;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 18px;
  position: relative;
}
.stars {
  color: #ffc107;
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-size: 20px;
}
.testimonial-card p {
  font-size: 15px;
  color: #4b4b4b;
  margin-bottom: 25px;
}
.client {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #ddd;
  padding-top: 17px;
}
.client-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.client strong {
  display: block;
  font-size: 17px;
}
.client span {
  display: block;
  color: #777;
  font-size: 12px;
}
.testimonial-control {
  width: 48px;
  opacity: 1;
  top: auto;
  bottom: -65px;
}
.testimonial-control.carousel-control-prev {
  left: calc(50% - 55px);
}
.testimonial-control.carousel-control-next {
  right: calc(50% - 55px);
}
.arrow-circle {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-section {
  background: #fff;
  padding-bottom: 40px;
  padding-top: 20px;
}
.portfolio-card {
  height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #ddd;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.portfolio-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.78));
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #fff;
}
.portfolio-overlay span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ff9b68;
  font-weight: 800;
}
.portfolio-overlay h3 {
  font-size: 17px;
  margin: 4px 0 0;
  font-weight: 600;
  line-height: 27px;
  text-align: center;
}
.zoom-btn {
  position: absolute;
  width: 40px;
  top: 10px;
  right: 10px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-card:hover img {
  transform: scale(1.07);
}
.zoom-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.portfolio-modal {
  background: #111;
  border: 0;
  padding: 10px;
}
.portfolio-modal img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
}
.modal-caption {
  color: #fff;
  font-weight: 700;
  padding: 12px 8px 5px;
}
.site-footer {
  background: #171617;
  color: #fff;
  padding: 38px 0 0;
}
.footer-logo {
  max-width: 200px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}
.site-footer p {
  color: #ffffff;
  max-width: 100%;
  font-size: 14px;
  line-height: 27px;
}
.site-footer h4 {
  font-family: "Montserrat";
  font-size: 20px;
  margin-bottom: 23px;
  color: #fff;
  border-bottom: 1px solid white;
  width: fit-content;
  padding-right: 15px;
  padding-bottom: 10px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin-bottom: 12px;
}
.site-footer a {
  color: #ffffff;
  transition: 0.2s;
  font-size: 15px;
}
.site-footer a:hover {
  color: var(--brand);
}
.social-links {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}
.social-links a {
  width: 37px;
  height: 37px;
  border: 1px solid #414141;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #ff5a00;
}
.social-links a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.contact-line {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: #ffffff;
}
.contact-line i {
  color: #ffffff;
  margin-top: 5px;
  font-size: 18px;
}
.contact-line a {
  color: #ffffff;
}
.footer-bottom {
  margin-top: 25px;
  padding: 18px 0;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #ffffff;
  font-size: 16px;
}
.whatsapp-float {
  position: fixed;
  right: 5px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1020;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.quick-contact {
  position: fixed;
  right: 0;
  top: 62%;
  background: red;
  color: #fff;
  z-index: 1020;
  padding: 14px 10px;
  writing-mode: vertical-rl;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 13px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}
.quick-contact:hover {
  color: #fff;
  background: #d90000;
}
@media (max-width: 1199px) {
  .service-card {
    min-width: calc(33.333% - 15px);
  }
  .glance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .glance-item:nth-child(3) {
    border-right: 0;
  }
  .glance-item:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }
  .partner-logo {
    min-width: calc(25% - 15px);
  }
}
@media (max-width: 991px) {
  .header-container {
    display: block;
    min-height: 0;
    padding-top: 5px;
  }
  .brand-area {
    border-right: 0;
    justify-content: center;
    padding: 0 0 4px;
  }
  .brand-link {
    justify-content: center;
  }
  .brand-logo {
  }
  .top-contact-bar {
    border-top: 1px solid #f0f0f0;
    padding: 0px 0;
    border: none;
  }
  .top-contact-inner {
    justify-content: center;
    gap: 18px;
    min-height: 34px;
  }
  .nav-area {
    display: block;
  }
  .navbar {
    min-height: 56px;
  }
  .navbar-toggler {
    margin: 0px 0 2px;
  }
  .navbar-collapse {
    padding: 5px 0 14px;
  }
  .nav-link:after {
    display: none;
  }
  .services-dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    min-width: 0;
    margin: 3px 0 8px;
    padding: 4px 0;
    border-top: 1px solid #eee;
    box-shadow: none;
    border-radius: 0;
  }
  .services-dropdown .dropdown-item {
    white-space: normal;
    padding: 10px 18px;
  }
  .nav-cta {
    margin: 8px 0 0;
  }
  .hero-slide {
  }
  .about-card-main img {
    height: 430px;
  }
  .about-visual {
    padding-right: 18px;
  }
  .quote-box {
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-control {
    bottom: -58px;
  }
}
@media (max-width: 767px) {
  .contact-items {
    gap: 10px;
    display: none;
  }
  .contact-divider {
    display: none;
  }
  .top-contact-inner {
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    position: absolute;
    top: 53px;
  }
  .follow-text {
    display: none;
  }
  .social-items {
    gap: 6px;
    top: 55px;
    position: absolute;
    left: 10px;
  }
  .social-items a {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  body {
    font-size: 14px;
  }
  .section-padding {
    padding: 25px 0;
  }
  .section-padding-sm {
    padding: 45px 0;
  }
  .section-title {
    font-size: 22px;
    line-height: 30px;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .hero-content {
    padding: 0 5px;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: 43px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-slide {
    background-position: center;
  }
  .service-card {
    min-width: calc(50% - 11px);
  }
  .slider-btn {
    width: 38px;
    height: 38px;
  }
  .slider-prev {
    left: -7px;
  }
  .slider-next {
    right: -7px;
  }
  .glance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .glance-item {
    border-right: 1px solid rgba(255, 255, 255, 0.28) !important;
  }
  .glance-item:nth-child(even) {
    border-right: 0 !important;
  }
  .glance-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }
  .partner-logo {
    min-width: calc(50% - 10px);
  }
  .quote-box h2 {
    font-size: 29px;
    line-height: 41px;
  }
  .portfolio-card {
    height: 280px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .quick-contact {
    display: none;
  }
}
@media (max-width: 575px) {
  .contact-items a:nth-of-type(2) {
    display: none;
  }
  .brand-logo {
    max-width: 155px;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .about-card-main img {
    height: 350px;
  }
  .about-badge {
    left: 15px;
    bottom: 15px;
  }
  .service-card {
    min-width: 100%;
  }
  .glance-grid {
    grid-template-columns: 1fr;
  }
  .glance-item,
  .glance-item:nth-child(even) {
    border-right: 0 !important;
  }
  .glance-item:nth-child(n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }
  .partner-logo {
    /* min-width: 45%; */
  }
  .quote-box {
    padding: 28px 22px;
  }
  .testimonial-control.carousel-control-prev {
    left: calc(50% - 58px);
  }
  .testimonial-control.carousel-control-next {
    right: calc(50% - 58px);
  }
}
@media(max-width:768px){
   .g-5, .gy-5 {
    --bs-gutter-y: 2rem;
}
.g-5, .gx-5 {
    --bs-gutter-x: 0rem;
}
.partners-section {
    background: #fff;
    padding: 28px 0px 0 !IMPORTANT;
}
.quote-section {
    background: #f4f1ef00;
    padding: 32px 0 3px;
}
}
.new_span{
    /* color: #ffffff ! IMPORTANT; */
}
/* =====================================================
   SERVICES SECTION
===================================================== */

.services-section {
    position: relative;
    padding: 34px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 35px;
}

.section-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: #ff5a00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 9px;
    color: #292929;
    font-size: 38px;
    font-weight: 800;
}

.section-heading h2 span {
    color: #ff5a00;
}

.section-heading p {
    margin: 0;
    color: #000000;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}


/* Slider */

.services-slider-wrap {
    position: relative;
    padding: 0 0px;
}

.services-slider {
    display: flex;
    gap: 24px;
    overflow: hidden;
}

.service-slide {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
}


/* Service Card */

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 100%;
    padding: 2px 15px 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff5a00;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #ff5a00;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

.service-card:hover::before {
    transform: scaleX(1);
}


/* Big Icon */

.service-icon {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff3eb;
    color: #ff5a00;
    font-size: 40px;
    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}

.service-card:hover .service-icon {
    background: #ff5a00;
    color: #fff;
    transform: rotateY(180deg);
}


.service-card h3 {
    margin: 0px 0 5px;
    color: #252525;
    padding-top: 10px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    border-top: 1px solid #0000001a;
}


.service-card p {
    margin: 0 auto;
    max-width: 290px;
    color: #707070;
    font-size: 14px;
    line-height: 1.8;
}


/* Explore Link */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    color: #ff5a00;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.service-link i {
    transition: transform .3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}


/* Slider Arrows */

.service-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: #292929;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transform: translateY(-50%);
    transition: all .3s ease;
}

.service-arrow:hover {
    background: #ff5a00;
}

.service-prev {
    left: 35px;
    top: 56%;
}

.service-next {
    right: 35px;
    top: 56%;
}


/* Dots */

.services-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 35px;
}

.services-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cfcfcf;
    cursor: pointer;
    transition: all .3s ease;
}

.services-dots button.active {
    width: 28px;
    border-radius: 10px;
    background: #ff5a00;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

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

    .section-heading h2 {
        font-size: 32px;
    }

    .service-slide {
        flex: 0 0 calc(50% - 12px);
    }

    .service-card {
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .services-section {
    }

    .section-heading {
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .section-heading h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .services-slider-wrap {
        padding: 3px 20px 0px;
    }

    .services-slider {
        gap: 15px;
    }

    .service-slide {
        flex: 0 0 100%;
    }

    .service-card {
        min-height: 100%;
        padding: 4px 20px 12px;
    }

    .service-icon {
        /* width: 95px; */
        /* height: 95px; */
        /* font-size: 48px; */
        /* margin-bottom: 10px; */
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-arrow {
        width: 36px;
        height: 36px;
    }

    .service-prev {
        left: 12px;
        top: 60%;
    }

    .service-next {
        right: 12px;
        top: 60%;
    }
}
.service_img{
    max-width: 190px;
}
/* =========================================
   HOW WE WORK / OUR PROCESS
========================================= */

.process-section {
    position: relative;
    padding: 20px 20px 33px;
    background: #fff;
    overflow: hidden;
    isolation: isolate;
}

/* Very subtle architectural background */
.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.35;
    background-image:
        radial-gradient(circle, #e9e9e9 2px, transparent 2px);
    background-size: 22px 22px;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 18%,
        #000 82%,
        transparent
    );
}

/* Light orange corner decoration */
.process-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -90px;
    top: 80px;
    border: 1px solid rgba(255, 88, 0, 0.15);
    border-radius: 50%;
    z-index: -1;
}

.process-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.process-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 84px;
}

.process-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: #ff5a0a;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.process-label span {
    width: 70px;
    height: 1px;
    background: #ff5a0a;
    position: relative;
}

.process-label span::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #ff5a0a;
    border-radius: 50%;
    top: -3px;
}

.process-label span:first-child::after {
    right: 0;
}

.process-label span:last-child::after {
    left: 0;
}

.process-heading h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
    color: #151515;
}

.process-heading h2 strong {
    color: #ff5a0a;
}

.process-heading p {
    max-width: 700px;
    margin: 22px auto 0;
    font-size: 19px;
    line-height: 1.65;
    color: #555;
}


/* =========================================
   PROCESS WRAPPER
========================================= */

.process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}


/* =========================================
   PROCESS ITEM
========================================= */

.process-item {
    width: 270px;
    position: relative;
    z-index: 2;
}

.process-card {
    min-height: 100%;
    padding: 70px 12px 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 0 0 22px 22px;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.10);
    border: 1px solid #eeeeee;
    transition: all 0.35s ease;
}

.process-item:hover .process-card {
    transform: translateY(-8px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.15);
}


/* =========================================
   ICON
========================================= */

.process-icon-wrap {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #eeeeee;
    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.process-icon-wrap::after {
    content: "";
    position: absolute;
    inset: -2px;

    border-radius: 50%;

    border: 12px solid transparent;
    border-bottom-color: #ff5a0a;

    transform: rotate(0deg);
}

.process-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    position: relative;
    z-index: 2;
}

.process-icon i {
    font-size: 30px;
    color: #151515;
    transition: 0.3s ease;
}

.process-item:hover .process-icon i {
    color: #ff5a0a;
    transform: scale(1.08);
}


/* =========================================
   NUMBER
========================================= */

.process-number {
    color: #ff5a0a;
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}


/* Small orange line */

.process-line {
    width: 58px;
    height: 3px;
    background: #ff5a0a;
    margin: 12px auto 13px;
}

.process-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}


/* =========================================
   CONNECTOR
========================================= */

.process-connector {
    width: 75px;
    height: 270px;

    position: relative;
    flex-shrink: 0;
}

.process-connector::before {
    content: "";
    position: absolute;

    top: 95px;
    left: 0;
    right: 0;

    height: 1px;

    background: #222;
}

.process-connector span {
    position: absolute;

    top: 88px;
    left: 50%;

    transform: translateX(-50%);

    width: 15px;
    height: 15px;

    background: #fff;

    border: 2px solid #222;
    border-radius: 50%;
}

.process-connector span::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    top: 3px;
    left: 3px;

    background: #ff5a0a;
    border-radius: 50%;
}


/* =========================================
   BOTTOM HIGHLIGHTS
========================================= */

.process-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    max-width: 720px;
    margin: 27px auto 1px;
}

.highlight-line {
    height: 1px;
    flex: 1;
    background: #ff8b58;
}

.highlight-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff5a0a;
    font-size: 25px;
}

.process-points {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

    font-size: 18px;
    font-weight: 600;
    color: #151515;
}

.process-points b {
    color: #ff5a0a;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

    .process-heading h2 {
        font-size: 52px;
    }

    .process-item {
        width: 230px;
    }

    .process-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .process-connector {
        width: 45px;
    }

    .process-icon-wrap {
        width: 155px;
        height: 155px;
        top: -85px;
    }

    .process-icon {
        width: 110px;
        height: 110px;
    }

    .process-icon i {
        font-size: 45px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .process-section {
        padding: 30px 10px 10px;
    }

    .process-heading {
        margin-bottom: 85px;
    }

    .process-label {
        font-size: 14px;
        letter-spacing: 2.5px;
        gap: 12px;
        margin-bottom: 7px;
    }

    .process-label span {
        width: 35px;
    }

    .process-heading h2 {
        font-size: 26px;
    }

    .process-heading p {
        font-size: 16px;
        line-height: 1.6;
        margin-top: 7px;
    }

    .process-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .process-item {
        width: 100%;
        max-width: 360px;
        margin-bottom: 70px;
    }

    .process-card {
        min-height: auto;
        padding: 64px 12px 19px;
    }

    .process-number {
        font-size: 34px;
    }

    .process-card h3 {
        font-size: 22px;
    }

    .process-icon-wrap {
        width: 105px;
        height: 105px;
        top: -58px;
    }

    .process-icon {
        width: 70px;
        height: 70px;
    }

    .process-icon i {
        font-size: 30px;
    }


    /* Vertical connector */

    .process-connector {
        width: 2px;
        height: 55px;

        margin-top: -70px;
        margin-bottom: 15px;
    }

    .process-connector::before {
        top: 0;
        bottom: 0;
        left: 0;

        width: 2px;
        height: 100%;
    }

    .process-connector span {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


    .process-highlights {
        margin-top: -45px;
        gap: 10px;
    }

    .process-points {
        flex-direction: column;
        gap: 8px;

        font-size: 16px;
    }

    .process-points b {
        display: none;
    }

}
/* =====================================================
   SAATVIK ABOUT PAGE
   Prefix: se-
===================================================== */

:root {
    --se-orange: #ff5a00;
    --se-orange-dark: #e94f00;
    --se-dark: #202020;
    --se-text: #222222;
    --se-muted: #666666;
    --se-light: #f7f7f7;
    --se-border: #e8e8e8;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.se-about-breadcrumb {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(186deg, rgb(20 20 20 / 59%), rgb(20 20 20 / 61%)), url(../images/banner/saativke-baaner-3.webp) center / cover no-repeat;
}

.se-about-breadcrumb::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -150px;
    width: 400px;
    height: 400px;
    border: 70px solid rgba(255, 90, 0, .15);
    border-radius: 50%;
}

.se-breadcrumb-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 10px 0 1px;
}

.se-breadcrumb-small {
    display: inline-block;
    color: var(--se-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.se-breadcrumb-content h1 {
    margin: 16px 0 32px;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    text-align: center;
}

.se-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.se-breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

.se-breadcrumb-nav a:hover {
    color: var(--se-orange);
}

.se-breadcrumb-nav i {
    color: var(--se-orange);
    font-size: 12px;
}

.se-breadcrumb-nav span {
    color: #d5d5d5;
}


/* =====================================================
   ABOUT INTRO
===================================================== */

.se-about-intro {
    padding: 40px 0;
    background: #fff;
}

.se-about-image-wrap {
    position: relative;
    padding: 0 35px 35px 0;
}

.se-about-image {
    position: relative;
    z-index: 2;
    height: 550px;
    overflow: hidden;
    border-radius: 4px;
}

.se-about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 60%,
        rgba(0,0,0,.35)
    );
}

.se-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.se-about-image-wrap:hover .se-about-image img {
    transform: scale(1.04);
}


/* Orange Border Shape */

.se-about-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 92%;
    height: 92%;
    border: 4px solid var(--se-orange);
    z-index: 1;
}


/* Experience Badge */

.se-experience-badge {
    position: absolute;
    right: 0;
    bottom: 75px;
    z-index: 4;

    min-width: 185px;
    padding: 20px 22px;

    background: var(--se-orange);
    color: #fff;

    display: flex;
    align-items: center;
    gap: 12px;

    box-shadow: 0 15px 35px rgba(0,0,0,.20);
}

.se-experience-badge strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

.se-experience-badge span {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.se-section-label {
    display: inline-block;
    margin-bottom: 15px;

    color: var(--se-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.se-about-content h2 {
    margin: 0 0 20px;

    color: var(--se-dark);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
}

.se-about-content h2 span {
    color: var(--se-orange);
}

.se-about-lead {
    color: #333;
    font-size: 19px !important;
    line-height: 1.6 !important;
    font-weight: 500;
    margin-bottom: 18px !important;
}

.se-about-content p {
    color: var(--se-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 13px;
}


/* =====================================================
   FEATURES
===================================================== */

.se-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.se-about-feature {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.se-feature-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 90, 0, .10);
    color: var(--se-orange);

    border-radius: 50%;
    font-size: 17px;

    transition: .3s ease;
}

.se-about-feature:hover .se-feature-icon {
    background: var(--se-orange);
    color: #fff;
    transform: translateY(-3px);
}

.se-about-feature h4 {
    margin: 0 0 5px;
    color: var(--se-dark);
    font-size: 16px;
    font-weight: 700;
}

.se-about-feature p {
    margin: 0 !important;
    color: #777;
    font-size: 13px !important;
    line-height: 1.5 !important;
}


/* =====================================================
   BUTTON
===================================================== */

.se-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 23px;

    background: var(--se-orange);
    color: #fff;

    text-decoration: none;
    font-size: 15px;
    font-weight: 700;

    border-radius: 3px;

    transition: .3s ease;
}

.se-about-btn:hover {
    background: var(--se-dark);
    color: #fff;
    transform: translateY(-2px);
}

.se-about-btn i {
    transition: transform .3s ease;
}

.se-about-btn:hover i {
    transform: translateX(5px);
}


/* =====================================================
   STATS SECTION
===================================================== */

.se-about-stats {
    position: relative;
    padding: 40px 0;
    background: var(--se-dark);
    overflow: hidden;
    margin-bottom: 18px;
}

.se-about-stats::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -280px;
    top: -250px;

    border: 80px solid rgba(255, 90, 0, .08);
    border-radius: 50%;
}

.se-about-stats::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -250px;
    bottom: -300px;

    border: 70px solid rgba(255, 90, 0, .08);
    border-radius: 50%;
}

.se-stats-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 31px;
}

.se-stats-heading > span {
    color: var(--se-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
}

.se-stats-heading h2 {
    margin: 10px 0 0;
    color: #fff;
    font-size: 35px;
    font-weight: 800;
}

.se-stats-heading h2 strong {
    color: var(--se-orange);
}


/* Stats Row */

.se-stats-row {
    position: relative;
    z-index: 2;

    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.se-stat-box {
    min-height: 235px;

    padding: 35px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.16);

    transition: .35s ease;
}

.se-stat-box:last-child {
    border-right: 0;
}

.se-stat-box:hover {
    background: rgba(255,90,0,.08);
}

.se-stat-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--se-orange);
    border: 1px solid rgb(255 255 255 / 45%);
    border-radius: 50%;
    font-size: 38px;
    transition: .3s ease;
}

.se-stat-box:hover .se-stat-icon {
    background: var(--se-orange);
    color: #fff;
}

.se-stat-box h3 {
    margin: 0 0 8px;

    color: #fff;
    font-size: 39px;
    font-weight: 800;
}

.se-stat-box h3 span {
    color: var(--se-orange);
}

.se-stat-box p {
    margin: 0;
    max-width: 180px;

    color: #bcbcbc;
    font-size: 14px;
    line-height: 1.5;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .se-about-breadcrumb {
        min-height: 250px;
    }

    .se-breadcrumb-content h1 {
        font-size: 43px;
    }

    .se-about-intro {
        padding: 75px 0;
    }

    .se-about-image {
        height: 480px;
    }

    .se-about-content h2 {
        font-size: 34px;
    }

    .se-stat-box {
        border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .se-stat-box:nth-child(2) {
        border-right: 0;
    }

    .se-stat-box:nth-child(3),
    .se-stat-box:nth-child(4) {
        border-bottom: 0;
    }
}


@media (max-width: 767px) {

    .se-about-breadcrumb {
        min-height: 150px;
    }

    .se-breadcrumb-content {
        padding: 16px 0;
    }

    .se-breadcrumb-content h1 {
        font-size: 28px;
    }

    .se-breadcrumb-small {
        font-size: 11px;
        letter-spacing: 3px;
    }


    .se-about-intro {
        padding: 30px 0;
    }

    .se-about-image-wrap {
        padding: 0 20px 20px 0;
    }

    .se-about-image {
        height: 380px;
    }

    .se-experience-badge {
        right: -5px;
        bottom: 45px;
        min-width: 160px;
        padding: 15px;
    }

    .se-experience-badge strong {
        font-size: 34px;
    }

    .se-experience-badge span {
        font-size: 12px;
    }


    .se-about-content h2 {
        font-size: 30px;
    }

    .se-about-lead {
        font-size: 17px !important;
    }


    .se-about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .se-about-stats {
        padding: 35px 0;
    }

    .se-stats-heading h2 {
        font-size: 27px;
        line-height: 40px;
    }

    .se-stat-box {
        min-height: 100%;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .se-stat-box:last-child {
        border-bottom: 0;
        padding: 12px 10px;
    }
}


@media (max-width: 480px) {

    .se-breadcrumb-content h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .se-about-image {
        height: 320px;
    }

    .se-about-content h2 {
        font-size: 27px;
    }

    .se-stat-box h3 {
        font-size: 25px;
    }
}
/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}


/* ================= HEADING ================= */

.contact-heading {
    max-width: 850px;
    margin: 0 auto 40px;
}

.contact-heading > span,
.contact-info-title > span,
.form-top > span,
.map-heading > span {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff5a00;
    margin-bottom: 12px;
}

.contact-heading h2 {
    margin: 0;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #242326;
}

.contact-heading h2 strong {
    color: #ff5a00;
}

.contact-heading p {
    max-width: 700px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.8;
    color: #707070;
}


/* ================= CONTACT INFO ================= */

.contact-info-box {
    height: 100%;
    padding: 34px;
    background: #242326;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.contact-info-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #ff5a00;
    opacity: .10;
    right: -80px;
    bottom: -100px;
}

.contact-info-title {
    margin-bottom: 32px;
}

.contact-info-title h3 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
}

.contact-info-title p {
    color: #bdbdbd;
    line-height: 1.7;
    margin: 0;
}


/* ================= INFO ITEM ================= */

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    text-decoration: none;
    color: #fff;
    position: relative;
    z-index: 2;
}

.contact-item:last-of-type {
    border-bottom: 0;
}

.contact-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ff5a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    transition: .3s ease;
}

.contact-item:hover .contact-icon {
    transform: translateY(-4px);
    background: #fff;
    color: #ff5a00;
}

.contact-item small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff8b4d;
    margin-bottom: 5px;
}

.contact-item h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 29px;
}


/* ================= SOCIAL ================= */

.contact-social {
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.contact-social > span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

.social-links a:hover {
    background: #ff5a00;
    border-color: #ff5a00;
    transform: translateY(-3px);
}


/* ================= FORM ================= */

.contact-form-box {
    height: 100%;
    padding: 42px;
    background: #f7f7f7;
    border: 1px solid #eeeeee;
    border-radius: 18px;
}

.form-top {
    margin-bottom: 28px;
}

.form-top h3 {
    font-size: 30px;
    font-weight: 800;
    color: #242326;
    margin: 0;
}


/* ================= FORM GROUP ================= */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #303030;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dedede;
    background: #fff;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: .3s ease;
}

.form-group input,
.form-group select {
    height: 52px;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff5a00;
    box-shadow: 0 0 0 3px rgba(255,90,0,.08);
}


/* ================= BUTTON ================= */

.contact-submit {
    border: 0;
    background: #ff5a00;
    color: #fff;
    padding: 15px 27px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .3s ease;
}

.contact-submit:hover {
    background: #242326;
    transform: translateY(-2px);
}

.contact-submit i {
    transition: .3s ease;
}

.contact-submit:hover i {
    transform: translateX(5px);
}


/* ================= MAP ================= */

.contact-map-wrap {
    margin-top: 40px;
}

.map-heading {
    text-align: center;
    margin-bottom: 25px;
}

.map-heading h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    color: #242326;
}

.contact-map {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .contact-section {
        padding: 30px 0;
    }

    .contact-heading h2 {
        font-size: 36px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 32px;
    }

}

@media (max-width: 767px) {

    .contact-section {
        padding: 22px 0;
    }

    .contact-heading {
        margin-bottom: 35px;
    }

    .contact-heading h2 {
        font-size: 30px;
    }

    .contact-heading p {
        font-size: 14px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 18px;
        border-radius: 8px;
    }

    .contact-info-title h3,
    .form-top h3 {
        font-size: 25px;
        line-height: 33px;
    }

    .contact-map-wrap {
        margin-top: 45px;
    }

    .contact-map {
        height: 320px;
        border-radius: 14px;
    }

}
@media(max-width:768px){
    .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    text-decoration: none;
    color: #fff;
    position: relative;
    z-index: 2;
}
.contact-item h5 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 24px;
}
.contact-item small {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff8b4d;
    margin-bottom: 0px;
}
}
.se-portfolio-images {
    padding: 30px 0;
    background: #fff;
}

.se-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.se-portfolio-img {
    height: 370px;
    overflow: hidden;
    border-radius: 5px;
}

.se-portfolio-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.se-portfolio-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.se-portfolio-img:hover img {
    transform: scale(1.06);
}


@media (max-width: 991px) {

    .se-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .se-portfolio-img {
        height: 293px;
    }
}


@media (max-width: 575px) {

    .se-portfolio-images {
        padding: 20px 0px;
    }

    .se-portfolio-grid {
        gap: 18px;
        grid-template-columns: repeat(2, 1fr);
    }

    .se-portfolio-img {
        height: 110px;
        margin: -5px -5px;
    }
}
/* =========================================================
   EXHIBITION STALL FABRICATION
========================================================= */

.esf-page {
    padding: 40px 0 0;
    background: #fff;
}


/* =========================================================
   INTRO
========================================================= */

.esf-intro {
    margin-bottom: 50px;
}

.esf-intro-content {
    position: relative;
}

.esf-eyebrow,
.esf-section-heading span,
.esf-benefits-heading span,
.esf-why-heading span,
.esf-cta-content span {
    display: inline-block;

    margin-bottom: 12px;

    color: #f15a24;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.esf-intro-content h1 {
    margin: 0;
    color: #171717;
    font-size: 35px;
    line-height: 1.12;
    font-weight: 800;
}

.esf-intro-content h1 strong {
    color: #f15a24;
}

.esf-heading-line {
    width: 70px;
    height: 4px;
    margin: 13px 0;
    background: #f15a24;
}

.esf-intro-content p {
    max-width: 100%;
    margin: 0 0 10px;
    color: #000000;
    font-size: 15px;
    line-height: 26px;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.esf-main-image {
    position: relative;

    height: 480px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.esf-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;
}

.esf-main-image:hover img {
    transform: scale(1.05);
}

.esf-image-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 20px;

    background: #f15a24;
    color: #fff;

    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.esf-image-badge strong {
    font-size: 32px;
    line-height: 1;
}

.esf-image-badge span {
    font-size: 12px;
    line-height: 1.4;
}


/* =========================================================
   BUTTON
========================================================= */

.esf-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 2px;
    padding: 10px 25px;
    background: #f15a24;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.esf-main-btn i {
    transition: transform .3s ease;
}

.esf-main-btn:hover {
    background: #171717;
    color: #fff;
}

.esf-main-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.esf-section-heading {
    max-width: 750px;

    margin: 0 auto 45px;

    text-align: center;
}

.esf-section-heading h2 {
    margin: 0 0 15px;

    color: #171717;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.esf-section-heading h2 strong {
    color: #f15a24;
}

.esf-section-heading p {
    margin: 0;

    color: #777;

    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .esf-page {
        padding: 70px 0;
    }

    .esf-intro-content h1 {
        font-size: 42px;
    }

    .esf-main-image {
        height: 400px;
    }

    .esf-benefits {
        padding: 50px 35px;
    }

    .esf-why {
        padding: 60px 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .esf-page {
        padding: 55px 15px;
    }

    .esf-intro {
        margin-bottom: 65px;
    }

    .esf-intro-content h1 {
        font-size: 34px;
    }

    .esf-intro-content p {
        font-size: 14px;
    }

    .esf-main-image {
        height: 300px;

        border-radius: 12px;
    }

    .esf-image-badge {
        right: 15px;
        bottom: 15px;

        padding: 12px 15px;
    }

    .esf-image-badge strong {
        font-size: 25px;
    }

    .esf-about,
    .esf-process {
        margin-bottom: 65px;
    }

    .esf-section-heading h2,
    .esf-benefits-heading h2 {
        font-size: 30px;
    }

    .esf-benefits {
        margin-bottom: 65px;
        padding: 40px 20px;
        border-radius: 12px;
    }

    .esf-benefit-item {
        padding: 18px;
    }

    .esf-why {
        margin-bottom: 65px;
        padding: 45px 20px;
        border-radius: 12px;
    }

    .esf-why-heading h2 {
        font-size: 30px;
    }

    .esf-cta {
        padding: 50px 20px;
        border-radius: 12px;
    }

    .esf-cta-content h2 {
        font-size: 30px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .esf-intro-content h1 {
        font-size: 30px;
    }

    .esf-main-image {
        height: 250px;
    }

    .esf-solution-card {
        padding: 25px 20px;
    }

    .esf-benefit-item {
        gap: 12px;
    }

    .esf-benefit-icon {
        flex-basis: 45px;

        width: 45px;
        height: 45px;

        font-size: 16px;
    }

    .esf-cta-content h2 {
        font-size: 27px;
    }

}
/* =========================================================
   KEY ELEMENTS SECTION
========================================================= */

.esf-key-elements {
    margin-bottom: 20px;
    background: #f7f7f7;
    padding: 40px 0px;
}


/* =========================================================
   ELEMENT CARD
========================================================= */

.esf-element-card {
    position: relative;

    height: 100%;

    padding: 28px 25px 30px;

    background: #fff;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* Top orange line */

.esf-element-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 3px;

    background: #f15a24;

    transition: width .4s ease;
}

.esf-element-card:hover::before {
    width: 100%;
}


/* Hover */

.esf-element-card:hover {
    transform: translateY(-7px);

    border-color: #f15a24;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .08);
}


/* =========================================================
   CARD TOP
========================================================= */

.esf-element-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.esf-element-top > span {
    color: #dedede;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}


/* =========================================================
   ICON
========================================================= */

.esf-element-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(241, 90, 36, .10);

    color: #f15a24;

    font-size: 23px;

    transition: all .35s ease;
}

.esf-element-card:hover .esf-element-icon {
    background: #f15a24;
    color: #fff;

    transform: rotate(-5deg);
}


/* =========================================================
   TITLE
========================================================= */

.esf-element-card h3 {
    margin: 0 0 12px;
    color: #202020;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.esf-element-card p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .esf-key-elements {
        margin-bottom: 75px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .esf-key-elements {
        margin-bottom: 60px;
    }

    .esf-element-card {
        padding: 25px 22px;
    }

    .esf-element-top {
        margin-bottom: 20px;
    }

    .esf-element-top > span {
        font-size: 30px;
    }

    .esf-element-icon {
        width: 52px;
        height: 52px;

        font-size: 21px;
    }

}
/* =========================================================
   EVENT BENEFITS SECTION
========================================================= */

.event-benefits-section {
    margin-bottom: 20px;
}


/* =========================================================
   HEADING
========================================================= */

.event-benefits-heading {
    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;
}

.event-benefits-heading span {
    display: inline-block;

    margin-bottom: 12px;

    color: #f15a24;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.event-benefits-heading h2 {
    margin: 0 0 15px;

    color: #171717;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.event-benefits-heading h2 strong {
    color: #f15a24;
}

.event-benefits-heading p {
    margin: 0;

    color: #777;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   BENEFIT CARD
========================================================= */

.event-benefit-card {
    position: relative;

    height: 100%;

    padding: 35px 25px;

    text-align: center;

    background: #fff;

    border: 1px solid #ededed;

    border-radius: 14px;

    overflow: hidden;

    transition: all .35s ease;
}

.event-benefit-card::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #f15a24;

    transform: translateX(-50%);

    transition: width .35s ease;
}

.event-benefit-card:hover {
    transform: translateY(-8px);

    border-color: #f15a24;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.event-benefit-card:hover::after {
    width: 100%;
}


/* =========================================================
   NUMBER
========================================================= */

.event-benefit-number {
    position: absolute;

    top: 10px;
    right: 15px;

    color: #eeeeee;

    font-size: 42px;
    line-height: 1;

    font-weight: 900;

    transition: color .3s ease;
}

.event-benefit-card:hover .event-benefit-number {
    color: rgba(241, 90, 36, .12);
}


/* =========================================================
   ICON
========================================================= */

.event-benefit-icon {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 50%;

    background: rgba(241, 90, 36, .10);

    color: #f15a24;

    font-size: 25px;

    transition: all .35s ease;
}

.event-benefit-card:hover .event-benefit-icon {
    background: #f15a24;

    color: #fff;

    transform: scale(1.08);
}


/* =========================================================
   TITLE
========================================================= */

.event-benefit-card h3 {
    margin: 0 0 12px;

    color: #222;

    font-size: 18px;
    line-height: 1.35;

    font-weight: 700;
}


/* =========================================================
   TEXT
========================================================= */

.event-benefit-card p {
    margin: 0;

    color: #777;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .event-benefits-section {
        margin-bottom: 75px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .event-benefits-section {
        margin-bottom: 60px;
    }

    .event-benefits-heading h2 {
        font-size: 30px;
    }

    .event-benefits-heading p {
        font-size: 14px;
    }

    .event-benefit-card {
        padding: 30px 22px;
    }

}
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.banner-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 750;
    overflow: hidden;
}

/* All banners same position */
.banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

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


/* Arrows */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 20%;
    background: rgb(0 0 0 / 28%);
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

.banner-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}


@media (max-width: 767px) {

    .banner-slides {
        aspect-ratio: 16 / 9;
    }

    .banner-arrow {
        width: 25px;
        height: 25px;
        line-height: 24px;
        font-size: 14px;
    }

    .banner-prev {
        left: 10px;
    }

    .banner-next {
        right: 10px;
    }
}