body {
  font-family: Lato;
}

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

:root {
  --red: #C0392B;
  --red-light: #E74C3C;
  --dark: #1a1a1a;
  --mid: #555;
  --soft: #888;
  --bg: #F7F5F2;
  --card: #ffffff;
  --circle-bg: #efefed;
  --line: #ccc;
  --num: #C0392B;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 0px;
  position: relative;
  z-index: 1;
}

body,
html {
  overflow-x: hidden;
}

@media screen and (max-width: 1150px) {
     .container {
        max-width: 90%;
        margin: 0 auto;
        padding: 0px 5px;
    } 
}

@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

p {
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Lato;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1366px;
  }
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  padding: 10px 0px;
}

header.header.HeaderSticky {
  position: fixed;
  top: 0px;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px;
  position: relative;
}

.logo {
  font-weight: 600
}

.logo span {
  color: #c56b3c
}

/* ================= DESKTOP NAVIGATION ================= */
@media (min-width: 1151px) {
  header nav {
    display: block;
    margin-left: auto;
  }

  /* Hide mobile menu header on desktop */
  .mobile-menu-header {
    display: none !important;
  }

  header nav ul.mainULnav {
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
  }

  header nav ul li {
    display: inline-block;
    position: relative;
    list-style: none;
  }

  a {
    text-decoration: none;
  }

  header nav ul li a {

    display: inline-block;
    position: relative;
    white-space: nowrap;
    padding: 20px 20px;
    transition: color 0.3s;
    color: #404041;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 100% */
  }

  header .sub-menu {
    background-color: #fff;
    position: absolute;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: all ease 0.3s;
    top: calc(100% + 0px);
    min-width: 240px;
    left: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }

  header .sub-menu li {
    display: block;
  }

  header .sub-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: #494949;
    padding: 12px;
    margin: 0;
    display: block;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  header .sub-menu li:last-child a {
    border: 0px;
  }

  header .dropdownMenu:hover .sub-menu {
    opacity: 1;
    z-index: 2;
    visibility: visible;
  }

  header nav ul li a:hover {
    color: #af0011;

  }

  header .btn-bg .sub-menu li a:hover {
    background-color: #f7503ee3;
    color: #ffffff!important;
}

  li.dropdownMenu>a:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='21' viewBox='0 0 17 21' fill='none'%3E%3Cpath d='M10.1099 11.3833L14.2266 7.26667L15.4099 8.43333L10.1099 13.7333L4.80994 8.43333L5.99327 7.26667L10.1099 11.3833Z' fill='%23494949'/%3E%3C/svg%3E");
    width: 16px;
    height: 16px;
    display: inline-flex;
    right: 0px;
    top: 0px;
    position: relative;
    transition: all 0.3s !important;
  }

  li.dropdownMenu>a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='21' viewBox='0 0 17 21' fill='none'%3E%3Cpath d='M10.1099 11.3833L14.2266 7.26667L15.4099 8.43333L10.1099 13.7333L4.80994 8.43333L5.99327 7.26667L10.1099 11.3833Z' fill='%23ffffff'/%3E%3C/svg%3E");
  }
}

.contact-header a {
  border-radius: 40.5px;
  background: #af0011;
  ;
  padding: 12px 23px;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  background: #AF0011;
  margin-left: 20px;
  border-radius: 20px;
  color: #FFF;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  /* 93.75% */
}

.contact-header a i {
  font-size: 12px;
  margin-left: 7px;
  margin-top: 5px;
}

@media screen and (max-width: 1150px) {
  header nav ul .dropdownMenu span {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    right: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='21' viewBox='0 0 17 21' fill='none'%3E%3Cpath d='M10.1099 11.3833L14.2266 7.26667L15.4099 8.43333L10.1099 13.7333L4.80994 8.43333L5.99327 7.26667L10.1099 11.3833Z' fill='%230B1F3A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 4;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
  }

  header nav ul .dropdownMenu span.hasSub.menuactve {
    transform: rotate(180deg);
  }

  header .sub-menu {
    opacity: 1;
    z-index: 1;
    visibility: visible;
    transition: none;
    top: 0;
    display: none;
    min-width: 100%;
    position: relative;
    box-shadow: none;
    padding: 0px;
  }

  .dropdownMenu {
    position: relative;
  }

  .dropdownMenu.open .sub-menu {
    display: block;
    position: relative;
    opacity: 1;
    z-index: 1;
    visibility: visible;
  }
}

/* ================= NAV ICONS ================= */


/* ================= HAMBURGER MENU ================= */
.hamburgerMenuBtn {
  width: 35px;
  height: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230B1F3A' class='bi bi-list' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  margin: 0;
  cursor: pointer;
  display: none;
}

.HeaderMenuRhs {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menuOverlay {
  background-color: rgba(0, 0, 0, 0.35);
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all ease 0.3s;
  display: none;
}

body.sidebarMenuOpen .menuOverlay {
  display: block;
}

/* ================= MOBILE MENU HEADER ================= */
.mobile-menu-header {
  display: none;
}

@media (max-width: 1150px) {

  /* Show mobile menu header */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-bottom: 1px solid rgb(63 91 77);
    position: sticky;
    top: 0;
    z-index: 1002;
  }

  .mobile-logo {
    height: 30px;
  }

    .mobile-logo img {
        height: auto;
        width: 114px;
        max-width: 118px;
    }

  .mobile-close-btn {
    background: none;
    border: none;
    color: #0B1F3A;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s;
  }

  .mobile-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }


  /* Show hamburger button */
  .hamburgerMenuBtn {
    display: block;
  }

  .nav-container {
    padding: 14px 0px;
  }

  .top-bar {
    padding: 8px 20px;
    font-size: 12px;
  }

  /* MOBILE MENU STYLES */
  header nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 0;
    display: block;
  }

  body.sidebarMenuOpen header nav {
    right: 0;
  }

  /* Style the main UL for mobile */
  header nav ul.mainULnav {
    padding: 0;
    display: block;
  }

  header nav ul li {
    display: block;
    border-bottom: 1px solid rgb(63 91 77);
  }

  header nav ul li a {
    color: #0B1F3A;
    padding: 15px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    display: inline-block;
    position: relative;
    list-style: none;
  }

  li.dropdownMenu.open span.hasSub {
    transform: rotate(180deg);
  }

  /* Style for dropdown arrows in mobile */
  li.dropdownMenu>a:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='21' viewBox='0 0 17 21' fill='none'%3E%3Cpath d='M10.1099 11.3833L14.2266 7.26667L15.4099 8.43333L10.1099 13.7333L4.80994 8.43333L5.99327 7.26667L10.1099 11.3833Z' fill='%23ffffff'/%3E%3C/svg%3E");
    transform: rotate(0deg);
    transition: transform 0.3s;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  li.dropdownMenu.open>a:after {
    transform: rotate(180deg);
  }

  /* Style sub-menu for mobile */
  header .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: none;
    border-top: none;
    width: 100%;
    min-width: auto;
  }

  header nav ul .dropdownMenu span {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    right: 15px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230b1f3a;' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 4;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
  }

  li.dropdownMenu.open .sub-menu {
    max-height: 500px;
  }

  header .sub-menu li a {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px 12px 30px;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #46464694;
    color: #ffffff;
  }

  header .sub-menu li:last-child {
    border-bottom: none;
  }

  header .sub-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

}

@media (min-width:1151px) {

  li.dropdownMenu>a {
    position: relative;
    padding-right: 22px;
    /* space for arrow */
  }

  li.dropdownMenu>a:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='21' viewBox='0 0 17 21' fill='none'%3E%3Cpath d='M10.1099 11.3833L14.2266 7.26667L15.4099 8.43333L10.1099 13.7333L4.80994 8.43333L5.99327 7.26667L10.1099 11.3833Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;

    width: 16px;
    height: 16px;

    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    transition: 0.3s;
  }

  /* hover rotate arrow */
  li.dropdownMenu:hover>a:after {
    transform: translateY(-50%) rotate(180deg);
  }

  header .dropdownMenu:hover .sub-menu {
    opacity: 1;
    z-index: 2;
    visibility: visible;
  }

  header .dropdownMenu .sub-menu {
    min-width: 240px;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    /* border-top: 3px solid #f3d014; */
  }

  header .dropdownMenu:hover .sub-menu {
    opacity: 1;
    z-index: 2;
    visibility: visible;
  }

  header .dropdownMenu:hover .sub-menu {
    opacity: 1;
    z-index: 2;
    visibility: visible;
  }
}

header .sub-menu {
  background-color: #fff;
  position: absolute;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: all ease 0.3s;
  top: calc(100% + 0px);
  width: auto;
  left: inherit;
  bottom: inherit;
}



.slider-controls {
  bottom: 20px;
  right: 20px;
}

.swiper-pagination {
  bottom: 20px !important;
  left: 20px !important;
}

@media (max-width: 768px) {

  .top-bar div:nth-child(2) {
    display: none;
  }

  .top-bar {
    grid-template-columns: 1fr auto;
    padding: 8px 15px;
  }

  .nav-container {
    padding: 0px 1px;
  }

  .logo img {
    height: 63px;
    width: auto;
  }

  .mobile-menu-header {
    padding: 15px;
  }

    .mobile-logo {
        height: 41px;
    }
}

@media (max-width: 480px) {

  header nav {
    width: 280px;
  }

  .mobile-menu-header {
    padding: 12px;
  }
}

/* ================= SLIDER ================= */
.logo img {
  width: 100px;
}

body:not(.sidebarMenuOpen) header nav {
  animation: slideOut 0.3s ease forwards;
}

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


.BannerSection.space-mb-7 {
  margin-top: -50px;
  z-index: 1;
  position: relative;
  /* padding-top: 230px; */
}
/* .BannerSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 20%);
    z-index: 4;
} */
.SliderWrapper {
  position: relative;

}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.BannerSection .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 250px 0px 180px 0px;
  height: auto;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-top: 50px;
  left: 0px;
}




.promotion-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promotion-title {
  font-family: Lato;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 45px;
  text-transform: capitalize;
  color: #fff;
  display: inline-block;
  width: 340px;
  padding: 12px 22px;
  border-radius: 35px;
  background: #AF0011;
  border-radius: 0px 35px 35px 5px;
}

.promotion-heading {
  color: #FFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Lato;
  font-size: 75px;
  font-style: normal;
  font-weight: 800;
  line-height: 85px;
  margin: 10px 0px;
}

.promotion-content p {
    color: #E5E7EB;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin: 8px 0px;
}

.mt-3 {
  margin-top: 20px;
}

.shop-button {
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  /* 100% */
  padding: 15px 30px;
  display: inline-block;
  /* width: 174px; */
  transition: all 0.5s ease-in;
  border: 1px solid transparent;
  border-radius: 23px;
  background: #AF0011;
  color: #fff;
}

.shop-button i {
  margin-left: 8px;
  font-size: 13px;
}

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

.bannerslide {
  height: 100vh;
  /* ya requi#AF0011 height */
}

.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  background: #F1C8CE;
  opacity: 0.6;
}

.shop-button:hover {
  background-color: #111111;
  border-radius: 30px;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  color: #fff;
}

.BannerSection .custom-pagination {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: 50px;
}

.custom-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active.swiper-pagination-bullet-active {
  width: 30px;
  height: 7px;
  background-color: #AF0011;
  border-radius: 10px;
}

.custom-pagination .swiper-pagination-bullet {
  background-color: #fff !important;
  opacity: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .promotion-title {
    font-size: 20px;
  }

  .promotion-heading {
    font-size: 28px;
  }

  .promotion-description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .shop-button {
    align-self: center;
  }

  .promotion-image {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .promotion-content {
    padding: 25px 15px;
  }

  .promotion-title {
    font-size: 18px;
  }

  .promotion-heading {
    font-size: 26px;
    padding: 5px 0px;
  }

  .promotion-description {
    font-size: 14px;
  }

  .shop-button {
    padding: 10px 25px;
    font-size: 14px;
  }
}

.BannerSection .swiper-button-next {
  bottom: 20px !important;
  position: absolute;
}

.promotion-section {
  max-width: 1200px;
  margin: auto;
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.bannerslide {
  height: 90vh;
}

/*****************Banner******************/
.experience {
  background: #4a4a4a;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 160px;
}

.section-title {
  color: #FFF;
  font-family: Lato;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  /* 100% */
}

.section-subtitle {
  color: #ddd;
  margin-bottom: 40px;
}

.experience-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: absolute;
  margin: auto;
  top: bottom;
  bottom: -203px;
  margin: auto;
  left: 0px;
  right: 0px;
}

.experience-order li {
  line-height: 25px;
  font-family: Lato;
 font-size: 16px;
    font-style: normal;
    font-weight: 400;
  font-style: normal;
  position: relative;
  line-height: 16px;
  margin-bottom: 10px;
  color: #696969;
  padding: 8px;
  text-align: left;
  padding-left: 0px;
}

/* 
.experience-order li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='3.5' fill='white' stroke='%23AF0011'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.1665 10.3964C4.40695 9.93318 4.88785 9.35413 5.72942 9.58575C6.45077 9.81737 6.93167 10.5122 7.29235 11.4387C10.1777 8.31183 12.5822 6.11143 15.4676 5.41656C15.8283 5.41656 15.9485 5.41656 15.7081 5.64819C12.5822 7.73278 9.57661 10.8597 7.17212 14.913C7.0519 15.0289 6.93167 15.0289 6.81145 14.913C6.33055 13.7549 5.96987 12.5968 5.36875 11.4387C5.1283 10.8597 4.76763 10.3964 4.1665 10.3964Z' fill='%23AF0011'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
} */

.experience-order li:last-child {
    color: #AF0011;
    font-weight: 600;
    font-size: 22px;
}

.pretitle {
  color: #FFF;
  font-family: Lato;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  color: #FFF;
  font-family: Lato;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
}

.experience-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 45px 25px;
  border-radius: 10px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  color: #fff;
  width: calc(25% - 20px);
}

.experience-card {
  border-radius: 17px;
  border: 2px solid #FFF;
  background: #AF0011;
}

.experience-card:hover {
  border-radius: 17px;
  border: 2px solid #FFF;
  background: #404040;
}

/* <-------------journey--------------> */
.hwb-section {
  padding: 60px 20px;
  background: #f6f6f6;
  text-align: center;}

.hwb-container {
  max-width: 1100px;
  margin: auto;
}

/* Timeline */
.hwb-timeline {
  position: relative;
}

.hwb-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ddd;
  transform: translateX(-50%);
}

/* Items */
.hwb-item {
  width: 50%;
  padding: 20px;
  position: relative;
}

.hwb-left {
  left: 0;
  text-align: right;
}

.hwb-right {
  left: 50%;
  text-align: left;
}

/* Card */
.hwb-card {
  display: inline-block;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid transparent;
  transition: all 0.5s ease-in;
}

/* .flex-philosophy{display: flex;justify-content: space-around;align-items: center;} */
.flex-philosophy {
  /* display: flex; */
  /* justify-content: space-around; */
  /* align-items: center; */
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.flex-philosophy::after {
  content: '';
  position: absolute;
  background-image: url(../image/jiwar-logo.svg);
  background-repeat: no-repeat;
  width: 330px;
  height: 370px;
  background-size: 100%;
  right: -50px;
  top: -30px;
}


.flex-philosophy h2 {
  text-align: left;
  color: #404040;
}

.section-title.section-philosophy {
  font-size: 40px;
  line-height: 56px;
  margin-bottom: 20px;
}

.hwb-card:hover {
  border: 1px solid #af0011;
}

@media (min-width:900px) {
  .hwb-card {
    width: 70%;
  }
}

.hwb-card h4 {
  margin: 5px 0;
  font-size: 16px;
  color: #404040;
  padding: 6px 0px;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  display: block;
}

.hwb-card p {
  font-size: 15px;
}

/* Number badge */
.hwb-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #AF0011;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.hwb-left .hwb-badge {
  right: -38px;
}

.hwb-right .hwb-badge {
  left: -38px;
}


/* ðŸ“± Responsive */
@media (max-width: 768px) {

  .hwb-timeline::before {
    left: 20px;
    display: none;
  }

  .hwb-item {
    width: 100%;
    padding-left: 30px;
    text-align: left !important;
  }

  .hwb-left,
  .hwb-right {
    left: 0;
  }

  .hwb-badge {
    left: -20px !important;
    right: auto !important;
  }

}

/* <----------------operate--------------------> */

.wwo-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.wwo-title {
  font-size: 32px;
  margin-bottom: 30px;
}

/* =========================
   MAP BOX
========================= */
.wwo-map-box {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* MAP */
.wwo-map {
  position: relative;
  aspect-ratio: 3 / 1;
  height: 250px;
  object-fit: cover;
  margin: auto;
}

.wwo-map img {
  width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
}

/* =========================
   DOTS
========================= */
/* .dot {
  position: absolute;
  width: 14px;
  height: 14px;
background: #af0011ad;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.dot.active {
  background: black;
  transform: scale(1.3);
}


.dot::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
 background: #af001157;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}


.dot::before {
  content: attr(data-country);
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 3px 7px;
  font-size: 11px;
  border-radius: 4px;
  opacity: 0;
  transition: 0.3s;
}

.dot:hover::before {
  opacity: 1;
}


.uae {
  top: 58%;
  left: 60%;
}

.saudi {
  top: 58%;
  left: 54%;
}

.oman {
  top: 60%;
  left: 62%;
}

.jordan {
  top: 54%;
  left: 53%;
}

.iraq {
  top: 52%;
  left: 56%;
} */

/* =========================
   INFO CARD
========================= */
.info-card {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 260px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.4s;
  z-index: 5;
}

.info-card.active {
  opacity: 1;
  transform: translateY(0);
}

.info-card iframe {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 8px;
}

/* clickable map */
.map-frame {
  cursor: pointer;
}

/* =========================
   BUTTONS
========================= */
.wwo-buttons {
  margin-top: 20px;
}

.wwo-buttons button {
  margin: 5px;
  padding: 8px 15px;
  border-radius: 20px;
  border: none;
  background: #eee;
  cursor: pointer;
}

.wwo-buttons button.active {
  background: #AF0011;
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .wwo-title {
    font-size: 22px;
  }

  .wwo-map-box {
    padding: 10px;
  }

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

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

  /* .info-card {
    position: static;
    width: 100%;
    margin-bottom: 12px;
    opacity: 1;
    transform: none;
  } */

  .info-card iframe {
    height: 70px;
  }

  .wwo-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .wwo-buttons button {
    font-size: 13px;
    padding: 6px 12px;
  }
}












/* <-----------core section------------> */
.core-pillars {
  padding: 40px 0;
  /* background: #f7f7f7; */
}

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

.maintitle {
  margin-bottom: 15px;
  color: #404040;
  text-align: center;
  font-family: Lato;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  /* 100% */
}


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

.pillar-card {
    background: #fff;
    padding: 0px 20px 0px 0px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.0);
  text-align: left;
  transition: 0.3s;
  border: 1px solid transparent;
}

.pillar-card.active {
  position: relative;
}

.pillar-card.active::before,
.pillar-card.active::after {
  content: "";
  position: absolute;
  top: 10px;
  height: 80%;
  width: 1px;
  background: #c8c8c8;
}

/* Left border */
.pillar-card.active::before {
  left: -50px;
}

.para-white p {
  color: #fff;
  margin-bottom: 5px;
}

/* Right border */
.pillar-card.active::after {
  right: 0px;
}

.coretitle {
  color: #404040;
  padding: 15px 0px;
  font-family: Lato;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  display: block;
}

.pillar-card p {
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  /* 143.75% */
}


.pillar-icon {
    width: auto;
    height: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-size: 22px;
    border-radius: 10px;
    gap: 10px;
}

.pillar-icon img{width: 45px;height: 45px;}



/* Active Card */
/* .pillar-card:hover {
  border-radius: 10px;border: 1px solid #AF0011;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
} */


/* Hover */
.pillar-card:hover {
  transform: translateY(-5px);
}

/* Tablet */
@media(max-width:992px) {

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

}

/* Mobile */
@media(max-width:576px) {

  .pillars-grid {
    grid-template-columns: 1fr;
  }

}

/* <--------------service-----------------> */
.common-sec {
  margin: 80px 0;
  /* background: #f5f5f5; */
}

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


/* <-----------services--------------> */


.services-swiper {
  padding-top: 20px;
}

.swiper-slide {
  height: auto;
}

.services-box {
  box-shadow: 0px 0px 10px #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease-in;
  background-color: transparent;
  margin-bottom: 15px;
  border: 1px solid transparent;
  background-color: #fff;
}

.services-box:hover {
  border: 1px solid #AF0011;
  color: #fff;
  transform: translateY(5px);
}

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

.services-img {
  height: 260px;
  overflow: hidden;
  display: block;
  transition: all 0.5s ease-in;
}

.services-box img {
  transition: all 0.5s ease-in;
}

.services-box:hover img {
  transform: scale(1.1);
}

.services-cont {
  padding: 20px 35px;
}

.servicestitl {
  color: #494949;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: block;
}

.services-cont {
  color: #494949;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 10px;
  text-align: center;
}

.services-btn {
  border-radius: 5px;
  border-radius: 10px;
  border-radius: 23px;
  background: #AF0011;
  padding: 11px 22px;
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.4s ease-in;
  color: #FFF;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  /* 100% */
}

.services-btn i {
  font-size: 12px;
  margin-left: 4px;
}

.services-btn:hover {
  border: 1px solid #AF0011;
  background-color: transparent;
  color: #AF0011;
  border-radius: 30px;
  background-color: #fff;
}

.services .swiper-horizontal {
  touch-action: pan-y;
  padding: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
  opacity: 0;
}

.services .swiper-button-next,
.services .swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  background: rgb(84 83 73);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  transition: background-color 0.3s;
  top: 60% !important;
  background-color: #AF0011;
  color: #fff !important;
}

.services-cont p {
  color: #404040;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

.services .swiper-button-next i,
.services .swiper-button-prev i {
  color: #fff;
}

.services .swiper-button-prev {
  transform: rotate(180deg);
  left: -40px !important;
}

.services .swiper-button-next {
  right: -40px !important;
}

a.casebadge {
  color: #404040;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  border-radius: 13.5px;
  border: 1px solid #A1A1A1;
  background: #FFF;
  padding: 4px 10px;
}

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

.pagination img {
  margin: auto;
  display: block;
}

.services-cont.case-contt {
  text-align: left;
}

.services-cont.case-contt p {
  text-align: left;
}

.services-cont.case-contt p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* kitni line show karni hai */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Founder Section ===== */
/* ===== Founder Section ===== */


/* grid layout */
.founder-wrapper {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
  border-radius: 0 16px 16px 0;
   background: #959595;
  padding: 0px;
  border-radius: 12px;
  overflow: hidden;
}

/* founder image */
.founder-img{
    background-color: #d6d6d8;
}

.founder-img img {
    width: 100%;
    display: block;
    height: 560px;
    object-fit: contain;
}

/* content */
.founder-content {
  max-width: 600px;
}

/* subtitle */
.founder-subtitle {
  color: #fff;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 100% */
}

/* name */
.founder-title {
  font-size: 28px;
  color: #c40000;
  font-weight: 700;
  margin: 10px 0px;
  color: #fff;
  font-family: Lato;
  font-size: 35px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
}

/* role */
.founder-role {
  color: #fff;
  font-family: Lato;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}

/* text */
.founder-content p {
  color: #fff;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  /* 143.75% */
}

/* button */
.founder-btn {
  display: inline-block;
  margin-top: 10px;
  background: #c40000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

.founder-btn:hover {
  background: #404040;
}


/* ===== Movement Section ===== */

.movement-section {
  background: url("../image/premiumgymbhagdad.jpg") center/cover no-repeat;
  padding: 160px 20px;
  position: relative;
}
.movement-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
    z-index: 1;
}




.movement-content {
    max-width: 700px;
    margin: auto;
    text-align: center;
    z-index: 1;
    position: relative;
}


.movement-title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}


.movement-tagline {
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
  color: #FFF;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  border-radius: 14px;
  background: rgba(175, 0, 17, 0.25);
  display: inline-block;
  padding: 7px 17px;
}


.movement-text {
  color: #FFF;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  /* 143.75% */
}

.slider-finals {
  width: 100%;
  overflow: hidden;
  height: 400px;
  object-fit: cover;
}

/* ===== Tablet Responsive ===== */

@media (max-width:992px) {

  .founder-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-img {
    max-width: 260px;
    margin: auto;
  }

}


/* ===== Mobile Responsive ===== */

@media (max-width:600px) {

  .founder-section {
    padding: 40px 0;
  }

  .founder-wrapper {
    padding: 0px;
    gap: 20px;
  }

  .founder-title {
    font-size: 22px;
  }

  .movement-title {
    font-size: 24px;
  }

  .movement-overlay {
    padding: 60px 15px;
  }

}
/* <------------project------------> */
.project-slider {
  width: 100%;
  padding: 60px 0;
}
.project-contt{margin: auto;max-width: 1200px;left: 0px;overflow: hidden;}
.project-slider {
  width: 100%;
  padding: 60px 0;
}

.project-slider .swiper {
  overflow: visible;
}

.project-slide {
  transition: all 0.4s ease;
  transform: scale(0.75);
  opacity: 0.4;
}
.project-contt .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    bottom: -60px !important;
}
.project-slide img {
  width: 100%;
  border-radius: 0px;
  display: block;
}

/* Center Active Slide */
.project-slide.swiper-slide-active {
  transform: scale(1.15) !important;
  opacity: 1;
  z-index: 3;
}

/* Side Slides */
.project-slide.swiper-slide-prev,
.project-slide.swiper-slide-next {
  transform: scale(0.9) !important;
  opacity: 0.7;
}

/* Pagination */
.project-pagination {
  text-align: center;
  margin-top: 30px;display: none;
}

.project-pagination .swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
}

.project-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #000;
}
.services-box.services-after{position: relative;}
.services-box.services-after::after{
content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ccc; /* opacity adjust kar sakte ho */
    z-index: 1;
}
/* Responsive */
@media (max-width: 768px) {
  .project-slide {
    transform: scale(0.9) !important;
  }

  .project-slide.swiper-slide-active {
    transform: scale(1) !important;
  }
}

/* <--------testimonial-----------> */

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

.text-center p {
  margin: -10px 0px 10px 0px;
}

.testimonial-info {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  border-radius: 22px 10px 10px 50px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-card {
  position: relative;
  background: #fff;
  padding: 20px 25px 30px;
  text-align: left;
  border-radius: 20px;
  transition: all 0.5s ease-in;
}

.testimonial-card p {
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  margin: 5px 0;
}

.testimonial-card h4 {
  color: #404040;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 100% */
  margin-bottom: 15px;
}

p.hextest {
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  /* 100% */

  margin: 0px;
}

.testimonial-txt {
  padding-top: 15px;
  text-align: left;
  padding-left: 20px;
}

.testimonial-card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
}

.swiper.testimonial-swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  width: 100%;
  margin: auto;
  padding-bottom: 20px;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.testimonial-card span {
  font-size: 13px;
  color: #777;
}


.stars {
  color: #F5BF38;
  margin: 5px 0px;
  font-size: 20px;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px #ccc;
}

.avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}


/* Mobile */
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
}


.section-heading p {
  line-height: 25px;
}

.swiper.testimonial-swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  width: 100%;
  margin: auto;
  padding-bottom: 50px;
  padding-top: 30px;
}

.testimonial-sec {
  display: none;
}

.testimonial-sec .swiper-horizontal.testimonial-sec .swiper-pagination-bullets,
.testimonial-sec .swiper-pagination-bullets.swiper-pagination-horizontal,
.testimonial-sec .swiper-pagination-custom,
.testimonial-sec .swiper-pagination-fraction {
  bottom: -10px;
  top: var(--swiper-pagination-top, auto);
  left: 0px;
  width: 100%;
  right: 0px;
  z-index: 1;
  position: relative;
  margin: auto;
  /* display: block; */
  justify-content: center;
  bottom: -25px !important;
}

.swiper-pagination-bullet {
  width: 39px !important;
  height: 3px !important;
  background: #AF0011 !important;
  border: 1px solid #AF0011;
  color: transparent;
  font-size: 14px;
  font-weight: 600;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px !important;
  transition: all 0.3s ease;
}

/* <--------------blog insight------------> */
.gcctitle {
  color: #404040;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 125% */
  text-transform: capitalize;
  padding: 7px 0px;
  display: block;
}

.blog-insight {
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 100% */
  text-transform: capitalize;
  padding: 10px 0px;
  display: block;
}







/* <---------book-sec----------> */

.book-contt {
  padding: 100px 80px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  align-items: center;    background-position: bottom;
}

.booktitle {
  color: #fff;
  font-family: Lato;
  font-size: 35px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
  /* 114.286% */
  margin-bottom: 20px;
}


.book-contt p {
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  /* 143.75% */

}

 
  @media (max-width: 540px) {
    .new-map-tabs { gap: 0.4rem; }
    .new-map-tab  { font-size: 0.8rem; padding: 0.45rem 1rem; }
    .new-map-wrapper { aspect-ratio: 4/3; }
  } */

   .new-map-section {
    width: 100%;
	  
    max-width: 900px;
	    margin: auto;
  }
    .new-map-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.6rem;
    line-height: 1.2;
  }

.operate-map {
  padding: 40px 20px;
}

.operate-map__title {
  text-align: left;
  margin-bottom: 20px;
}

/* Responsive wrapper */
.operate-map__wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
	margin:auto;
}

/* Image responsive */
.operate-map__wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pins */
.operate-map__pin {
    position: absolute;
    width: 12px;
    height: 17px;
    background-image: url(../image/location.svg);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: 100%;
    /* background-size: cover; */
}

/* Pulse effect */
/* .operate-map__pin::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,0,0,0.4);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  z-index: -1;
} */

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Tooltip */
.operate-map__pin::before {
  content: attr(data-name);
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: 0.3s;
  white-space: nowrap;
}

.operate-map__pin:hover::before {
  opacity: 1;
}

/* Mobile Optimization */
/* @media (max-width: 768px) {
  .operate-map__pin {
    width: 12px;
    height: 12px;
  }
} */

/* @media (max-width: 480px) {
  .operate-map__pin {
    width: 10px;
    height: 10px;
  }
} */
/*=======================footer================*/
/* ===== FOOTER MAIN ===== */
footer {
  background-color: #F6F8F9;
}

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


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

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


.footer-col h4 {
  color: #404040;
  font-family: Lato;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 100% */
  margin-bottom: 30px;
}

/* Paragraph */
.footer-col p {
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  /* 143.75% */
}

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

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

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

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


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

.info-item a i {
  color: #AF0011;
  font-size: 13px;
  width: 26px;
  display: flex;
  margin: auto;
  text-align: center;
  overflow: hidden;
  background-color: #AF0011;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0px;
}

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

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

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

.footer-col h5 {
  color: #4A4240;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 20px;
}

.social-icons a {
  font-size: 16px;
  color: #6b4c2f;
  border-right: 1px solid #AF0011;
  padding-right: 10px;
}

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

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

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

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

.footer-bottom p {
  margin: 0;
  font-size: 15px;
  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: #AF0011;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;

}

.social-icons a i:hover {
  color: #4A4240;
}

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

.pt-3 {
  padding-bottom: 20px;
}

/* ===== 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 #AF0011;
    padding-bottom: 20px;
  }

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

/* <------add footer -------------> */

/* 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 #4A4240;
}

.quick-links-box ul li a {
  display: block;
  padding-right: 30px;
  color: #4A4240;
  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;
  color: #404040;
  font-family: Lato;
  font-family: Lato;
  /* font-size: 16px; */
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.quick-links-box ul li a:hover {
  color: #AF0011;
  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='%23AF0011'/%3E%3Cpath d='M8 16.9067L16 8.90662M16 8.90662V14.9067M16 8.90662H10' stroke='%23AF0011' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* <----------------about-------------------> */
/* banner section */
.inner-banner {
  background-repeat: no-repeat;
  min-height: 450px;
  background-size: cover;
  position: relative;

}

/* dark overlay */


/* content */
.inner-banner-content {
  max-width: 800px;
  padding-top: 170px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  height: 420px;
}

/* title */
.inner-banner-title {
  color: #FFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: 'Lato', sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 50px;
  margin-bottom: 10px;
}

/* subtitle */
.inner-banner-subtitle {
    color: #E5E7EB;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin: 14px 0px;
}

/* breadcrumb */
.inner-banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inner-banner-breadcrumb a {
  color: #E5E7EB;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.inner-banner-breadcrumb span {
  color: #E5E7EB;
}

.inner-banner-breadcrumb {
  bottom: 10px;
  gap: 8px;
  position: absolute;
}

.about-cn {
  max-width: 700px;
  margin: 70px auto;
  text-align: center;
}

.core-bg {
  background: #404040;
  padding: 80px 0px;
}

.core-bg .section-heading h2,
.core-bg .section-heading p {
  color: #fff;
}

.about-jw p {
  line-height: 25px;
}

/* <--------------inner service--------------> */
/* section */
.gym-section {
  padding: 60px 0;
}

/* layout */
.gym-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* title */
.gym-title {
  color: #404040;
  font-family: Lato;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  /* 100% */
  margin-bottom: 10px;
}

/* description */
.gym-desc {
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  /* 143.75% */
  margin-bottom: 20px;
}

.gym-op .gym-content {
  order: 2;
}

/* subtitle */
.gym-subtitle {
  color: #404040;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 20px;
}

/* list */
.gym-list {
  color: #404040;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 100% */
  margin: 0 0 25px 0;
}

/* list item */
.gym-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #555;
  padding: 3px 0px 3px 31px;
}

/* custom tick */
.gym-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='3.5' fill='%23AF0011' stroke='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.1665 10.3964C4.40695 9.93318 4.88785 9.35413 5.72942 9.58575C6.45077 9.81737 6.93167 10.5122 7.29235 11.4387C10.1777 8.31183 12.5822 6.11143 15.4676 5.41656C15.8283 5.41656 15.9485 5.41656 15.7081 5.64819C12.5822 7.73278 9.57661 10.8597 7.17212 14.913C7.0519 15.0289 6.93167 15.0289 6.81145 14.913C6.33055 13.7549 5.96987 12.5968 5.36875 11.4387C5.1283 10.8597 4.76763 10.3964 4.1665 10.3964Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.gym-list.list-none li::before{display: none;} 
.gym-list.list-none li{
    padding-left: 0px !important;
}
/* buttons */
.gym-buttons {
  display: flex;
  gap: 15px;
}

/* secondary button */
.services-btn.bbtn {
  border-radius: 23px;
  background: #404040;
}

.services-btn.bbtn:hover {
  border: 1px solid #404040;
  background-color: #fff;
  color: #404040;
}

/* image */
.gym-image {
    background-color: #d6d6d8;
    border-radius: 10px;
}
.gym-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    height: 400px;
    object-fit: contain;
}

a.shop-button.prbtn {
  padding: 14px 24px;
}

/* mobile responsive */
@media (max-width:768px) {

  .gym-wrapper {
    grid-template-columns: 1fr;
  }

  .gym-image {
    order: -1;
  }

  .gym-title {
    font-size: 24px;
  }
.gym-image img {
    height: 420px;}
}

.gym-content p {
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  margin: 5px 0px 15px 0px;
}

/* * <--------------blog-----------> */
*/ .inblog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.inner-banner img {
  width: 100%
}

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

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

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


/* ðŸ“± Mobile */
@media (max-width: 520px) {
  .contact-wrapper {
    margin: 40px auto;
    padding: 40px 40px;
  }
}

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

.inner-blog-listing img {
  width: 100%;
  border-radius: 10px;
}

.blog-details-section img {
  height: 340px;
  object-fit: cover;
}

.inner-blog-listing img {
  width: 100%;
  border-radius: 10px;

}

.blog-cardsx-inn {
  flex: 2;
 padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #ffffff;
}

.blog-sidebar {
  flex: 1;
}

@media (min-width: 993px) {
  .blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
  }
}

.sidebar-widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  padding-top: 0px;
}

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

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

.recommended-post-title {
  color: #443f3e;
  /* font-family: Lato; */
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
}

.recommended-post-content {
  flex: 1;
}

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

.recommended-post {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  list-style-type: none;
}

.recommended-post-date {
  color: #494949;
  font-family: Lato;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  padding: 10px 0px 5px 0px;
}

.sidebar-title {
  color: #4A4240;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 100% */
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog-in-cnt {
  margin-top: 10px;
}

.blog-card-full-description p {
  margin: 10px 0px 20px 0px;
  color: #404040;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

section.inblog.featureprdct {
  padding: 0px 0px;
  padding-top: 80px;
  padding-bottom: 0px !important;
}

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



/* <------------contact---------------> */
.contact-wrapper {
  margin: 0px auto Im !important;
  padding: 60px 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contacttitle {
  color: #404040;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  /* 100% */
  margin-bottom: 30px;
}

/* contact cards */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: #fff;
  padding: 60px 30px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border: 1px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  border: 1px solid #af0011;
}

.contact-card i {
  background: #af0011;
  color: #fff;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-card a {
  color: #494949;
  font-family: Lato;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  /* 100% */
}

.contact-card a:hover {
  color: #af0011;
}



/* form section */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mt-5 {
  margin-top: 60px;
}

.contact-form input,
.contact-form textarea {

  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #af0011;
}

.contact-form label {
  color: #656565;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 10px;
  display: block;
}

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

.contact-form button {
  background: #af0011;
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #af0011;
  transition: all 0.5s ease-in;
}

.contact-form button:hover {
  background: #fff;
  color: #af0011;
}

/* map */

.map iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 0;
  min-height: 420px;
}

/* mobile */

@media(max-width:900px) {

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map iframe {
    min-height: 300px;
  }

}

/* <----------------faq section-----------------> */
.faqmain-title {
  color: #404040;
  font-family: Lato;
  font-size: 35px;
  font-style: normal;
  font-weight: 900;
  line-height: 35px;
  margin-bottom: 10px;
  line-height: 44px;
  /* 125.714% */
  text-align: center;
}

.faq-section {
  margin: 80px 0px !important;
  padding: 0px 0px 0px !important;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}


.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 17px 20px;
  border-radius: 10px;
  border: 1px solid #404040;
}

.faq-item.active {
  margin-bottom: 20px;
}

.faq-item.active .faq-question {
  margin-bottom: 0px;
  border-radius: 10px 10px 0 0;
}

.icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  background: #af0011;
  overflow: hidden;
  transition: max-height 0.1s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  border-radius: 0 0 13px 13px;

  padding: 10px;
  color: #fff;
  padding: 10px 30px;
}

.faq-answer p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  /* 143.75% */
}

.finalslide img,.finalslide .swiper-slide{border-radius: 10px;overflow: hidden;}


/* <----------new service page----------------> */
.strategy {
  width: 100%;
}

.strategy__row {
  display: flex;
  min-height: 400px;
}

.strategy__row.reverse {
  flex-direction: row-reverse;
}

.strategy__img,
.strategy__content {
  width: 50%;
}

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

.strategy__content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f8f8;
}

.strategy__content h2 {
  font-size: 26px;
  margin-bottom: 10px;
}.strategy__row {
  display: flex;
  min-height: 400px;
}

.strategy__row.reverse {
  flex-direction: row-reverse;
}
.strategy__img, .strategy__content {
    width: 50%;
    margin-bottom: -5px;
    overflow: hidden;
}
.business-subtitle {
    font-size: 23px;
    font-weight: 500;
    padding: 0px 0px 10px 0px;    color: #404040;
}
h6.outcome {
    font-size: 20px;
    font-weight: 600;
    color: #404040;
}
.strategy__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy__content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f8f8;
}

.strategy__content h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 20px;
}

.strategy__content ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.strategy__content ul li {
  margin-bottom: 8px;
}

.outcome {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .strategy {
    width: 100%;
    margin-top: 50px;
}
  .strategy__row,
  .strategy__row.reverse {
    flex-direction: column;
  }

  .strategy__img,
  .strategy__content {
    width: 100%;
  }

  .strategy__content {
    padding: 30px;
  }
}

/* <------------project page----------------> */ 
.project-banner {
    background: #f6f6f6;
    text-align: center;
    padding: 60px 20px 80px;
}

/* Container */
.project-banner__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Logo Section */
.project-banner__logo {
  text-align: center;
}
.project-banner__logo img {
  width: 280px;
  height: auto;
}
.pro-maintitle {
    color: #ffffff;
    font-family: Lato;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-top: 0px;
    padding: 15px;
}
.project-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    height: 430px;
    object-fit: contain;
}
.project-pd{padding: 20px;}
.project-pd{padding: 80px 0px;}
.power-gd{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.pillar-card.active::before, .pillar-card.active::after {
    content: "";
    position: absolute;
    top: 10px;
    height: 93%;
    width: 1px;
    background: #c8c8c8;
}
@media(min-width:1200px){.strategy__img img {
    height: 600px;        object-fit: cover;}}
/* Bottom Strip */
.project-banner__bottom {
    background: #c0392b;
    margin-top: 30px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: inline-block;
}

/* <--------------packages-----------------> */
.packages{
  max-width:1100px;
  margin:80px auto;
  padding:0 20px;
}

/* Card */
.package-card{
  position:relative;
  background:#fff;
  border-radius:14px;
  padding:30px;
  margin-bottom:45px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

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

/* Price Tag */
.price-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #af0011;
    color: #fff;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 500;
    border-bottom-left-radius: 10px;
}

/* Title */
.package-title{
  font-size:20px;
  font-weight:700;
  color:#af0011;
  margin-bottom:10px;
}

/* Description */
.package-desc{
  font-size:14px;
  margin-bottom:15px;
  color:#555;    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #555;
}

/* List */
.package-list{
  padding-left:18px;
  margin-bottom:15px;
}

.package-list li{
  margin-bottom:8px;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #555;
}

.package-list li::marker{
  color:#af0011;
}

/* Best For */
.best-for {
    font-style: italic;
    font-size: 17px;
    /* font-style: normal; */
    font-weight: 400;
    line-height: 24px;
    color: #555;
    margin-bottom: 10px;
    font-weight: 600;
}
/* Button */
.cta-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  background:#af0011;
  color:#fff;
  text-decoration:none;
  border-radius:20px;
  font-size:13px;
  transition:0.3s;
}

.cta-btn:hover{
  background:#000;
}

/* Mobile */
@media(max-width:768px){

  .packages{
    margin:50px auto;
  }

  .package-card{
    padding:20px;
  }

  .package-title{
    font-size:18px;        margin-top: 21px;
  }

  .price-tag{
    font-size:14px;
    padding:8px 12px;
  }

}


/* <-----------responsive--------------------> */
@media (max-width:1440px) {
  .promotion-section {
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
  }

  .promotion-content {
    flex: 1;
    padding: 0px;
  }

.project-banner__logo img {
    width: 250px;}
    .pro-maintitle {
    font-size: 30px;
    padding: 13px;
}
    header nav ul li a {
        padding: 20px 9px;}
}

@media (max-width:1280px) {
  .testimonial-card h4 {
    font-size: 18px;
  }

  .promotion-heading {
    font-size: 66px;
    margin: 7px 0px;
  }

  .experience-card {
    gap: 12px;
    padding: 25px 25px;
  }

  .pretitle {
    font-size: 22px;
    line-height: 27px;
  }

  .maintitle {
    font-size: 30px;
  }

  .common-sec {
    margin: 60px 0;
  }

  .coretitle {
    font-size: 24px;
  }

  .services-img {
    height: 210px;
  }

  .services-box img {
    height: 210px;
  }

  .coretitle {
    font-size: 22px;
    padding: 8px 0px;
  }

  .booktitle {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .footer-col h4 {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 20px;
  }
  .contact-header i{display: none;}
}

@media (max-width:1180px) {
  .contact-header a {
    margin-right: 90px;
  }

  .hamburgerMenuBtn {
    position: absolute;
    right: 20px;
  }

  .logo img {
    width: 120px;
  }

  .bannerslide {
    height: 80vh;
  }

  .promotion-section {
    left: 3%;
  }

  .promotion-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    width: 337px;
    padding: 10px 14px;
    border-radius: 0px 30px 30px 0px;
  }

  .promotion-heading {
    font-size: 52px;
    margin: 0px 0px;
  }
.pillar-card {
    padding: 35px 5px;}
.pillar-icon {
    margin-bottom: 15px;
}
  .experience {
    padding: 50px 20px;
    margin-bottom: 160px;
  }

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

  .experience-list {
    gap: 10px;
    bottom: -180px
  }

  .experience-card {
    gap: 7px;
    padding: 22px 17px;
    width: calc(25% - 10px);
  }

  .experience-card {
    padding: 22px 17px;
    width: calc(25% - 10px);
  }

  .coretitle {
    font-size: 20px;
    line-height: 18px;
  }

  p {
    font-size: 15px;
  }

  .services-cont {
    padding: 10px;
  }

  .services-img,
  .services-box img {
    width: 100%;
    height: 200px;
  }

  /* .movement-section {
    padding: 70px 0px;
  } */

  .swiper.testimonial-swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding-bottom: 20px;
    padding-top: 0px;
  }

  .swiper.testimonial-swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {

    padding-top: 0px;
  }

  .quick-links-box ul li a {
    font-size: 14px;
    line-height: 21px;
  }

  .header {
    padding: 0px 0px;
  }

  .recommended-post-title {
    font-size: 15px;
    line-height: 22px;
  }
      .project-banner__logo img {
        width: 200px;
    }
    .pillar-card.active::before {
    left: -20px;
}
}
@media(max-width:1160px){
  .founder-img img {
    object-fit: cover;
    object-position: top;
}
}
@media (max-width:991px) {
  .bannerslide {
    height: 75vh;
  }

  .experience {
    padding: 50px 0px;
  }

  .experience {
    padding: 50px 0px;
  }

  .pretitle {
    font-size: 17px;
    line-height: 21px;
  }

  .services .swiper-button-next {
    right: -20px !important;
  }

  .services .swiper-button-prev {
    left: -20px !important;
  }

  .founder-wrapper {
    grid-template-columns: 5fr 7fr;
    gap: 5px;
  }

  .founder-content {
    max-width: 100%;
    padding: 20px 0px;
  }

  .book-contt {
    padding: 60px 30px;
  }

  .book-b1 {
    width: 70%;
  }

  .inner-banner-content {
    max-width: 90%;
    padding-top: 70px;
    height: 320px;
  }

  .inner-banner {
    min-height: 320px;
  }

  .inner-banner-title {
    font-size: 44px;
    margin-bottom: 4px;
  }

  .experience-card {
    padding: 18px 15px;
    width: calc(25% - 10px);
  }

  .experience-card img {
    width: 70px;
  }

  .services-img,
  .services-box img {
    height: 160px;
  }

  .sidebar-widget {
    padding: 15px 10px;
    margin-bottom: 25px;
  }
  .pillar-card.active::before,.pillar-card.active::after{display: none;}

.pillars-grid {
    gap: 20px;
}
.pillar-card {
        padding: 25px 5px;
    }
    .inner-banner.inner-packages{ 
        padding-top: 149px;}
}

@media (max-width:900px) {
  .hwb-card {
    width: 100%;
  }

}

@media(max-width:800px) {
  .wwo-map {
    height: 140px;
  }

  .promotion-title {
    font-size: 30px;
  }

  .section-title.section-philosophy span {
    font-size: 40px;
    line-height: 56px;
  }

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

  .bannerslide {
    height: 80vh;
  }

  .experience-card {
    padding: 22px 17px;
    width: calc(48% - 10px);
  }

  .experience-list {
    gap: 10px;
    bottom: -240px;
  }

  .pillars-grid {
    gap: 10px;
  }

  .experience {
    padding: 50px 0px;
    margin-bottom: 200px;
  }

  section.inblog.featureprdct {
    padding-top: 60px;
  }

  .section-title.section-philosophy {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  
 .flex-philosophy::after {
        width: 270px;
        height: 330px;
        background-size: 80%;
        right: -10px;
        top: -10px;
        opacity: 0.6;
        left: 80px;
    }
.gym-list li {
    margin-bottom: 6px;}
    .hwb-section .mt-5{margin-top: 20px !important;}
    .project-banner__logo img {
        width: 160px;
    }
        .pro-maintitle {
        font-size: 25px;}
        .project-banner {
    padding: 40px 0px 0px;
}
  .power-gd {
        grid-template-columns: 1fr;
        text-align: left;
    }
   .inner-banner.inner-packages {
        padding-top: 0px;
        min-height: 200px;
    }
     .inner-banner.inner-packages .inner-banner-content {
        height: 170px;
    }
    .about-jw p {
    text-align: left;
}
}

@media(max-width:600px) {
  .pillars-grid {
        gap: 30px;
    }
.gym-list {
    margin: 0 0 0px 0;
}



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

  .founder-wrapper {
    grid-template-columns: 1fr;
  }

  .founder-img {
    max-width: 100%;
    margin: auto;
  }

  /* .movement-section {
    padding: 30px 0px;
  } */

  .movement-title {
    font-size: 36px;
  }

  .services .swiper-button-next {
    right: 40% !important;
    bottom: 0px !important;
    top: 87% !important;
  }

  .services .swiper-button-prev {
    left: 40% !important;
    bottom: 0px !important;
    top: 87% !important;
  }

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

  .book-contt {
    padding: 30px 20px;
    flex-wrap: wrap;
  }

  .book-b1 {
    width: 100%;
  }

  .booktitle {
    font-size: 23px;
    margin-bottom: 4px;
    line-height: 32px;
  }

  .footer-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .promotion-heading {
    font-size: 35px;
    margin: 0px 0px;
    line-height: 43px;
  }

  .promotion-title {
    font-size: 20px;
    line-height: 30px;
    width: 237px;
    padding: 2px 14px;
    border-radius: 0px 20px 20px 0px;
  }

  .promotion-section {
    left: 5%;
  }

  .inner-banner-title {
    font-size: 25px;
    margin-bottom: 4px;
    line-height: 34px;
  }

  .inner-banner-content {
    max-width: 100%;
    padding-top: 70px;
    height: 300px;
  }

  .inner-banner {
    min-height: 250px;
  }

  .about-cn {
    max-width: 100%;
    margin: 40px auto;
    text-align: center;
  }

  .core-bg {
    padding: 40px 0px;
  }

  .movement-title {
    font-size: 28px;
  }

  .movement-overlay {
    padding: 20px 10px;
  }

  .footer-logo img {
    max-width: 75px;
    margin-bottom: 14px;
  }

  .contact-header a {
    margin-right: 50px;
  }

  .contact-header a {
    padding: 9px 13px;
  }

  .pillar-card {
    padding:0px;
  }

  .inner-banner-content {
    padding-left: 0px;
  }

  .blog-details-section img {
    height: 220px;
  }

  .blog-card-full-description p {
    font-size: 15px;
  }

  .recommended-post-title {
    font-size: 15px;
  }

  .footer-wrap {
    padding: 40px 0px 30px;
  }

  .promotion-section {
    left: 5%;
  }

  .experience-list img {
    width: 25%
  }

  .experience-list {
    bottom: -202px;
  }

  .experience-card {
    padding: 19px 9px;
  }

  .pretitle {
    font-size: 15px;
    line-height: 19px;
  }

  .experience {
    margin-bottom: 160px;
  }
    .pillar-icon{justify-content: start;}


  .common-sec {
    margin: 50px 0;
  }

  .maintitle {
    font-size: 26px;
    line-height: 27px;
    margin-bottom: 10px;text-align: left;
  }

  .founder-content p {
    font-size: 15px;
  }

  .latest-swiper .swiper-button-next {
    right: 40% !important;
    bottom: 0px !important;
    top: 102% !important;
  }

  .latest-swiper .swiper-button-prev {
    left: 40% !important;
    bottom: 0px !important;
    top: 102% !important;
  }

  .casebt {
    margin-top: 50px;
  }

  .contact-wrapper {
    padding: 0px 20px;
  }

  .contacttitle {
    font-size: 30px;
    line-height: 29px;
    margin-bottom: 25px;
  }

  .contact-card {
    padding: 50px 30px;
  }

  .contacttitle {
    font-size: 27px;
  }

  .section-title {
    font-size: 25px;
    margin-bottom: 13px;
  }

  .founder-content {
    padding: 30px 15px;text-align: left;
  }

  .founder-title {
    font-size: 21px;
    margin: 0px 0px;
  }

  .recommended-post-avatar {
    width: 75px;
    height: 75px;
  }

  .hamburgerMenuBtn {
    right: 0px;
  }

  .inner-banner-title {
    position: absolute;
    top: 35%;
  }

  .inner-banner-subtitle {
    position: absolute;
    top: 45%;
  }

  .faqmain-title {
    font-size: 27px;
  }

  .faq-section {
    margin: 50px 0px !important;
  }

  .faq-question {
    font-size: 17px;
    margin-bottom: 20px;
    position: relative;
    padding: 15px 40px 15px 20px;
  }

  .icon {
    width: 12px;
    height: 12px;
    right: 17px;
    position: absolute;
    top: 17px;
  }

  .footer-col {
    padding-bottom: 0px;
  }

  .inner-banner-subtitle {
    line-height: 21px;
  }

  .gym-wrapper {
    gap: 10px;
  }

  .faq-item.active .faq-question {
    display: flex;
    justify-content: space-between;
  }

  .gym-title {
    font-size: 21px;
    font-weight: 700;
  }
  .slider-finals {
    height: 200px;}
    .gym-image img {
    height: 230px;}
        .promotion-section {
        top: 50%;}
        .BannerSection .mt-3 {
    margin-top: 10px !important;
}
.pillar-icon {
        margin-bottom: 5px;
    }
    .section-heading,.hwb-section{
    text-align: left;}
    .inner-banner.inner-packages .inner-banner-content {
        height: 170px;
    }
}

@media (max-width:500px) {
  .footer-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

     .bannerslide {
        height: 56vh;
    }
}

@media(min-width:3100px) {
  .bannerslide {
    height: 30vh;
  }

  .promotion-section {
    margin: auto;
    left: 0px;
    right: 0px;
    top: 40%;
  }

  section.inblog.featureprdct {
    padding-top: 60px;
  }
    .project-banner__logo img {
        width: 90px;
    }
}





/*  //spiral */

/* â”€â”€ Timeline â”€â”€ */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* The vertical dashed spine */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: repeating-linear-gradient(to bottom,
      var(--line) 0 6px,
      transparent 6px 14px);
  z-index: 0;
}

/* â”€â”€ Single step â”€â”€ */
.step {
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: center;
  min-height: 120px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Content left */
.step-content-left {
  padding-right: 24px;
  text-align: right;
}

/* Content right */
.step-content-right {
  padding-left: 24px;
  text-align: left;
}


.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #af0011;
  margin-bottom: 7px;
  line-height: 1.2;
}

.step-desc {
  font-size: 15px;
  line-height: 1.6;
}

/* Circle node */
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--card);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  z-index: 2;
}

/* Dashed ring around circle */
.step-circle::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed var(--line);
  animation: spin 18s linear infinite;
}

/* Dot indicator on circle edge */
.step-circle::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid white;
  box-shadow: 0 0 0 1px var(--red);
}

/* Dot position alternates */
.step:nth-child(odd) .step-circle::after {
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.step:nth-child(even) .step-circle::after {
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.step-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
}

.step-num {
    font-family: Lato;
    font-size: 28px;
    font-weight: 600;
    color: #101010;
    line-height: 1;
}

/* â”€â”€ Hero image â”€â”€ */
.hero-img-wrap {
  margin-top: 56px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  height: 260px;
  background: linear-gradient(135deg, #2a1a17 0%, #5c2b1f 40%, #9b4a35 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.hero-silhouettes {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 0;
}

/* SVG silhouette figures */
.figure {
  opacity: 0.85;
  animation: breathe 3.5s ease-in-out infinite;
}

.figure:nth-child(2) {
  animation-delay: 0.8s;
}

.figure:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes breathe {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.03) translateY(-3px);
  }
}
@media(max-width:800px){
  .project-slider {
    padding: 10px 0;
}
  .experience-order li {
    padding: 4px;}
  .hwb-section {
    padding: 50px 20px;}
    .hwb-container.hwb-mobile{max-width: 90%;padding: 0px 15px;}
}
/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 520px) {


    .timeline::before {
        left: 32px;
        transform: none;
    }

  .step {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto;
  }

  /* On mobile, circle always left, content always right */
  .step-content-left,
  .step-content-right,
  .step-empty {
    all: unset;
    font-family: 'DM Sans', sans-serif;
  }

  /* Reset all steps to left-circle layout */
  .step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .step-empty {
    display: none !important;
  }

  .step-content-left,
  .step-content-right {
    display: block;
    text-align: left;
    padding: 0;
  }

  /* Re-order: circle first, then content */
  .step-content-left {
    order: 2;
  }

  .step-circle {
    order: 1;
    flex-shrink: 0;
  }

  .step-content-right {
    order: 2;
  }

  .step-circle {
    width: 64px;
    height: 64px;
  }

  .step-num {
    font-size: 22px;
  }

  .step-circle::before {
    inset: -8px;
  }

  .step-circle::after {
    right: -4px !important;
    left: auto !important;
    top: 50% !important;
  }
    .quick-links-box ul li a {
        font-size: 15px;}
.founder-img img {
    height: 492px;}
        .project-banner__logo img {
        width: 110px;
    }
    .project-banner__container {
    gap: 25px;}
        .pro-maintitle {
        font-size: 21px;
        padding: 1px;
    }
    .project-image img {
    height: 260px;}
}
/* @media(max-width:470px){
 .bannerslide {
        height: 50vh;
    }
} */

.pillar-icon img{display:none;}
@media(max-width:300px){
  .contact-header a {
        padding: 9px 8px;
    }}
    
    li{letter-spacing: 1px;}

.contact-form , .map {
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #ffffff;
}


.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 0.7rem!important;
    font-weight: normal;
    display: block;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: #af0011 !important;
    color: #fff !important;
}


/* <------------porfolio----------> */
.portitle{font-size: 20px;color: #fff;font-weight: 600;color: #fff;padding-top: 10px;}
.portfolio-title{ font-size: 28px;
    font-weight: 500;
    margin: 10px 0px;
    color: #af222f;
    font-family: Lato;
    font-size: 35px;
    font-style: normal;
    font-weight: 900;
    line-height: 40px;
  }
  .portfolio-title span{color: #af1f23;  font-weight: 700;}
  .port-para p{color: #404040;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
    margin-bottom: 10px;}



/* <------------zx-----------------> */
.zx-skill-container{position: relative;}
.zx-skill-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom,transparent, #af0011, transparent);
  transform: translateX(-50%);
}
.zx-skill-container {
    max-width: 690px;
    margin: auto;
}
/* ROW */
.zx-skill-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 60px;
}

/* DOT */
.zx-skill-dot {
  width: 16px;
  height: 16px;
  background: #af0011;
  border-radius: 50%;
  margin: auto;
  box-shadow: 0 0 0 6px rgba(225, 29, 72, 0.15);
  z-index: 2;
}

/* BOX */
.zx-skill-box {
  padding: 25px 30px;
  border-radius: 18px;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  color: #111827;
  position: relative;
border: 1px solid transparent;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.05);

  transition: all 0.35s ease;
}

/* ALIGNMENT */
.zx-skill-box.left {
  text-align: right;
}

.zx-skill-box.right {
  text-align: left;
}

/* HIGHLIGHT */
.zx-skill-box.highlight {
  color: #af0011;
  font-weight: 500;
}

/* HOVER */
.zx-skill-box:hover {
border: 1px solid #af0011;
}

/* CONNECTOR LINES */
.zx-skill-box.left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 30px;
  height: 2px;
  background: #af0011;
  transform: translateY(-50%);
}

.zx-skill-box.right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 30px;
  height: 2px;
  background: #af0011;
  transform: translateY(-50%);
}

/* STAGGER (FIXED - using margin, not transform) */
.zx-skill-row:nth-child(odd) .zx-skill-box.left {
  margin-top: -20px;
}

.zx-skill-row:nth-child(odd) .zx-skill-box.right {
  margin-top: 20px;
}

.zx-skill-row:nth-child(even) .zx-skill-box.left {
  margin-top: 20px;
}

.zx-skill-row:nth-child(even) .zx-skill-box.right {
  margin-top: -20px;
}
.portfolio-highlight li span{color: #af0011;}
/* MOBILE */
@media (max-width: 500px) {

  .zx-skill-section::before {
    left: 20px;
  }

  .zx-skill-row {
    grid-template-columns: 0px 1fr;
   gap: 15px 0px;
  }

  .zx-skill-dot {
    grid-column: 1;
  }

  .zx-skill-box {
    grid-column: 2;
    text-align: left !important;
    margin-top: 0 !important;
  }

  .zx-skill-box::after {
    display: none;
  }
  .zx-skill-container::before{display: none;}
  .zx-skill-row {
    margin-bottom: 20px;
}
.zx-skill-box.highlight {
    color: #af0011;
    font-weight: 500;
}
    .zx-skill-dot {display: none;}
}

@media(max-width:600px){
  .portitle {
    font-size: 17px;
    font-weight: 500;
    padding-top: 80px!important;
}
section.zx-skill-section {
    padding-bottom: 30px;
}
}
@media(min-width:1200px){
  .flex-philosophy.flex-ld::after {
    background-size: 80%;}
}


.bourne-content {
    z-index: 999 !important;
}
.BannerSection .swiper-slide:before {
    content: '';
    position: absolute;
    background-color: #0000004a;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* <-----blog-detail-inbanner---------> */
@media(max-width:700px){
	.blog-detail-inbanner.inner-banner {
        min-height: 310px !important;
    }
	
	   .blog-detail-inbanner.inner-banner .inner-banner-title {
        position: absolute;
        top: 30%;
    }
	.blog-detail-inbanner.inner-banner .inner-banner-breadcrumb {
		align-items: start;
	}
.blog-detail-inbanner.inner-banner .inner-banner-breadcrumb {
	bottom: -30px;}
	
   .blog-detail-inbanner .inner-banner-title {
		font-size: 23px;}
}
.book-contt p{color:#fff;}
.arabic-text {
  font-family: 'Noto Sans Arabic', Arial, sans-serif;
  direction: rtl;
}


.btn-bg {
    background-color: #f7503e;
    padding: 0px 5px 0px 0px;
    border-radius: 3px;
}
.btn-bg a {
   
    color: #fff!important;
}
.btn-bg .sub-menu li a {
   
    color: #494949!important;
}
@media screen and (max-width: 1150px) {
   .btn-bg {
    padding: 0px 0px 0px 0px;
    border-radius: 0px;
}
	.btn-bg .sub-menu li a {
    color: #ffffff !important;
}
	.dropdownMenu {
  position: relative;
}

.dropdownMenu .dropdown-toggle {
  position: absolute;
  right: 15px;
  top: 35%;
  transform: translateY(0%);
  width: 20px;
  height: 20px;
  cursor: pointer;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='21'%3E%3Cpath d='M10.1099 11.3833L14.2266 7.26667L15.4099 8.43333L10.1099 13.7333L4.80994 8.43333L5.99327 7.26667L10.1099 11.3833Z' fill='%23ffffff'/%3E%3C/svg%3E");
  
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.dropdownMenu.open .dropdown-toggle {
  transform: translateY(0%) rotate(180deg);
	top:8%;
}

}
ul.dots{
	margin-bottom:0px!important;
}
ul.dots a {
    color: #af002f;
    font-size: 16px;
}
.dots li {
  position: relative;
  padding-left: 18px; /* space for dot */
}

.dots li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 8px;
  height: 8px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Ccircle cx='4' cy='4' r='4' fill='%23AF0011'/%3E%3C/svg%3E");
  
  background-size: contain;
  background-repeat: no-repeat;

}




.foundation-learning-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}
 
.foundation-learning-section .section-heading {
  margin-bottom: 50px;
  text-align: center;
}
 
.foundation-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto 0;
  font-weight: 500;
}
 
.foundation-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
 
.foundation-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
 
.foundation-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}
 
.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
 
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #af1f23;
  margin-bottom: 20px;
  line-height: 1.4;
}
 
.learning-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}
 
.learning-list li {
  color: #333;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.6;
}
 
.card-subtitle {
  font-size: 14px;
  color: #af1f23;
  font-style: italic;
  line-height: 1.6;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
 
/* Responsive Design */
 
@media (max-width: 1024px) {
  .foundation-cards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .foundation-card {
    padding: 35px;
  }
}
 
@media (max-width: 768px) {
  .foundation-learning-section {
    padding: 40px 0;
  }
 
  .foundation-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
 
  .foundation-card {
    padding: 30px;
  }
 
  .card-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
 
  .learning-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }
 
  .foundation-intro {
    font-size: 15px;
  }
 
  .card-subtitle {
    font-size: 13px;
  }
}
 
@media (max-width: 480px) {
  .foundation-learning-section {
    padding: 30px 0;
  }
 
  .foundation-card {
    padding: 20px;
  }
 
  .card-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
 
  .learning-list {
    padding-left: 18px;
  }
 
  .learning-list li {
    font-size: 13px;
    margin-bottom: 8px;
  }
 
  .foundation-intro {
    font-size: 14px;
  }
 
  .card-subtitle {
    font-size: 12px;
  }
}
 
/* Animation override for better performance */
@media (prefers-reduced-motion: reduce) {
  .foundation-card {
    transition: none;
  }
 
  .foundation-card:hover {
    transform: none;
  }
}

p.below-italic {
    color: #ffff;
    font-size: 17px;
    font-style: oblique;
}
.redbold {
    color: #af0011;
}
.redbold h4 {
    margin-bottom:5px;
}
.mainpara p {
    margin-bottom: 10px;
}
.mainpara {
    margin-top: 15px;
}

.founder-wrappernnew {
    background: #959595;
    padding: 40px;
    border-radius: 18px;
}
.founder-contentxz p{
	color:#fff;
}

p.inner-banner-subtitlexc {
    color: #fff;
}

@media (max-width: 600px) {
    .book-contt {
        padding: 17px 17px!important;
        flex-wrap: wrap;
    }
.foundation-intro{text-align:left;}
	.pillars-grid-space{gap: 0px;}
	.pillars-grid-space p{line-height: 25px;}
	.packages.package-abp .package-card{margin-bottom: 5px;padding-bottom: 0px;}
	
	
}
li.redbold {
    color: #f7503e;
    font-weight: 700;
}
.highlight-para p{color: #af0011;padding:0px;margin:3px; 0px}

	
/* 	<---------add css for pop-up-----> */


