/*Root CSS variables*/
:root {}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
    font-family: "Asta Sans", sans-serif;
  font-size: var(--theme-font-size-16);
  font-style: normal;
  font-weight: var(--theme-font-normal);
  overflow-x: hidden;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


img {
  max-width: 100%;
}


/* ul,
li {
    list-style: none;
} */

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;color:#0B51A6;
}

button {
  /* WebKit */
  -webkit-appearance: none;

  /* Mozilla */
  -moz-appearance: none;

  /* Opera */
  -o-appearance: none;

  /* Internet Explorer */
  -ms-appearance: none;

  /* CSS3 */
  appearance: none;
}

ul li {
  list-style-type: none;
  color: #494949;
   font-family: "Asta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

p {
  color: #494949;
   font-family: "Asta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;

}


h2,
h3,
h4,
h5,
h6 {
   font-family: "Asta Sans", sans-serif;


}

ul li {
  list-style: none;
}

/* 
.titleh2 {
  color: #0B3A28;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
} */

/*=====header=====*/
/*=====header=====*/

/* =========================
   HEADER
========================= */

.header {
background-color: transparent;
    padding: 15px 0;
    position: absolute;
    z-index: 99;
    border-bottom: 1px solid #ffffff50;
    transition: 0.4s;
    width: 100%;
}

header.header.HeaderSticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #F15A24;
  padding: 15px 0;
}

.container {
  max-width: 1320px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   MAIN HEADER
========================= */

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo-container {
  display: flex;
  align-items: center;
}

.logo img {
  max-width: 180px;
  width: 100%;
  display: block;
}

/* RIGHT SIDE */

.icons {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* MENU */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  list-style: none;
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-family: AktivGrotesk;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #000;
}

/* CONTACT BUTTON */

.btn_div {
  display: flex;
  align-items: center;
}

.contact-btn {
  background: #fff;
  color: #F15A24 !important;
  padding: 14px 26px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #000;
  color: #fff !important;
}

/* =========================
   DROPDOWN
========================= */

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  padding: 0px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.dropdown li {
  margin: 0;
}

.dropdown a {
  color: #222;
  padding: 12px 18px;
  display: block;
  font-size: 14px;
  text-transform: capitalize;
}

.dropdown a:hover {
  background: #f7f7f7;
  color: #F15A24;
}

.dropdown-icon {
  font-size: 12px;
  margin-left: 5px;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: 0.4s;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px;
  background: #F15A24;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
}
.mobile-menu img{
    width: 117px;
}
.mobile-nav {
  padding: 20px 0;
}

.mobile-nav li {
  border-bottom: 1px solid #eee;
}

.mobile-nav a {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}

.mobile-dropdown.active {
  max-height: 400px;
}

.mobile-dropdown a {
  padding-left: 40px;
  font-size: 14px;
}

.mobile-dropdown-icon.active {
  transform: rotate(180deg);
}

/* OVERLAY */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

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

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

@media (max-width: 991px) {

  .nav-menu,
  .btn_div {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .main-header {
    padding: 5px 0;
  }

  .logo img {
    max-width: 150px;
  }

  .header {
    background: #F15A24;
  }
}

@media (max-width: 576px) {

  .mobile-menu {
    width: 100%;
  }

  .logo img {
    max-width: 130px;
  }

}

/*****************Banner******************/
/* .header-layer {
  position: relative;
  z-index: 4;


} */

.BannerSection.space-mb-7 {
  z-index: 1;
  position: relative;
  /* padding-top: 230px; */
}

/* .BannerSection.space-mb-7::after {
  content: '';
  z-index: 2;
  background-color: #0006;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2));
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;


} */

.banner-info {
    position: absolute;
    max-width: 1200px;
    margin: auto;
    left: 0px;
    right: 0px;
    text-align: center;
    top: 60%;
    transform: translateY(-50%);
    text-align: left;
}

.bannertitle {
color: #FFF;
font-family: "Cantata One";
font-size: 50px;
font-style: normal;
font-weight: 400;
line-height: 65px; /* 130% */
 
}

.bannersubtitle{color: #F15A24;
font-size: 35px;
font-style: normal;
font-weight: 800;
line-height: 30px; 
text-transform: uppercase;}


/*****************Banner******************/

/* <------------who------------> */
.who {
  position: relative;
}

.who::after {
  content: '';
  background-image: url(../image/bg-transparent.png);
  position: absolute;
  top: 0%;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;

}

.who-after1 {
  position: relative;
}

.who-after1::after {
  content: '';
  background-image: url(../image/bg-transparent.png);
  position: absolute;
  top: 40%;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}

.who-info {
  padding: 80px 0px 60px;
  position: relative;
}

.who-iimg {
  position: absolute;
  top: 7%;
  right: 0px;
  z-index: 1;
  width: 25%;
}

.whosubtitle {
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}

.whotitle {
  color: #0B51A6;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 47px;
  text-transform: uppercase;
  padding: 15px 0px;
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 35px;

}
.blog-detitle {
    color: #0B51A6;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    padding: 0px 0px 15px 0px;
    color: #0B51A6;
    font-family: "Asta Sans", sans-serif;
    font-size: 30px;
}

/* .who-info {
  max-width: 570px;
} */

.who-info p {
  color: #494949;
   font-family: "Asta Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}



/* <-------------mission--------------> */
.mission-box {
  display: flex;
}

.mission-info {
  width: 58%;
}

.mission-info img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  z-index: 1;
  position: relative;
}

.mission-box {
  max-width: 1400px;
}

.missiontitle {
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  ;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
}

.mission-txt p {
  color: #494949;
  font-family: AktivGrotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  line-height: 23px;
  margin-top: 10px;
}

.mission-info1 {
  width: 30%;
  padding-left: 30px;
  z-index: 9;
}

.mission-txt {
  padding: 20px 0px;
}

/* <-----------project------------> */
.project-show,
.project-customer {
  max-width: 79%;
  margin-left: auto;
  padding: 90px 0px 50px 0px;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.projectitle {
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  padding: 20px 0px;
}

.header-content p {
  font-size: 16px;
  color: #666;
  font-weight: 300;
  letter-spacing: 0.5px;
}


.inpampff {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.map {
    width: 50%;
}
.project-header-content {
    max-width: 460px;
}
.view-all-btn {
  margin-right: 5%;
}

.view-all-btn:hover {
  background-color: #444;
  transform: translateY(-2px);
}

.swiper {
  width: 100%;
  height: 500px;
  margin-bottom: 30px;
}

.project-show .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-show .swiper-slide img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-show .swiper-slide:hover img {
  transform: scale(1.05);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 30px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-align: center;
  z-index: 1;
}

.swiper-slide:hover .project-info {
  transform: translateY(0);
}

.project-name {
  color: #FFF;
   font-family: "Asta Sans", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 100% */
  text-transform: uppercase;
}

.project-show .swiper-slide::after {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  background-image: url(../image/swiper-gradient.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}


.swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #ddd;
  color: #888;
  font-size: 14px;
  font-weight: 600;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet:hover {
  border-color: #222;
  color: #222;
}

.swiper-pagination-bullet-active {
  background: #222;
  color: white;
  border-color: #222;
}

.swiper-button-next,
.swiper-button-prev {
  color: #222;
  background-color: rgba(255, 255, 255, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: -20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 992px) {
  .swiper {
    height: 450px;
  }

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

@media (max-width: 768px) {

  .project-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

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

  .view-all-btn {
    margin-top: 20px;
    align-self: flex-start;
  }

  .swiper {
    height: 400px;
  }

  .project-info {
    padding: 20px;
  }

  .project-name {
    font-size: 20px;
  }


  .swiper-pagination {
    gap: 10px;
  }

  .swiper-pagination-bullet {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
	
	.inpampff {
  flex-direction:column;
}
.map  {
    width: 100%;	
	}
.map img {
    width: 100%;
    height: 373px;
    object-fit: contain;
}
.project-header-content {
    max-width: 100%;
}
}

@media (max-width: 576px) {
  .swiper {
    height: 300px;
  }

  .project-header-content h1 {
    font-size: 24px;
  }

  .project-header-content p {
    font-size: 14px;
  }

  .view-all-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .project-info {
    padding: 15px;
  }

  .project-name {
    font-size: 18px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px;
  }

  .swiper-pagination {
    gap: 8px;
  }

  .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -10px;
  top: var(--swiper-pagination-top, auto);
  left: 0px;
  width: 100%;
  right: 37px;
  z-index: 1;
  position: relative;
  margin-left: auto;
  /* display: block; */
  justify-content: end;
  padding-right: 40px;
}

.swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding-bottom: 40px;
}

.swiper-pagination-bullet {
  color: #494949;
  font-family: AktivGrotesk;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #F15A24;
  font-family: AktivGrotesk;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #F15A24;
  border: 0px solid transparent;
  width: 40px;
  height: 2px;
  border-radius: 0px;
  margin-bottom: 10px;
}

.swiper-pagination-bullet {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #494949 !important;
  width: 40px !important;
  height: 2px !important;
  border-radius: 0px !important;
  padding-bottom: 0px;
  margin: 3px 0px;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: transparent !important;
  width: 40px !important;
  height: 2px !important;
  border-radius: 0px !important;
  padding-bottom: 1px;
  margin: 3px 0px;
  border-top: 1px solid #F15A24;
  padding-top: 3px;
}



/* <------------why choose------------------> */
.why-section {
  padding: 40px 0px 0px 0px;

}

.why-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-image img {
  width: 100%;
}

.why-content {
  width: 100%;
}

.why-box {

  padding: 20px 10px;
}


.why-nav {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.why-prev,
.why-next {
  width: 45px;
  height: 45px;
  border: 1px solid #aaa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #F15A24;
}

.why-prev,
.why-next {
  color: #F15A24;
  font-size: 22px;
}

.why-image {
  z-index: 1;
}

.why-flex {
  display: flex;
}

.why-content .swiper {
  margin-bottom: 0px;
}

/* Desktop Responsive */
@media (min-width: 992px) {
  .why-container {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .why-image {
    width: 50%;
    margin-bottom: -4px;
  }

  .why-box {
    padding: 40px;
    width: 35%;
  }

}

@media (min-width:2500px) {
  .common-bg {
    max-width: 2100px;
    margin: auto;
  }

  .BannerSection {
    height: 70vh;
    overflow: hidden;
  }

  .image-box img {
    width: 100%;
    height: 700px;
  }
}

/* <---------------service--------------> */
.services-left {
    text-align: center;
    margin-bottom: 35px;
}
.inmissiocvn-box {
    margin-top: 50px;
}
.our-services {

  padding: 70px 20px 70px 20px;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}
.form-box form{
    width: 540px;}
/* LEFT SIDE */
.services-left h2 {
  color: #FFF;
   font-family: "Asta Sans", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  /* 100% */
  text-transform: uppercase;
}
::focus{
    outline: none;border: none;
}
.services-left p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  padding: 15px 0px;
}

/* RIGHT GRID */
.services-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-box {
  background: #F15A24;
  display: block;
  transition: all 0.5s ease-in;
}

/* IMAGE BOX */
.img-box {
  position: relative;
  overflow: hidden;

}

.img-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.service-box:hover {
  border-radius: 10px;
  transform: translateY(5px);
}

/* Overlay */
h4.protitl {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ✅ RESPONSIVE */
@media (max-width: 992px) {

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

  .services-left {
    text-align: center;
  }
}

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

  .img-box img {
    height: 240px;
  }
}

.video-sec {
  margin-top: 70px;
  position: relative;
}

.video-sec img {
  height: 500px;
  object-fit: cover;
  width: 100%;
}

h3.videotitle {
  color: #FFF;
   font-family: "Asta Sans", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  position: absolute;
  top: 54%;
  left: 0px;
  right: 0px;
  text-align: center;
}

/* <------------work------------> */
.work {
  padding: 100px 0px 0px 0px;
  text-align: center;
}


/* <-----------customer says-----------> */

.custom-testimonials-section {
  padding: 80px 0;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.work-img img {
  height: 250px !important;
}

.work {
  padding: 100px 0px 20px 0px;
  text-align: center;
  height: 450px;
}

.work-img img {
  height: 140px !important;
  object-fit: contain;
}

.section-title {
  margin-bottom: 30px;
}


.custom-testimonials-slider {
  position: relative;
  overflow: hidden;
}

.custom-testimonial-card {
  height: auto;
  display: flex;
  transition: transform 0.3s ease;
  width: 125%;
  align-items: center;
}

.leftauto .custom-testimonial-card {
  width: 115% !important;
}

.custom-testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-image {
  width: 61%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0px;
  object-fit: cover;
}

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

.testimonial-contt {
  background-color: #fff;
  height: 330px;
  width: 50%;
  z-index: 1;
  position: relative;
  margin-left: -300px;
  padding: 30px 35px;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-testimonial-card:hover .testimonial-image img {
  transform: scale(1.05);
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating i {
  font-size: 18px;
  margin-right: 2px;
  color: #F15A24;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
  flex-grow: 1;
  color: #494949;
   font-family: "Asta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;

}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-top: 22px;

  margin-top: 30px;
  position: relative;

}

.testimonial-author::before {
  content: '';
  position: absolute;
  left: -30px;
  width: 95%;
  height: 1px;
  top: 7px;
  background-color: #D3D3D3;
}

.testimonial-author:after {
  content: '';
  position: absolute;
  background-image: url(../images/customer-after.svg);
  position: absolute;
  right: 10px;
  width: 30px;
  height: 30px;
  top: 0px;
  background-repeat: no-repeat;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: #F15A24;
   font-family: "Asta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 100% */
  text-transform: uppercase;
}

.author-info p {
  color: #494949;
  font-family: AktivGrotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-top: 10px;
}

.custom-swiper-button-next,
.custom-swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.custom-swiper-button-next {
  right: 20px;
  transform: translateY(-50%);
}

.custom-swiper-button-prev {
  right: 70px;

  transform: translateY(-50%);
}

.custom-swiper-button-next:hover,
.custom-swiper-button-prev:hover {
  background-color: #4B4341E5;
  color: #fff;
}

.custom-swiper-button-next i,
.custom-swiper-button-prev i {
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .custom-testimonials-section {
    padding: 60px 0;
  }

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

  .custom-swiper-button-next {
    right: 10px;
  }

  .custom-swiper-button-prev {
    left: 10px;
  }
}

@media (max-width: 768px) {
  .custom-testimonials-section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .custom-testimonial-card {
    padding: 20px;
  }

  .testimonial-image {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 24px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .author-info h4 {
    font-size: 16px;
  }

  .author-info p {
    font-size: 13px;
  }
}

/* <--------contact--------------> */
.business-section {
  background-image: url(../images/book-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0px;
}

.container-flex {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

/* LEFT IMAGE */
.image-box {
  flex: 1;
}

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

/* RIGHT FORM PANEL */
.form-box {
  flex: 1;
  background-image: url(../images/book-form-bg.jpg);
  padding: 50px 210px 50px 70px;
  margin-left: -209px;background-repeat: no-repeat;
  background-size: cover;border-radius: 17px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  /* padding-right: 20%; */
  width: 50%;
}

/* INPUTS */
.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
}

textarea {
  height: 120px;
  resize: none;
}

/* TWO COLUMN DATE + TIME */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* BUTTON */
.form-box button {
  background: #F15A24;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  color: #FFF;
  font-family: AktivGrotesk;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .form-box {
    margin-left: 0;
    margin-top: -40px;
    width: 100%;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

/* <------------customer-------------> */
.customer-info {
  display: flex;
  position: relative;
}




.blog-section {
  padding: 60px 16px;
  font-family: 'Georgia', serif;
}

/* Header */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.sub-title {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6d4c41;
}

/* 
.blog-heading h2 {
  font-size: 28px;
  margin-top: 8px;
} */

/* See more button */
.see-more-btn {
  background: #F15A24;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 3px;
  color: #FFF;
  font-family: AktivGrotesk;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 100% */
}

/* Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  align-items: start;
}

/* Left Card */
.blog-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.blog-trititle {
  margin: 0px 0 10px;
  font-size: 20px;
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 125% */
  text-transform: uppercase;
}

.blog-card p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 15px;
}

/* Right Side Cards */
.blog-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.blog-lorem-img {
  margin-bottom: 20px;
}
blog-section a{
	    color: #f15a24;
}
.blog-row img {
    width: 100%;
    height: 275px;
    object-fit: cover;
    border-radius: 4px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.blog-content p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 10px;
}

/* Buttons */
.view-btn {
  display: inline-block;
  background: #F15A24;
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  text-decoration: none;
  border-radius: 3px;
  color: #FFF;
  font-family: AktivGrotesk;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 100% */
}

/* ✅ Mobile Responsive */
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-row img {
    width: 100%;
    height: auto;
  }

  .see-more-btn {
    width: 100%;
    text-align: center;
  }
}

/*=======================footer================*/
/* ===== FOOTER MAIN ===== */
.site-footer {
  background: url(../images/footer_bg.svg) no-repeat center/cover;
  color: #6b4c2f;
  font-family: 'Georgia', serif;
}

/* Layout */
.footer-wrap {
  margin: auto;
  padding: 60px 16px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-wrap .footer-col:nth-child(2) {
  grid-column: span 2;
  /* 2 columns ka space */
}

/* Logo */
.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

/* Column */
.footer-col {
  padding-right: 3px;
}

.footer-col:last-child {
  border-right: none;
}

/* Headings */
.footer-col h4 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #6b4c2f;
  text-transform: uppercase;
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 100% */
  text-transform: uppercase;
}

.footer-col h4 {
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 100% */
  text-transform: uppercase;
}

/* Paragraph */
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #0B51A6;
}

.footer-links li a {
  text-decoration: none;
  font-size: 14px;
  color: #6b4c2f;
}

.footer-links li a:hover {
  color: #F15A24;
}

.footer-links li a {
  display: block;
  padding: 1px 30px 0px 0;
  text-decoration: none;
  color: #0B51A6;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;

  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='24.4067' width='23' height='23' rx='11.5' transform='rotate(-90 0.5 24.4067)' stroke='%234A4240'/%3E%3Cpath d='M8 16.9067L16 8.90662M16 8.90662V14.9067M16 8.90662H10' stroke='%234A4240' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: right center;
  background-size: 24px;
}

.footer-links li a:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='24.4067' width='23' height='23' rx='11.5' transform='rotate(-90 0.5 24.4067)' stroke='%23B0865E'/%3E%3Cpath d='M8 16.9067L16 8.90662M16 8.90662V14.9067M16 8.90662H10' stroke='%23B0865E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}


/* Contact Info */
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  font-size: 14px;
}

.info-item a i {
  color: #F15A24;
  font-size: 19px;
  width: 26px;
  display: flex;
  margin: auto;
  text-align: center;
  overflow: hidden;
}

.info-item a {
  color: #494949;
  text-align: center;
  font-family: AktivGrotesk;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 100% */
  display: flex;
}

.info-item span {
  text-align: left;
  width: calc(100% - 25px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.footer-col h5 {
  color: #0B51A6;
  font-family: AktivGrotesk;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 20px;
}
.footer-flex{display: flex;gap: 15px;align-items: center;margin-top: 20px;}
.footerimg img{width: 72px;}
.social-icons a {
  font-size: 16px;
  color: #6b4c2f;
  border-right: 1px solid #d1b08b;
  padding-right: 10px;
}

.x-icon svg {
  width: 16px;
  height: 16px;
  fill: #F15A24;
  /* color change */
}

.x-icon:hover svg {
  width: 16px;
  height: 16px;
  fill: #0B51A6;
  /* color change */
}

.social-icons a:last-child {
  border-right: none;
}

/* Bottom Bar */
.footer-bottom {
  background: #F15A24;
  text-align: center;
  padding: 12px 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #fff;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  z-index: 999;
}

.whatsapp-float img {
  width: 100%;
}

.social-icons a i {
  font-size: 18px !important;
  color: #F15A24;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;

}

.social-icons a i:hover {
  color: #0B51A6;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

/* ===== Responsive ===== */
@media(max-width: 992px) {
  .footer-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col {
    border-right: none;
  }
}

@media(max-width: 600px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-col {
    padding-right: 0;
    border-bottom: 0px solid #d1b08b;
    padding-bottom: 20px;
  }

  .footer-col:last-child {
    border-bottom: none;
  }
}

/* <------add footer -------------> */
/* QUICK LINKS FULL BOX (2 COLUMN LIST) */
.quick-links-box .links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

/* Remove extra spacing inside 2nd column */
.quick-links-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Style same as your existing link theme */
.quick-links-box ul li {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #494949;
}

.quick-links-box ul li a {
  display: block;
  padding-right: 30px;
  color: #494949;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='24.4067' width='23' height='23' rx='11.5' transform='rotate(-90 0.5 24.4067)' stroke='%234A4240'/%3E%3Cpath d='M8 16.9067L16 8.90662M16 8.90662V14.9067M16 8.90662H10' stroke='%234A4240' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
}

.quick-links-box ul li a:hover {
  color: #F15A24;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='24.4067' width='23' height='23' rx='11.5' transform='rotate(-90 0.5 24.4067)' stroke='%23B0865E'/%3E%3Cpath d='M8 16.9067L16 8.90662M16 8.90662V14.9067M16 8.90662H10' stroke='%23B0865E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Mobile responsive */
@media(max-width: 600px) {
  .quick-links-box .links-grid {
    grid-template-columns: 1fr;
  }
}

/*=======================btn================*/
.main_btn {
  border-radius: 5px;
  background: #F15A24;
  color: #fff;
  padding: 17px 18px;
  display: inline-flex;
  align-items: end;
  gap: 6px;
  width: 193px;
  margin-top: 20px;
  line-height: 29px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
     text-transform: capitalize !important;
}

.submit-btn {
  border-radius: 5px;
  background: #F15A24;
  color: #fff;
  padding: 17px 18px;
  display: inline-flex;
  align-items: end;
  gap: 6px;
  margin-top: 10px;
  line-height: 29px;
  color: #FFF;
  font-family: AktivGrotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}

.main_btn img {
  width: 24px;
  padding-left: 10px;
}

.hover_btn {
  position: relative;
  overflow: hidden !important;
  display: block;
  transition: 0.2s ease-in-out;
}

.hover_btn:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000024;
  transform: rotate(45deg);
  display: inline-block;
  top: 0;
  bottom: 0;
  left: 90%;
  transition: 0.2s ease-in-out;
}

.hover_btn:hover:after {
  left: -90% !important;
  transition: 0.5s ease-in-out;
}

.BannerSection {
  height: 110vh;
  overflow: hidden;
}

.common-btn {
  position: relative;
  z-index: 9;

  text-transform: uppercase;
}

.margin-left {
  margin-left: 0px;
}

.margin-right {
  margin-right: 10px;
  width: 220px;
}

.common-btn img {
  width: 24px;
  padding-left: 10px;
  height: auto !important;
  ;
}

.main-width {
  width: 179px;

}

.contact-btn.main-width {
  width: 165px;
}

/* @keyframes zoomSoft {
  from {
    opacity: 0;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(0.9);
  }
}

.animate__zoomSoft {
  animation-name: zoomSoft;
} */

/* .common-bg {
  background-image: url(../image/body-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
} */

header.header.HeaderSticky .contact-btn.main-width {
  width: 165px;
  border: 1px solid #fff;
  margin-top: -6px;
}

.contact-btn.main-width {

  margin-top: 6px !important;
}



/* <--------------inner page-----------> */
.inner-banner {
  position: relative;
}

.inner-banner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99.5%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.breadcrumb {
  position: absolute;
  z-index: 2;
  color: #fff;
  left: 20%;
  bottom: 60px;
}

.breadcrumb a,
.breadcrumb span {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}

.padding-btm {
  padding-bottom: 100px;
}

.innertitle {
    color: #FFF;
    text-align: center;
    font-family: "Asta Sans", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    z-index: 2;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    margin: auto;
    left: 0px;
    right: 0px;
    width: 80%;
}

.header.inner-header {
  background-color: #0B51A6;
  border-bottom: 0px solid #eee;
}

.inmission {
  display: flex;
  padding-top: 90px;
}

.inmission-box {
  width: 50%;
}

.inmission-box-img img {
  margin-left: auto;
  width: 100% !important;
}

.inmissionitle {
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.inmission-dir {
  flex-direction: row-reverse;
}

.rytauto {
  max-width: 90%;
  margin-right: auto;
}

.leftauto {
  max-width: 90%;
  margin-left: auto;
}

.inmission-box img {
  width: 95%;
  height: 550px;
  object-fit: cover;
  border-radius: 3px;
}

.inmission-para {
  padding: 0px 30px;
}

.inmission-para p {
  margin-bottom: 15px;
}

.text-white p,
.text-white {
  color: #fff;
}

.leftauto .custom-swiper-button-next,
.leftauto .custom-swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #F15A24;
  border: 1px solid #F15A24;
}

/* <----------blog-----------> */

.inblog-container {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.inblog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: all 0.5s ease-in;
}

.inblog-card:hover {
  border: 1px solid #F15A24;
  transform: translateY(-5px);

}

.blog-anchor {
  display: block;
}

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

/* Content */
.inblog-content {
  padding: 20px;
}

.meta {
  font-size: 14px;
  color: #888;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #494949;
  font-family: AktivGrotesk;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  margin-top: 5px;
}

.inblog-content h3 {
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 125% */
  text-transform: uppercase;
}

.inblog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding: 15px 16px;
  background: #F15A24;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
  color: #FFF;
  font-family: AktivGrotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 100% */
  text-transform: uppercase;
}

.inblog p {
  color: #494949;
  font-family: AktivGrotesk;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  margin: 10px 0px;
  /* 143.75% */
}

.read-more img {
  width: auto !important;
  height: auto !important;
}

.read-more:hover {
  background: #F15A24;
}

/* ✅ Tablet */
@media (max-width: 992px) {
  .inblog-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ Mobile */
@media (max-width: 600px) {
  .inblog-container {
    grid-template-columns: 1fr;
  }

  .inblog-card img {
    height: 200px;
  }

  .inblog-content h3 {
    font-size: 17px;
  }
}

/* <--------------blog listing page-------------------> */
.inner-blog-listing {
  display: flex;
  gap: 30px;
}

.blog-cardsx {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.blog-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
    padding: 20px 16px 10px;
    margin-bottom: 30px;
}
.admin-date {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #6c757d;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 14px;
}


.admin-date i {
  margin-right: 5px;
}

.admin-date .admin {
  margin-right: 15px;
}

h3.blog-card-title {
  line-height: 27px !important;
}

.blog-card-title a {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #003C6D;
}

.blog-card-excerpt {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.success-btnx {
  position: absolute;
  bottom: 12px;
}

.blog-sidebar {
  flex: 1;
}

.sidebar-widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
      margin: 10px 0px 20px 0px;
}

.recommended-posts {
  list-style: none;
}

a.recommended-post-link {
  display: flex;
}

.recommended-post {

  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.recommended-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recommended-post-avatar {
  margin-right: 15px;
  flex-shrink: 0;
  width: 98px;
  height: 81px;
  aspect-ratio: 188 / 81;
}

.recommended-post-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommended-post-content {
  flex: 1;
}
.recommended-post-title {
    color: #0B51A6;
    font-family: "Asta Sans", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
    /* text-transform: uppercase; */
}
ul.recommended-posts {
  padding-left: 0px;
}

.recommended-post-date {
    color: #494949;
    /* font-family: AktivGrotesk; */
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    margin-top: 9px;
}
section.blog-listing-page {
  padding-top: 70px;
}

.blog-cardsx-inn {
  flex: 2;
}

.blg-details-img {
  text-align: center;
}

.blg-details-img img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}



h2.blog-card-title-inner {
  color: #003C6D;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.blog-card-full-description h3 {
  color: #585B6F;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 15px;
  margin-top: 21px;
}

.blog-card-full-description h4 {
  color: #585B6F;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 15px;
  margin-top: 21px;
}

.blog-card-full-description ul {
  padding-left: 30px;margin-bottom: 15px;
}

.blog-card-full-description ul li {
  list-style-type: disc;

}

.blog-card-full-description strong {
  color: #585b6f;
}

.blog-card-full-description a {
  color: #F15A24;
}

.blog-card-full-description p {

  font-size: 16px;
  margin-bottom: 15px;

}

h4.recommended-post-title:hover {
  color: #F15A24;
}



.blg-details-img1 {
  margin: 10px 0px;
}


/* Responsive Design */
@media (max-width: 992px) {
  .inner-blog-listing {
    flex-direction: column;
  }

  .blog-sidebar {
    width: 100%;
  }

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

@media (max-width: 768px) {
  .blog-cardsx {
    grid-template-columns: 1fr;
  }
}

/* Sticky Sidebar for Desktop */
@media (min-width: 993px) {
  .blog-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
  }
}


/* <-------------responsive---------------> */

/* <------ inner contact---------------> */
.contactusInforow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ContactusInfoBox {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 40px;
  position: relative;
  border-radius: 5px;
}


.ContactusInfoBox .infodflex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
}

.infodflex .infodflexIcon {
  width: 45px;
  min-width: 45px;
  height: 45px;
  min-height: 45px;
  background: #F15A24;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 17px;
  color: #fff;
}

.ContactusInfoBox .infodflex .infodflexIcont h4 {
  margin: 0px 0px 5px;
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 35px;
  text-transform: capitalize;
}


.infodflex .infodflexIcont p,
.infodflex .infodflexIcont p a {
  color: #0B51A6;
  font-size: 17px;
   font-family: "Asta Sans", sans-serif;
}

/* Section wrapper */
.contact-section {
  padding: 60px 20px;
}

/* Container with flex layout */

.contact-container {
  width: 100%;
  max-width: 850px;
  margin: auto;
  left: 0px;
  right: 0px;
  display: block;
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
}

/* LEFT IMAGE */
.contact-left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* .sub-heading {
  color: #d40000;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
} */

.contact-right h2 {
  color: #0B51A6;
   font-family: "Asta Sans", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 35px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

/* FORM GRID */
.contact-form {
  width: 100%;
}

.form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group input {
  width: 50%;
}

/* Full width fields */
.form-group-full {
  margin-bottom: 15px;
}

.form-group-full input,
.form-group-full textarea {
  width: 100%;
}

/* Inputs */
.contact-form input, .contact-form select,
.contact-form textarea {
  padding: 14px 15px;
  font-size: 14px;
  border: 1px solid #ddd;
  background: #f4f4f4;
  border-radius: 8px;
  outline: none;
  width: 100%;
}

.contact-form textarea {
  height: 110px;
  resize: none;
}

.contact-form {
  width: 100%;
  max-width: 800px;
  margin: auto;
  left: 0px;
  right: 0px;
  display: block;
}

/* SUBMIT BUTTON */
.submit-btn {
  border: 1px solid transparent;
  outline: 1px solid transparent;
}

.text-center-submit {
  text-align: center;
}

.top_gap {
  padding: 70px 0px;
}
.field-col {
    width: 50%;
}
.text-center-submit br {
    display: none;
}
/* ----------------------------------
    RESPONSIVE DESIGN
-----------------------------------*/

/* Tablets */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group input {
    width: 100%;
  }
	.field-col {
    width: 50%;
}
}

/* Mobile */
@media (max-width: 480px) {
  .contact-right h2 {
    font-size: 22px;
  }
}

/* ------------------------
   RESPONSIVE
------------------------- */

/* <------responisve--------> */
.margin-bottom-common {
  margin-bottom: 30px;
}

@media(max-width:1600px) {

  .bannertitle {
    font-size: 45px;
    line-height: 67px;

  }

  .mission-info1 {
    width: 26%;
  }

  .project-name {
    font-size: 22px;
  }

  .whotitle {

    font-size: 31px;
  }

  .whotitle {
    font-size: 31px;
  }

  .project-show,
  .project-customer {
    max-width: 90%;
    padding: 60px 0px 20px 0px;
  }

  .project-customermt {
    margin-top: 0px;
    padding-top: 0px;
  }

  .testimonial-contt {
    height: 290px;
    margin-left: -300px;
    padding: 20px 15px;
  }

  .author-info h4 {
    color: #0B51A6;
     font-family: "Asta Sans", sans-serif;
    font-size: 17px;
  }


}


@media(max-width:1500px) {
  .mission-info {
    width: 50%;
  }

  .mission-info.mission-info1 {
    width: 30%;
  }

  .video-sec img {
    height: 520px
  }

  .work {
    padding: 60px 0px 20px 0px;
    height: 340px;
  }

  .form-box {
    padding: 10px 120px 20px 30px;
    margin-left: -65px;

    width: 50%;
  }

  .footer-wrap {
    padding: 20px 16px 30px;

    gap: 20px;
  }
}


@media(max-width:1370px) {
  .who-iimg {
    top: 5%;
    width: 18%;
  }

  .mission-info img {
    height: 440px;
  }

  .services-left h2 {

    margin-top: 15px;
  }

  .blog-trititle {
    font-size: 17px;
    line-height: 27px;
  }

  .why-content .swiper {
    height: 400px;
  }
}

@media(max-width:1180px) {

  .BannerSection {
    height: auto;
  }

  .bannertitle {
    font-size: 34px;
    line-height: 60px;
  }

  .who-info {
    max-width: 600px;
    padding: 50px 0px;
  }

  .missiontitle {
    font-size: 30px;
    line-height: 30px;

  }

  h3.whotitle {
    font-size: 25px;
  }

  .why-box {
    padding: 20px;
  }

  .why-box {
    padding: 20px;
    margin-top: 0px;
    padding-top: 0px;
  }

  .who-after1::after {
    top: 28%;
    width: 89%;
    height: 77%;
  }

  .mission-info.mission-info1 {
    width: 46%;
  }

  .testimonial-contt {
    height: 330px;
    margin-left: -220px;
    padding: 20px 15px;
    width: 60%;
  }

  .top-section {
    top: 50%;
    position: absolute;
  }

  .project-show .swiper {
    width: 100%;
    height: 340px;
  }

  .property-contnt .swiper {
    height: 370px;
  }
  .form-box form {
    width: 100%;
}
}

@media(max-width:991px) {
  .header {
    background: #F15A24;
    position: relative;
  }
.logo img {
    width: 70%;
    
}
  .banner-info {    left: 20px;
    top: 50%;
  }

  .who-iimg {
    top: 4%;
    width: 21%;
  }

  .why-box {
    padding: 20px;
    margin-top: 0px;
    padding-top: 0px;
  }

  .blog-content h3 {
    font-size: 15px;
    margin-bottom: 1px;
  }

  .our-services {
    background-image: url(../image/service-bg.png);
    padding: 70px 20px 0px 20px;
    color: #fff;
  }
header.header.HeaderSticky {
   
    padding: 3px 0;
}
  .header {
    padding: 0px 0;
  }

  .innertitle {

    font-size: 30px;
  }

  .why-content .swiper {
    height: auto;
  }

  .video-sec img {
    height: 420px;
  }

  .contactusInforow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  html,body {
    overflow-x: hidden;
  }
}

@media(max-width:778px) {
  .bannersubtitle
{text-align: center;
  }
  .inmission {
    padding-top: 50px;
    flex-wrap: wrap;
  }

  .inmission-box img {
    width: 100%;
    height: 260px;
  }

  .inmission-box {
    width: 100%;
  }

  .rytauto,
  .leftauto {
    margin: auto;
  }

  .inmission-para {
    padding: 10px 0px;
  }

  .padding-btm {
    padding-bottom: 20px;
  }

  .inmissionitle {
    color: #0B51A6;
     font-family: "Asta Sans", sans-serif;
    font-size: 27px;
  }

  .breadcrumb {
    left: 8%;
    bottom: 30px;
  }

  .inner-banner img {
    height: 300px;
  }

  .innertitle {
    font-size: 25px;
    line-height: 32px;
  }

  .leftauto .custom-swiper-button-next,
  .leftauto .custom-swiper-button-prev {
    top: -10%;
  }
}

@media(max-width:600px) {
  .bannertitle {
    font-size: 20px;
    line-height: 27px;text-align: center;        margin-top: 11px;

  }

  .bannertitle span {
    font-size: 20px;
    line-height: 27px;
  }

  .whotitle {
    font-size: 25px;
  }


  .mission-box {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    margin: auto;
  }

  .mission-info {
    width: 100%;
  }

  .mission-info.mission-info1 {
    width: 100%;
    padding-left: 0px;
  }

  .project-show,
  .project-customer {
    max-width: 95%;
    padding: 37px 0px 0px 0px;
    margin: auto;
  }

  .margin-right {
    margin-right: auto;
  }

  .our-services {
    padding: 50px 0px 50px 0px;
    margin-top: 20px;
  }
    .video-sec img {
        height: 280px;
    }

  h3.videotitle {
    font-size: 23px;
  }

  .work {
    padding: 21px 10px 20px 10px;
    height: 180px;
  }

  .container-flex {
    flex-wrap: wrap;
  }

  .image-box {
    flex: initial;
    width: 100%;
  }

  .form-box {
    padding: 10px 10px 20px 10px;
    margin-left: 0px;
    width: 100%;
  }

  .business-section {
    padding: 45px 20px;
  }

  .blog-section {
    padding: 10px 0px 16px;
  }

  .missiontitle {
    font-size: 25px;
  }

  .services-left h2 {
    margin-top: 1px;
    font-size: 29px;
  }

  h3.whotitle {
    font-size: 25px;
    line-height: 35px;
  }

  .overlay h4 {
    font-size: 18px;
  }

  .custom-swiper-button-next,
  .custom-swiper-button-prev {
    top: 96%;
  }

  .who-iimg {
    display: none;
  }

  h3.whotitle {
    font-size: 18px;
    line-height: 28px;
  }

  .why-box {
    margin-top: 15px;
  }

  .whotitle {
    font-size: 25px;
    line-height: 28px;
  }

  .margin-left {
    margin-left: auto;
    margin-top: 10px;
  }
a.common-btn.main_btn.hover_btn.margin-left.wow.animate__.animate__fadeInDown.animated {margin-left: 0px;
   
}
  .why-container {
    gap: 20px;
    max-width: 95%;
    margin: auto;
  }

  .img-box img {
    height: 270px;
  }

  .whotitle {
    font-size: 23px;
  }

  .custom-testimonials-slider .swiper {
    height: 460px;
  }

  .testimonial-contt {
    height: 330px;
  }

  .testimonial-contt {
    height: 350px;
  }

  .testimonial-image {
    height: 440px !important;
  }

  .blog-section .main_btn {
    margin-top: 3px;
  }


  .footer-links li a {
    padding: 3px 30px 3px 0;
    font-size: 18px;
  }

  .mission-info img {
    height: 386px;
  }

  .service-box p {
    padding: 20px 15px;
  }

  .testimonial-contt {
    width: 65%;
  }

  .testimonial-contt {
    height: 320px;
  }

  a.common-btn.main_btn.hover_btn.margin-right.contact-btn.main-width {
    display: none;
  }

  .video-sec {
    margin-top: 40px;
  }

  .footer-col h4 {
    font-size: 22px;
  }

  .testimonial-contt {
    margin-left: -250px;
  }

  .why-flex {
    flex-wrap: wrap;
  }

  .breadcrumb a,
  .breadcrumb span {
    font-size: 14px;
  }

  .work-property .swiper {
    margin-bottom: 26px;
  }

  .testimonial-image {
    width: 80%;
  }

  .Customers-property .testimonial-image {
    width: 100%;
  }

  .Customers-property .leftauto .custom-testimonial-card {
    width: 102% !important;
  }

  .Customers-property .testimonial-contt {
    width: 100%;
  }

  .our-services.Customers-property .swiper {
    height: auto !important;
  }

  .Customers-property.our-services {
    padding: 75px 0px 30px 0px;
    margin-top: 20px;
  }

  .why-section {
    padding: 0px 0px 0px 0px;
  }

  .defaultslidearrow {
    justify-content: space-between;

  }

  .defaultslidearrow .swiper-button-prev {
    left: 0px;
  }

  .defaultslidearrow .swiper-button-next {
    right: 0px !important;
    left: auto;
  }

  .margin-bottom-common.margin-bottom-mobile {
    margin-bottom: 10px;
  }

  .why-box {
    padding: 10px;
  }

  .our-services.mt-0 {
    margin: 0px;
    padding: 70px 0px 0px 0px;
  }

  .our-services.mt-0 .section-title h2 {
    text-align: center;
  }

  .container {
    max-width: 94%;
    margin: 0 auto;
    padding: 0 0px;
  }

  .leftauto {
    max-width: 94%;
  }

  .who-info {
    max-width: 600px;
    padding: 40px 0px;
  }


  .custom-testimonial-card {
    padding: 0px;
    flex-direction: column;
  }

  /* <-----add--------> */
  .testimonial-image {
    height: 300px !important;
  }

  .testimonial-image {
    width: 99%;
  }

  .testimonial-contt {
    width: 100%;
  }

  .testimonial-contt {
    margin-left: 0px;
  }

  .testimonial-contt {
    width: 100%;
  }

.main_btn {
        font-size: 14px;
        width: 159px;
        margin: auto;
        margin-top: 20px;
        padding: 12px 18px;
    }

  .custom-testimonial-card {
    width: 100%;
  }

  .contactusInforow {
    grid-template-columns: repeat(1, 1fr);
  }
.bannersubtitle {
    font-size: 28px;
    line-height: 25px;}
    .mission-txt {
    padding: 10px 0px;
}
}

.project-header-content p {
color: #4E4E4E;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 100% */
}

.mission-info img,
.who-iimg,
.why-image img,
.image-box img,
.blog-lorem-img img,
.blog-row img {
  transition: all 0.5s ease-in;
}

.mission-info img:hover,
.who-iimg:hover,
.why-image:hover img,
.blog-lorem-img:hover img,
.blog-row:hover img {
  border-radius: 10px;
  transform: translateY(10px);
}



.blog-pagination{
    margin-top:60px;
    text-align:center;
}

.blog-pagination .page-numbers{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    margin:0 4px;
    border-radius:8px;
    background:#ffffff;
    color:#0E4FA8;
    font-weight:600;
    text-decoration:none;
    border:1px solid #e5e5e5;
    transition:all .3s ease;
}

.blog-pagination .page-numbers:hover{
    background:#F15A24;
    color:#fff;
    border-color:#F15A24;
}

.blog-pagination .page-numbers.current{
    background:#F15A24;
    color:#fff;
    border-color:#F15A24;
}

.blog-pagination .prev,
.blog-pagination .next{
    width:auto;
    padding:0 18px;
}



/* Product-detail page */
.pd-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 115px 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
/* LEFT — scrolling image stack */
.pd-gallery{display:flex;flex-direction:column;gap:16px}
.pd-gallery figure{
  background:#f5f0eb;
  border:1px solid #e0d8d0;
  border-radius:14px;
  overflow:hidden;
}
.pd-gallery img{
  width:100%;height:auto;
  aspect-ratio:1/1;
  object-fit:cover;
  transition:transform .5s ease;
}
.pd-gallery figure:hover img{transform:scale(1.03)}

/* RIGHT — sticky content */
.pd-info {
    position: sticky;
    top: 121px;
    margin-top: 26px;
}
.pd-eyebrow{
  font-size:12px;letter-spacing:.18em;text-transform:uppercase;
  color:#F15A24;font-weight:700;margin-bottom:12px;
}
.product-maintitle {
    font-family: var(--font-head);
    font-size: 34px;
    line-height: 1.2;
    color: #494949;
    margin-bottom: 8px;
    text-transform: uppercase;
    padding: 0px 0px;
    color: #0B51A6;
    font-family: "Asta Sans", sans-serif;
    font-size: 35px;
}
.pd-subtitle{color:#777;font-size:15px;margin-bottom:20px}
.pd-price{
  font-family:var(--font-head);
  font-size:28px;color:#494949;margin-bottom:6px;
}
.pd-price small{
  font-family:var(--font-body);font-size:14px;
  color:#999;text-decoration:line-through;margin-left:8px;
}
.pd-tax-note{font-size:12px;color:#999;margin-bottom:24px}
.pd-divider{height:1px;background:#e0d8d0;margin:24px 0}
.pd-desc-label{
  font-size:13px;letter-spacing:.08em;text-transform:uppercase;
  font-weight:700;color:#494949;margin-bottom:10px;
}
.pd-desc{color:#777;font-size:15px;margin-bottom:24px}
.pd-specs{list-style:none;margin-bottom:28px}
.pd-specs li{
  display:flex;justify-content:space-between;
  padding:11px 0;border-bottom:1px solid #e0d8d0;font-size:14px;
}
.pd-specs li span:first-child{color:#777}
.pd-specs li span:last-child{color:#494949;font-weight:600}
.pd-actions{display:flex;gap:12px;flex-wrap:wrap}
.pd-btn{
  flex:1;min-width:160px;padding:15px 24px;
  border:none;border-radius:10px;
  font-size:15px;font-weight:700;cursor:pointer;letter-spacing:.02em;
  transition:transform .15s ease,background .2s ease;
	margin-top:30px;
}
.pd-btn:active{transform:translateY(1px)}
.pd-btn-primary{background:#F15A24;color:#fff}
.pd-btn-primary:hover{background:#d44d1d}
.pd-btn-ghost {
    background: transparent;
    color: #494949;
    border: 1.5px solid #c8bfb5;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.pd-btn-ghost:hover{background:#f5f0eb}

/* ============ TABS ============ */
.pd-tabs-section{padding:48px 0 8px}
.pd-tab-nav{
  display:flex;justify-content:center;gap:8px;
  border-bottom:1px solid #e0d8d0;margin-bottom:36px;
}
.pd-tab-btn{
  background:transparent;border:none;
  font-family:var(--font-body);font-size:13px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;color:#777;
  padding:14px 26px;cursor:pointer;position:relative;
  border-radius:8px 8px 0 0;transition:color .2s ease,background .2s ease;    font-family: "Asta Sans", sans-serif;
}
.pd-tab-btn:hover{color:#494949}
.pd-tab-btn.active{color:#fff;background:#0B51A6}
.pd-tab-btn.active::after{
  content:"";position:absolute;left:0;right:0;bottom:-1px;
  height:3px;background:#0B51A6;
}
.pd-tab-panel{display:none;animation:pd-fade .35s ease}
.pd-tab-panel.active{display:block}
@keyframes pd-fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.pd-tab-panel p{color:#777;font-size:15px;margin-bottom:18px}
.pd-tab-panel h3 {
    font-family: var(--font-head);
    font-size: 24px;
    color: #F15A24;
    margin: 0px 0 1px;
    font-weight: 600;
    text-transform: uppercase;
    /* padding: 15px 0px; */
    color: #0B51A6;
    font-family: "Asta Sans", sans-serif;
    font-size: 27px;
}
.pd-spec-table{width:100%;border-collapse:collapse;font-size:14px}
.pd-spec-table tr{border-bottom:1px solid #e0d8d0}
.pd-spec-table td{padding:13px 4px;font-family: "Asta Sans", sans-serif;}
.pd-spec-table td:first-child{color:#777;width:40%}
.pd-spec-table td:last-child{color:#494949;font-weight:600}

/* ============ RELATED PRODUCTS ============ */
.pd-related{padding:48px 0 64px}
.pd-related h2 {
    font-family: var(--font-head);
    font-size: 31px;
    color: #F15A24;
    margin-bottom: 28px;
    font-family: "Asta Sans", sans-serif;
    text-align: center;
}
.pd-related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pd-card{
  background:#fff;border:1px solid #e0d8d0;border-radius:14px;
  overflow:hidden;display:flex;flex-direction:column;
  transition:transform .25s ease,box-shadow .25s ease;
}
.pd-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(73,73,73,.12)}
.pd-card-img{aspect-ratio:4/3;overflow:hidden;background:#f5f0eb}
.pd-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.pd-card:hover .pd-card-img img{transform:scale(1.05)}
.pd-card-body{padding:20px;display:flex;flex-direction:column;flex:1}
.pd-card-eyebrow{
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  color:#F15A24;font-weight:700;margin-bottom:6px;
}
.pd-card-body h4 {
    font-family: var(--font-head);
    font-size: 20px;
    color: #494949;
    margin-bottom: 8px;
    font-family: "Asta Sans", sans-serif;
}
.pd-card-body p{font-size:13px;color:#777;margin-bottom:3px;flex:1}
.pd-card-link{
  align-self:flex-start;font-size:13px;font-weight:700;letter-spacing:.04em;
  color:#494949;text-decoration:none;
  border:1.5px solid #c8bfb5;border-radius:8px;padding:10px 18px;
  transition:background .2s ease,color .2s ease;font-family: "Asta Sans", sans-serif;margin-top: 10px;
}
.pd-card-link:hover{background:#0B51A6;color:#fff;border-color:#0B51A6}

/* ============ MOBILE ============ */
@media(max-width:860px){
  .wrap{padding:0 16px}
  .pd-product{grid-template-columns:1fr;gap:28px;padding:24px 16px}
  .pd-info{position:static;top:auto}
  .pd-gallery{
    flex-direction:row;overflow-x:auto;
    scroll-snap-type:x mandatory;gap:12px;padding-bottom:8px;
    -webkit-overflow-scrolling:touch;scrollbar-width:none;
  }
  .pd-gallery::-webkit-scrollbar{display:none}
  .pd-gallery figure{flex:0 0 84%;scroll-snap-align:center}
  .pd-info h1{font-size:26px}
  .pd-price{font-size:24px}
  .pd-actions{flex-direction:column}
  .pd-btn{min-width:0}
  .pd-tab-nav{gap:4px}
  .pd-tab-btn{padding:12px 16px;font-size:12px}
  .pd-related-grid{grid-template-columns:1fr;gap:18px}
  .pd-related h2{font-size:24px}
}


/* //pop-up form */
.quote-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.quote-content {
  background: #fff;
  padding: 30px;
  width: 400px;
  position: relative;
  border-radius: 8px;
}

.close-popup {
    position: absolute;
    top: 3px;
    right: 11px;
    font-size: 23px;
    cursor: pointer;
}


/* -----Product Listing Page---------- */
  .pr-product {
      --pr-cream: #FFFFFF;
      --pr-beige: #F4F4F4;
      --pr-tan: #CCCCCC;
      --pr-terracotta: #F15A24;
      --pr-brown: #777777;
      --pr-muted: #777777;
      --pr-line: #E5E5E5;
      --pr-green: #F15A24;
      --pr-blue: #0B51A6;
      --pr-font: 'Poppins', 'Segoe UI', sans-serif;
      --pr-font-head: 'Playfair Display', Georgia, serif;
      background: var(--pr-cream);
      color: var(--pr-brown);
      font-family: var(--pr-font);
      padding: 80px 0 80px;
    }

    .pr-product * {
      box-sizing: border-box;
    }

    .pr-product__container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
    .pr-product__head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 18px;
      margin-bottom: 18px;
      border-bottom: 1px solid var(--pr-line);
      flex-wrap: wrap;
    }

    .pr-product__title-wrap {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .pr-product__title {
      font-family: var(--pr-font-head);
      font-size: 26px;
      font-weight: 600;
      margin: 0;
      color: var(--pr-brown);
      letter-spacing: .2px;    font-family: "Asta Sans", sans-serif;
    font-size: 28px;
    color: #0B51A6;
    }

    .pr-product__count {
      font-size: 13px;
      color: var(--pr-muted);
    }

    .pr-product__tools {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .pr-product__view {
      display: flex;
      gap: 4px;
      background: var(--pr-beige);
      border-radius: 8px;
      padding: 4px;
    }

    .pr-product__view-btn {
      display: flex;
      align-items: center;
      gap: 2px;
      border: none;
      cursor: pointer;
      background: transparent;
      padding: 6px 8px;
      border-radius: 6px;
    }

    .pr-product__view-btn span {
      width: 3px;
      height: 14px;
      background: var(--pr-muted);
      border-radius: 1px;
    }

    .pr-product__view-btn.is-active {
      background: var(--pr-brown);
    }

    .pr-product__view-btn.is-active span {
      background: var(--pr-cream);
    }

    .pr-product__sort {
      position: relative;
    }

    .pr-product__sort select {
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      border: 1px solid var(--pr-line);
      background: var(--pr-cream);
      color: var(--pr-brown);
      font-family: var(--pr-font);
      font-size: 13px;
      padding: 9px 34px 9px 14px;
      border-radius: 8px;
    }

    .pr-product__sort-arrow {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 14px;
      height: 14px;
      pointer-events: none;
      fill: none;
      stroke: var(--pr-muted);
      stroke-width: 2;
    }

    /* Mobile filter toggle */
    .pr-product__filter-toggle {
      display: none;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      background: var(--pr-brown);
      color: var(--pr-cream);
      border: none;
      font-family: var(--pr-font);
      font-size: 14px;
      font-weight: 500;
      padding: 11px 18px;
      border-radius: 9px;
      margin-bottom: 18px;
    }

    .pr-product__filter-toggle svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
    }

    /* Layout */
    .pr-product__layout {
      display: grid;
      grid-template-columns: 230px 1fr;
      gap: 34px;
      align-items: start;
    }

    /* Filters */
    .pr-product__filters {
      position: relative;
    }

    .pr-product__filters-head {
      display: none;
    }

    .pr-filter {
      border-bottom: 1px solid var(--pr-line);
    }

    .pr-filter__head {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: none;
      border: none;
      cursor: pointer;
      padding: 16px 2px;
      font-family: var(--pr-font);
      font-size: 14px;
      font-weight: 500;
      color: var(--pr-brown);
    }

    .pr-filter__sign {
      color: var(--pr-muted);
      font-size: 18px;
      line-height: 1;
    }

    .pr-filter__body {
      display: none;
      padding: 0 2px 16px;
      flex-direction: column;
      gap: 11px;
    }

    .pr-filter.is-open .pr-filter__body {
      display: flex;
    }

    .pr-filter__opt {
      display: flex;
      align-items: center;
      gap: 9px;
      cursor: pointer;
      font-size: 13px;
      color: var(--pr-brown);
    }

    .pr-filter__opt input {
      accent-color: var(--pr-terracotta);
      width: 15px;
      height: 15px;
      cursor: pointer;
    }

    .pr-filter__opt em {
      margin-left: auto;
      font-style: normal;
      font-size: 12px;
      color: var(--pr-muted);
    }

    .pr-product__apply {
      display: none;
    }

    .pr-product__overlay {
      display: none;
    }

    /* Grid */
    .pr-product__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px 22px;
    }

    .pr-product__grid[data-cols="2"] {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Card */
    .pr-card {
      display: flex;
      flex-direction: column;
    }

 .pr-card__media {
    position: relative;
    background: var(--pr-beige);
    border-radius: 0px;
    overflow: hidden;
    aspect-ratio: 4/4;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 3%);
}

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

    .pr-card:hover .pr-card__img {
      transform: scale(1.04);
    }

    .pr-card__fav {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(251, 248, 243, .9);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pr-card__fav svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: var(--pr-brown);
      stroke-width: 1.6;
    }

    .pr-card__fav.is-active svg {
      fill: var(--pr-terracotta);
      stroke: var(--pr-terracotta);
    }

 .pr-card__brand {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .4px;
    margin: 0 0 1px;
    color: #1255a8;
}

   .pr-card__name {
    font-size: 15px;
    margin: 0 0 0px;
    line-height: 1.4;
    color: #f15a24;
    font-weight: 600;
}

    .pr-card__price {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .pr-card__now {
      font-size: 14px;
      font-weight: 600;
      color: var(--pr-brown);
    }

    .pr-card__was {
      font-size: 12px;
      color: var(--pr-muted);
      text-decoration: line-through;
    }

    .pr-card__off {
      font-size: 12px;
      font-weight: 600;
      color: var(--pr-green);
    }

    /* Pagination */
    .pr-product__pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 44px;
      flex-wrap: wrap;
    }

    .pr-page {
      min-width: 38px;
      height: 38px;
      padding: 0 12px;
      border-radius: 9px;
      border: 1px solid var(--pr-line);
      background: var(--pr-cream);
      cursor: pointer;
      font-family: var(--pr-font);
      font-size: 13px;
      color: var(--pr-brown);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pr-page:hover:not(:disabled) {
      border-color: var(--pr-tan);
    }

    .pr-page.is-active {
      background: var(--pr-blue);
      border-color: var(--pr-blue);
      color: #fff;
    }

    .pr-page:disabled {
      opacity: .4;
      cursor: not-allowed;
    }
a.pr-card {
    border: 1px solid #e4e4e4;
    border-radius: 5px;
}
.name-cate {
    padding: 0px 20px 16px;
    text-align: center;
}
    /* ===== Responsive ===== */
    @media(max-width:900px) {
      .pr-product__layout {
        grid-template-columns: 1fr;
      }

      .pr-product__filter-toggle {
        display: inline-flex;
      }

      .pr-product__grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .pr-product__filters {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 84%;
        max-width: 340px;
        background: var(--pr-cream);
        z-index: 1000;
        padding: 0 20px 100px;
        transform: translateX(-100%);
        transition: transform .3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 24px rgba(0, 0, 0, .12);
      }

      .pr-product__filters.is-open {
        transform: translateX(0);
      }

      .pr-product__filters-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        background: var(--pr-cream);
        padding: 18px 0 14px;
        margin-bottom: 6px;
        border-bottom: 1px solid var(--pr-line);
        z-index: 2;
        font-family: var(--pr-font-head);
        font-size: 19px;
        font-weight: 600;
      }

      .pr-product__filters-close {
        background: none;
        border: none;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        color: var(--pr-brown);
      }

      .pr-product__apply {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 84%;
        max-width: 340px;
        background: var(--pr-terracotta);
        color: #fff;
        border: none;
        cursor: pointer;
        font-family: var(--pr-font);
        font-size: 15px;
        font-weight: 600;
        padding: 16px;
      }

      .pr-product__overlay.is-open {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(74, 59, 48, .45);
        z-index: 999;
      }
    }

    @media(max-width:620px) {

      .pr-product__grid,
      .pr-product__grid[data-cols="2"] {
        grid-template-columns: repeat(2, 1fr);
      }

      .pr-product__title {
        font-size: 22px;
      }

      .pr-product__view {
        display: none;
      }
      .pr-product {
    padding:50px 0 50px;
}
    }

    @media(max-width:380px) {
      .pr-product__grid {
        grid-template-columns: 1fr;
      }
  
    }
 img.pr-card__img {
    height: 100%!important;
}


/* quote-form-pop-up */
.quote-frmsx{
    max-width: 100%;
}

.quote-frmsx .quote-frmsx__input,
.quote-frmsx .quote-frmsx__input, .quote-frmsx .quote-frmsx__textarea {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    color: #333;
    margin-bottom: 15px;
    transition: all .3s ease;
    box-sizing: border-box;
}

.quote-frmsx .quote-frmsx__input:focus,
.quote-frmsx .quote-frmsx__textarea:focus{
    border-color: #0d6efd;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13,110,253,.15);
}

.quote-frmsx .quote-frmsx__textarea{
    min-height: 120px;
    resize: vertical;
}

.quote-frmsx .quote-frmsx__btn {
    display: inline-block;
    background: #f15a24;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.quote-frmsx .quote-frmsx__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(241 90 36 / 30%);
}

.quote-frmsx .wpcf7-not-valid-tip{
    font-size: 13px;
    margin-top: 5px;
}

.quote-frmsx .wpcf7-spinner{
    margin-left: 10px;
}

.wpcf7-response-output {
    margin: 5px!important;
    text-align: center!important;
    font-size: 11px!important;
}
.quote-frmsx .wpcf7-not-valid-tip {
    font-size: 9px;
    margin-top: 0px;
    position: absolute;
    top: 10px;
    right: 4px;
}
section.pd-tabs-section ul  {
  margin-left:20px;
}
section.pd-tabs-section ul li {
    list-style: disc;
}

   @media(max-width:767px) {
     .pd-btn-ghost {
   
    margin-top: 10px;
}
	   .pd-desc {
    margin-bottom: 6px;
}
  
    }

/* Table Design Inside .pd-tabs-section Only */
.pd-tabs-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.pd-tabs-section table th,
.pd-tabs-section table td {
    border: 1px solid #f15a24;
    padding: 12px 15px;
    text-align: left;
}

.pd-tabs-section table th {
    background: #f15a24;
    color: #fff;
    font-weight: 600;
}

.pd-tabs-section table tbody tr:nth-child(even) {
    background: #fff7f3;
}

.pd-tabs-section table tbody tr:hover {
    background: #ffe8dd;
    transition: all 0.3s ease;
}
.pd-card-body a {
    color: #f15a24;
}
.full-blg-detailsx {
    padding: 12px;
}
.blog-details-section {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
	margin-bottom:30px;
}

.formsxdw select {
    width: 100%;
    padding: 15px 45px 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
	margin-bottom:16px;
}

.formsxdw select:focus {
    border-color: #007bff;
}
span.wpcf7-not-valid-tip {
    position: absolute!important;
    top: 0px!important;
    font-size: 10px!important;
    right: 10px!important;
}

span.wpcf7-spinner {
    position: absolute!important;
}
@media (max-width: 768px) {
    .pd-tabs-section {
        overflow-x: auto;
    }

    .pd-tabs-section table {
        min-width: 500px;
    }

    .pd-tabs-section table th,
    .pd-tabs-section table td {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .bannertitle {
        font-size: 14px;
        line-height: 21px;
        text-align: center;
        margin-top: 8px;
    }
}