:root {
  --color-black: #1e1e1e;
  --color-super-black: #000000;
  --color-one: #0d1a2c;
  --color-two: #0C2975;
  --color-white: #ffffff;
  --color-grey: #f4f4f4;
  --color-pureGrey: #808080;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --font-main: "Oxanium", sans-serif;
  --font-size: 15px;
  --font-weight: 500;
}
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
::-moz-selection {
  /* Code for Firefox */
  color: var(--color-white);
  background: var(--color-one);
}
::selection {
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.3);
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
i {
  font-style: normal;
}
.site-container {
  background: var(--color-white);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12);
  margin: 0 auto;
  max-width: 1600px;
  word-wrap: break-word;
  position: relative;
}
.site-container::after {
  clear: both;
  content: " ";
  display: block;
}
input:focus,
textarea:focus,
select:focus,
:focus {
  outline: none;
}
p {
  line-height: 24px;
  text-align: justify;
}
a,
.home-explore-box-content-box a:after,
.home-news-box a:after,
.home-video-box a:before,
ul.home-super-speciality-list li a,
ul.home-super-speciality-list li a h3 {
  outline: 0 !important;
  text-decoration: none;
  color: var(--color-black);
  -webkit-transition: color 0.4s, background-color 0.4s;
  -moz-transition: color 0.4s, background-color 0.4s;
  -o-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a:hover {
  text-decoration: none;
  color: var(--color-green);
}
.pad0 {
  padding: 0;
}
strong {
  font-weight: 600 !important;
}
.back-to-top {
  position: fixed;
  z-index: 1000;
  bottom: 8em;
  right: 15px;
  text-decoration: none;
  color: rgba(46, 45, 45, 0.5);
  border-radius: 100px;
  background: rgba(244, 244, 244, 0.5);
  font-size: 22px;
  padding: 8px 10px;
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.46);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.46);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.46);
}
.back-to-top:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(46, 45, 45, 1);
  text-decoration: none !important;
}

/* Menu start here  */
.mainMenu ul.toggle {
  position: fixed;
  z-index: 1000;
  top: 40px;
  right: 7%;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.mainMenu ul.toggle li {
  position: absolute;
  left: 5%;
  transform: translateY(-50%);
  height: 4px;
  width: 90%;
  list-style: none;
  background: var(--color-two);
  transition: 0.9s;
  border-radius: 20px;
}
.mainMenu ul.toggle li:nth-of-type(1) {
  top: 20%;
}
.mainMenu ul.toggle li:nth-of-type(2) {
  top: 50%;
}
.mainMenu ul.toggle li:nth-of-type(3) {
  top: 80%;
}
.mainMenu ul.toggle.active li:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: var(--color-white);
}
.mainMenu ul.toggle.active li:nth-of-type(2) {
  left: -100%;
  opacity: 0;
  background: var(--color-white);
}
.mainMenu ul.toggle.active li:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  background: var(--color-white);
}
/******Sidebar******/
.mainMenu .sidebar {
  position: fixed;
  right: -100%;
  bottom: 0;
  background: rgb(31 64 123 / 95%);
  color: var(--color-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 100px 0px 50px 0;
  transition: 0.9s;
  z-index: 999;
  overflow-y: auto;
}
.mainMenu .sidebar.active {
  right: 0;
}

.mainMenu .sidebar .main-menu-box h2 {
  position: relative;
  z-index: 0;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 0 5px 0;
  margin: 0 0 20px 0;
}
.mainMenu .sidebar .main-menu-box h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--color-one);
  width: 90px;
  height: 5px;
}
.mainMenu .sidebar .main-menu-box h2 a {
  color: var(--color-white);
}
.mainMenu .sidebar .main-menu-box h2 a:hover {
  color: var(--color-one);
}

.mainMenu .sidebar .main-menu-box h3 {
  position: relative;
  z-index: 0;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0;
  margin: 10px 0 10px 0;
  color: var(--color-one);
  display: inline-block;
  width: 100%;
}
.mainMenu .sidebar .main-menu-box ul {
  margin: 0 0 15px 0;
  padding: 0;
  list-style: none;
}
.mainMenu .sidebar .main-menu-box ul li a {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.mainMenu .sidebar .main-menu-box ul li a:hover {
  color: var(--color-one);
}

.mainMenu .sidebar .main-menu-box ul.in li {
  position: relative;
  padding-top: 0px;
  padding-left: 15px;
  padding-bottom: 0px;
}
.mainMenu .sidebar .main-menu-box ul.in li a {
  color: var(--color-white);
}
.mainMenu .sidebar .main-menu-box ul.in li::before {
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  left: 0px;
  position: absolute;
  top: 10px;
  font-size: 5px;
  font-weight: 900;
  color: var(--color-white);
}
.mainMenu .sidebar .main-menu-box ul.in li a:hover {
  color: var(--color-one);
}
.top-menu-btn {
  position: absolute;
  top: 10px;
  right: 15px;
}
/* Menu end here */

.linkBlack {
  color: var(--color-black);
  font-weight: 600;
  text-decoration: underline;
}
.linkBlack:hover {
  color: var(--color-green);
}
.linkone {
  color: var(--color-one);
  font-weight: 600;
  text-decoration: underline;
}
.linkone:hover {
  color: var(--color-black);
}
.linkWhite {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: underline;
}
.linkWhite:hover {
  color: var(--color-black);
}

.colorone {
  color: var(--color-one);
}

#menu-toggle {
  z-index: 1;
  position: absolute;
  bottom: 32%;
  right: 0;
}
.coming-soon {
  position: relative;
  font-size: 18px;
  z-index: 0;
  width: 100%;
}
.coming-soon::before {
  content: "coming soon . . .";
  left: 0;
  position: absolute;
  top: 0;
  font-size: 55px;
  font-weight: 900;
  color: #f0f0f0;
  z-index: -1;
}
.carousel-item {
  transition: transform 1s ease-in-out;
}
#myCarousel.carousel-fade .active.carousel-item-start,
#myCarousel.carousel-fade .active.carousel-item-end,
#myCarouselMobile.carousel-fade .active.carousel-item-start,
#myCarouselMobile.carousel-fade .active.carousel-item-end {
  transition: opacity 0s 0.9s;
}
#announcementCarousel.carousel-fade .active.carousel-item-start,
#announcementCarousel.carousel-fade .active.carousel-item-end {
  transition: opacity 0s 0s;
}
/* Carousel Animation delays */
.carousel-inner > .carousel-item > img,
.carousel-inner > .carousel-item > a > img {
  min-width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.slider {
  position: relative;
  z-index: 0;
}
.slider::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #eaecff;
  width: 100%;
  height: 40%;
}
.carousel-item {
  transition: transform 1s ease-in-out;
}
.slider .carousel-inner {
  overflow: unset;
}
.slider {
  position: relative;
  width: 100%;
  z-index: 0;
  padding: 0 40px;
}
#carousel-sub .carousel-item:before {
  display: none;
}
.slide1,
.slide2,
.slide3,
.slide4,
.slide5,
.slide6 {
  z-index: 1 !important;
}
.slide1 a:hover,
.slide2 a:hover,
.slide3 a:hover,
.slide4 a:hover,
.slide5 a:hover,
.slide6 a:hover {
  color: var(--color-white);
}
.slide1 h3 {
  animation-delay: 1.5s;
  font-size: 72px;
  font-weight: 700;
  color: var(--color-white);
  padding: 15px 15px 10px 15px;
  margin: 0;
  display: block;
  line-height: 78px;
  text-align: right;
  top: 95px;
  right: -102px;
  position: relative;
}
.slide1 h4 {
  animation-delay: 1.8s;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  padding: 10px 15px 25px 15px;
  margin: 0;
  display: block;
  line-height: 24px;
  text-align: right;
  position: relative;
  top: 100px;
  right: 110px;
}
.slide1 h4 span {
  display: block;
  font-size: 14px;
}

.slide2 h3 {
  animation-delay: 1.5s;
  font-size: 72px;
  font-weight: 700;
  color: #000;
  padding: 15px 15px 10px 15px;
  margin: 0;
  display: block;
  line-height: 78px;
  text-align: right;
  top: 95px;
  right: -102px;
  position: relative;
}
.slide2 h4 {
  animation-delay: 1.8s;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  padding: 10px 15px 25px 15px;
  margin: 0;
  display: block;
  line-height: 24px;
  text-align: right;
  position: relative;
  top: 100px;
  right: 110px;
}
.slide2 h4 span {
  display: block;
  font-size: 14px;
}

.slide1 .carousel-caption {
  left: 38%;
  right: 0;
  top: 20%;
  bottom: 5%;
  padding: 10px 0px 20px 20px !important;
  width: 65%;
  text-align: right !important;
  animation-delay: 1s;
}
.slide2 .carousel-caption {
  left: 38%;
  right: 0;
  top: 20%;
  bottom: 5%;
  padding: 10px 0px 20px 20px !important;
  width: 65%;
  text-align: right !important;
  animation-delay: 1s;
}

.slider .carousel-control-prev {
  top: unset;
  bottom: 70px;
  right: 150px;
  left: auto;
  border-radius: 50px;
  border: 2px solid var(--color-white);
  width: auto;
}
/* .slider .carousel-control-prev .carousel-control-prev-icon i{width: 45px; height: 45px;} */
.slider .carousel-control-next {
  top: unset;
  bottom: 70px;
  left: auto;
  right: 95px;
  border-radius: 50px;
  border: 2px solid var(--color-white);
  width: auto;
}
/* .slider .carousel-control-next .carousel-control-next-icon i{width: 45px; height: 45px;} */
.carousel-indicators {
  right: 0;
  left: unset;
  bottom: 60px;
}
.carousel-indicators [data-bs-target] {
  color: var(--color-white) !important;
  background-color: transparent;
  text-indent: 0;
  font-size: 22px;
  font-weight: 700;
  width: auto;
  height: auto;
  margin: 0 6px;
}
.carousel-indicators .active {
  font-size: 26px;
}

/* @media all and (max-width : 768px) {  */
@media (min-width: 320px) and (max-width: 1080px) {
  .slide1 .carousel-caption,
  .slide2 .carousel-caption,
  .slide3 .carousel-caption,
  .slide4 .carousel-caption,
  .slide5 .carousel-caption,
  .slide6 .carousel-caption {
    width: 100% !important;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    display: none;
  }
  .slide1 h3,
  .slide2 h3,
  .slide3 h3,
  .slide4 h3,
  .slide5 h3,
  .slide6 h3 {
    font-size: 22px;
    margin-bottom: 0;
  }
  .slide1 h4,
  .slide2 h4,
  .slide3 h4,
  .slide4 h4,
  .slide5 h4,
  .slide6 h4 {
    font-size: 16px;
    margin-top: 5px;
  }
}

.btn-one,
.btn-one-full,
.btn-two,
.btn-two-full,
.btn-three,
.btn-three-full,
.btn-four,
.btn-four-full {
  -webkit-transition: color 0.4s, background-color 0.4s;
  -moz-transition: color 0.4s, background-color 0.4s;
  -o-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  padding: 13px 35px 13px 35px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  border-radius: 100px;
}
.btn-one {
  border: 2px solid var(--color-one);
  color: var(--color-one) !important;
}
.btn-one:hover {
  background: var(--color-one);
  color: var(--color-white) !important;
}
.btn-one-full {
  border: 2px solid var(--color-two);
  color: var(--color-white) !important;
  background: var(--color-two);
}
.btn-one-full:hover {
  background: none;
  color: var(--color-two) !important;
}

.btn-two {
  border: 2px solid var(--color-two);
  color: var(--color-two) !important;
}
.btn-two:hover {
  background: var(--color-two);
  color: var(--color-white) !important;
}
.btn-two-full {
  border: 2px solid var(--color-one);
  color: var(--color-white) !important;
  background: var(--color-one);
}
.btn-two-full:hover {
  background: none;
  color: var(--color-one) !important;
}

.btn-three {
  border: 2px solid var(--color-white);
  color: var(--color-white) !important;
}
.btn-three:hover {
  background: var(--color-white);
  color: var(--color-two) !important;
}
.btn-three-full {
  border: 2px solid var(--color-white);
  color: var(--color-two) !important;
  background: var(--color-white);
}
.btn-three-full:hover {
  background: none;
  color: var(--color-white) !important;
}

/* Divider Line */
hr {
  background-image: -webkit-linear-gradient(
    left,
    transparent,
    rgba(0, 0, 0, 0.7),
    transparent
  );
  background-image: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.7),
    transparent
  );
  border: 0;
  height: 1px;
  margin: 15px 0 15px 0;
  background-color: transparent;
}
hr.short {
  margin: 11px 0 11px 0;
}
hr.tall {
  margin: 44px 0 44px 0;
}
hr.taller {
  margin: 66px 0 66px 0;
}
hr.light {
  background-image: -webkit-linear-gradient(
    left,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  background-image: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}
hr.invisible {
  background: none;
}

/* Divider Line */
.text-casenone {
  text-transform: none !important;
}
ul.list {
  margin: 0 0 10px 0;
  padding: 0 0 0 20px;
  list-style: none;
  text-align: left;
}
ul.list li {
  position: relative;
  padding-left: 15px;
  padding-bottom: 10px;
}
ul.list li a {
  color: var(--color-black);
}
ul.list li a:hover {
  color: var(--color-green);
}
ul.list li::before {
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  left: 0px;
  position: absolute;
  top: 7px;
  font-size: 5px;
  font-weight: 900;
  color: var(--color-black);
}
ul.list li.head {
  font-weight: 700;
  padding-left: 0;
}
ul.list li.head::before {
  display: none;
}
ol.ol-list {
  margin: 0;
  padding: 0 0 0 20px;
  text-align: left;
}
ol.ol-list li {
  position: relative;
  text-align: justify;
  padding-bottom: 10px;
}
ol.ol-list li a {
  color: var(--color-black);
}
ol.ol-list li a:hover {
  color: var(--color-blue);
}

.home-head-main {
  font-size: 35px;
  line-height: 45px;
  font-weight: 400;
  margin-bottom: 20px;
}
.home-head-main span {
  display: block;
}
.head-main {
  font-size: 42px;
  border-bottom: dashed 2px var(--color-black);
  display: block;
  width: 100%;
  padding: 0 50px 5px 0;
  margin-bottom: 20px;
}
.head-one {
  font-weight: 500;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 15px;
  background: var(--color-one);
  color: var(--color-black);
  width: 100%;
}
.head-two {
  font-weight: 500;
  font-size: 17px;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-black);
  color: var(--color-black);
  width: 100%;
}
.head-three {
  font-weight: 500;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 15px;
  background: var(--color-blue);
  color: var(--color-white);
  width: 100%;
}
.head-four {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-blue);
  color: var(--color-blue);
  width: 100%;
}
.head-five {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-black);
  color: var(--color-black);
  width: 100%;
}
.head-six {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-pureGrey);
  color: var(--color-pureGrey);
  width: 100%;
}
.background-white {
  padding: 30px;
  background: var(--color-white);
  margin-bottom: 30px;
}
.bg-color-one {
  background: var(--color-grey);
  padding: 40px;
  margin-bottom: 15px;
  margin-top: 15px;
  display: inline-block;
  width: 100%;
  border-radius: 20px;
}
.bg-color-one h2 {
  font-weight: 600;
  font-size: 18px;
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
}
.bg-color-one h2 span {
  background: var(--color-grey);
  padding-right: 10px;
}
.bg-color-one h2:before {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 0;
  left: 0;
  height: 1px;
  background: #b8b8b8;
  z-index: -1;
}
.bg-color-two {
  background: var(--color-white);
  padding: 30px;
  margin-bottom: 15px;
  margin-top: 15px;
  display: inline-block;
  width: 100%;
  box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.2) !important;
}
.bg-color-two h2 {
  font-weight: 500;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 15px;
  background: var(--color-blue);
  color: var(--color-white);
  width: 100%;
}
.bg-color-two h3 {
  font-weight: 500;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 15px;
  border-bottom: solid 1px var(--color-blue);
  color: var(--color-blue);
  width: 100%;
}

.link {
  color: var(--color-blue);
  font-weight: 600;
}
.link:hover {
  color: var(--color-black);
}
.for-xs {
  display: none;
}

.image-radius-15 {
  border-radius: 15px;
}
.image-radius-20 {
  border-radius: 20px;
}

.clearfix::after,
.clearfix::before {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
}

.navbar.main-nav {
  padding: 20px 100px;
}
.navbar.main-nav .main-nav-container .navbar-collapse {
  justify-content: flex-end;
}
/* ul.navbar-nav{border-bottom: 1px solid #000;} */
ul.navbar-nav li {
  margin: 0 30px 10px 30px;
}
ul.navbar-nav li a {
  font-size: 16px;
  font-weight: 600;
}

.home-top-bg {
  padding: 0px 0 0px 0;
}
.home-top-bg h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
  color: var(--color-two);
}
.home-top-bg h1 span {
  display: block;
}
.home-top-bg h2 {
  font-size: 22px;
  font-weight: 400;
}

.home-head {
  font-size: 60px;
  font-weight: 500;
  line-height: 64px;
  position: relative;
  z-index: 0;
  margin-top: 62px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.home-head span {
  display: block;
}
.home-head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  /* background:var(--color-one); */
  width: 90px;
  height: 5px;
}

.home-about-bg {
  padding: 100px 0 80px 0;
  position: relative;
  z-index: 0;
  background: #eaecff;
  border-radius: 0 0 20px 20px;
}
.home-about-bg h2 {
  color: var(--color-one);
}
/* .home-about-bg::before{content:"";position:absolute;top:0;left:0; right: 0; z-index:-1;background: #EAECFF;width:100%;height:80%} */
.home-about-bg .home-about-bg-img {
  position: absolute;
}

.home-service-bg {
  padding: 60px 40px;
  background-color: var(--color-one);
}
.home-service-bg h2 {
  color: var(--color-white);
  font-size: 60px;
  font-weight: 500;
  text-align: center;
}

.home-service-box {
  margin: 0 5px;
  overflow: hidden;
}
.home-service-box a {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  border-radius: 20px;
}
.home-service-box a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(31, 64, 123, 0) 0%, #1f407b 100%);
  height: 50%;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}
.home-service-box a:hover::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    #ffffff 100%
  );
  height: 100%;
  border-radius: 20px;
}
.home-service-box a img {
  border-radius: 20px;
}
.home-service-box a h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  position: absolute;
  bottom: 40px;
  right: 15px;
  left: 15px;
  transition: all 0.5s ease-in-out;
}
.home-service-box a:hover h3 {
  bottom: 60px;
  color: var(--color-two);
}
.home-service-box a h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-two);
  background: var(--color-one);
  border-radius: 20px;
  padding: 5px 20px;
  text-align: center;
  position: absolute;
  bottom: -50px;
  transition: all 0.5s ease-in-out;
}
.home-service-box a:hover h4 {
  bottom: 20px;
}

.home-expertise-bg {
  background: url(../img/home-expertise-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  padding: 80px 0;
  color: var(--color-white);
}
.home-expertise-bg .home-expertise-text-box {
  min-height: 700px;
  display: flex;
  /* align-items:flex-start; */
  justify-content: center;
  flex-direction: column;
}

.home-client-bg {
  padding: 100px 0 100px 0;
}
#home-client-owl.owl-carousel .owl-item img {
  width: auto;
}

.home-service-list-bg {
  padding: 0px 0 80px 0;
}
.home-service-list-bg ul.home-service-list {
  margin: 0;
  padding: 0;
  display: flex;
}
.home-service-list-bg ul.home-service-list li {
  margin: 0;
  padding: 0;
  width: 20%;
  list-style: none;
}
.home-service-list-bg ul.home-service-list li a {
  display: block;
  position: relative;
  z-index: 0;
}
.home-service-list-bg ul.home-service-list li a .home-service-list-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 20px 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #eaecff;
  transition: all 0.5s ease-in-out;
}
.home-service-list-bg ul.home-service-list li a:hover .home-service-list-box i {
  transition: all 0.5s ease-in-out;
}
.home-service-list-bg ul.home-service-list li a .home-service-list-box h2 {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  color: var(--color-two);
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  transition: all 0.5s ease-in-out;
}
.home-service-list-bg ul.home-service-list li a .home-service-list-box h2 span {
  display: block;
}
.home-service-list-bg
  ul.home-service-list
  li
  a
  .home-service-list-box
  h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: var(--color-one);
  width: 72px;
  height: 5px;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
}
.home-service-list-bg ul.home-service-list li a .home-service-list-box p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.home-service-list-bg ul.home-service-list li a:hover .home-service-list-box {
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
}
.home-service-list-bg
  ul.home-service-list
  li
  a:hover
  .home-service-list-box
  h2 {
  color: var(--color-white);
}
.home-service-list-bg
  ul.home-service-list
  li
  a:hover
  .home-service-list-box
  h2::before {
  background: var(--color-white);
}
.home-service-list-bg ul.home-service-list li a:hover .home-service-list-box i {
  -webkit-filter: hue-rotate(90deg) brightness(1000%) grayscale(0%);
  filter: hue-rotate(90deg) brightness(1000%) grayscale(0%);
}

.home-vision-2030-bg {
  padding: 40px 0 80px 0;
}
.home-vision-2030-bg h2 {
  color: var(--color-two);
}

.home-happening-bg {
  position: relative;
  z-index: 0;
  padding: 20px 0 40px 0;
}
.home-happening-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  bottom: 0;
  right: 12px;
  z-index: 0;
  background: url(../img/home-happening-bg.jpg);
  background-size: cover;
  border-radius: 40px;
  height: 300px;
}
.home-happening-bg::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #eaecff;
  width: 100%;
  height: 70%;
}
.home-happening-bg h2 {
  font-size: 60px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  margin: 40px 0;
}

.home-happening-box {
  padding: 15px 15px 50px 15px;
}
.home-happening-box a {
  display: block;
  background: var(--color-white);
  padding: 15px 15px 30px 15px;
  border-radius: 20px;
  box-shadow: 0px 5px 20px 0px #1f407b33;
}
.home-happening-box a img {
  border-radius: 20px;
}
.home-happening-box a p {
  font-size: 18px;
  margin: 25px 0;
}
.home-happening-box a .home-happening-date-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.home-happening-box a .home-happening-date-box h3 {
  color: var(--color-one);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}
.home-happening-box a .home-happening-date-box h4 {
  color: #959595;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.home-priority-bg {
  padding: 40px 0 0px 0;
  background: #eaecff;
}
.home-priority-bg .home-priority-box {
  padding: 60px 0;
}
.home-priority-bg .home-priority-box h2 {
  color: var(--color-two);
}

footer {
  background: var(--color-two);
  color: var(--color-white);
  position: relative;
  z-index: 0;
  margin-top: -156px;
}
footer a {
  color: var(--color-white);
}
footer a:hover {
  color: var(--color-one);
}
footer .footer-list h3 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}
footer .footer-list h3 span {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
footer .footer-list h3 div {
  border-bottom: 1px solid var(--color-black);
  width: 25%;
  position: relative;
  right: 0;
  bottom: 0px;
  display: inline-block;
}
footer .footer-list ul {
  padding: 0;
  margin: 0 0 0 10px;
}
footer .footer-list ul li {
  list-style: none;
  padding: 2px 0 2px 10px;
  position: relative;
  z-index: 0;
}
footer .footer-list ul li::before {
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  left: -7px;
  position: absolute;
  top: 12px;
  font-weight: 900;
  color: var(--color-white);
  font-size: 6px;
}
footer .footer-list ul li a {
  color: var(--color-white);
}
footer .footer-list ul li a i {
  padding-right: 5px;
  font-size: 8px;
}
footer .footer-list ul li a:hover {
  color: var(--color-one);
  padding-left: 2px;
}

footer .footer-list ul.half {
  padding: 0;
  margin: 0 0 0 10px;
}
footer .footer-list ul.half li {
  list-style: none;
  padding: 6px 0 6px 10px;
  position: relative;
  z-index: 0;
  display: inline-block;
  width: 48%;
}
footer .footer-list ul.half li::before {
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  left: -7px;
  position: absolute;
  top: 12px;
  font-weight: 900;
  color: var(--color-black);
  font-size: 6px;
}
footer .footer-list ul.half li a {
  color: var(--color-black);
}
footer .footer-list ul.half li a i {
  padding-right: 5px;
  font-size: 8px;
}
footer .footer-list ul.half li a:hover {
  color: var(--color-one);
  padding-left: 2px;
}

footer .footer-list ul.contact {
  padding: 0;
  margin: 0 0 0 0px;
}
footer .footer-list ul.contact li {
  list-style: none;
  padding: 4px 0 4px 4px;
  position: relative;
  z-index: 0;
}
footer .footer-list ul.contact li::before {
  display: none;
}
footer .footer-list ul.contact li a {
  color: var(--color-white);
}
footer .footer-list ul.contact li a i {
  padding-right: 5px;
  font-size: 15px;
}
footer .footer-list ul.contact li a:hover {
  color: var(--color-one);
  padding-left: 2px;
}

.footer-logo-bg img {
  margin-bottom: -60px;
}
.footer-logo-bg h4 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

.footerextra {
  padding: 0;
  margin: 0;
}
.footerextra li {
  display: inline-block;
  padding-right: 3%;
  list-style: none;
  font-size: 14px;
  position: relative;
  z-index: 0;
}
.footerextra li::before {
  content: "\f7a5";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 2px;
  left: -10px;
  font-weight: 900;
  color: var(--color-black);
  font-size: 12px;
}
.footerextra li a {
  color: var(--color-black);
}
.footerextra li a:hover {
  color: var(--color-one);
}
.footerextra-Mt {
  margin-top: 30px;
}
footer .copy {
  padding: 20px 0 40px 0;
  margin-top: 60px;
  border-top: 1px solid #b8b8b8;
}
footer .copy a {
  color: var(--color-white);
  font-weight: 500;
}
footer .copy a:hover {
  color: var(--color-one);
}
footer .copy .copy-right {
  text-align: right;
}

.circle a {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 6;
  width: 147px;
  height: 147px;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(7px);
}
.logo {
  position: absolute;
  width: 80px;
  height: 80px;
  background: url(../img/right-chilli.png);
  background-size: auto;
  background-repeat: no-repeat;
  border-radius: 100vmax;
  background-position: center, center;
}
.text {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #000;
  font-size: 12px;
  animation: textRotation 8s linear infinite;
}
@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}
.text span {
  position: absolute;
  left: 50%;
  font-size: 1.2em;
  transform-origin: 0 73px;
}
.circle a:hover {
  background: rgba(0, 119, 192, 0.5);
}

/* footer social icons */
ul.social-network {
  list-style: none;
  display: block;
  margin-left: 0 !important;
  padding: 0;
  text-align: center;
}
ul.social-network li {
  display: inline;
  margin: 0 5px;
}
ul.social-network li::before {
  display: none;
}
.social-network a.icoRss:hover {
  background-color: #f56505;
}
.social-network a.icoFacebook:hover {
  background-color: #3b5998;
}
.social-network a.icoTwitter:hover {
  background-color: #33ccff;
}
.social-network a.icoGoogle:hover {
  background-color: #bd3518;
}
.social-network a.icoVimeo:hover {
  background-color: #0590b8;
}
.social-network a.icoLinkedin:hover {
  background-color: #007bb7;
}
.social-network a.icoYoutube:hover {
  background-color: #cc0000;
}
.social-network a.icoInstagram:hover {
  background-color: #c8008b;
}
.social-network a.icoWhatsapp:hover {
  background-color: #189d0e;
}
.social-network a.icoRss:hover i,
.social-network a.icoFacebook:hover i,
.social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i,
.social-network a.icoVimeo:hover i,
.social-network a.icoLinkedin:hover i,
.social-network a.icoYoutube:hover i,
.social-network a.icoInstagram:hover i {
  color: var(--color-white);
}
a.socialIcon:hover,
.socialHoverClass {
  color: #44bcdd;
}
.social-circle li a {
  display: inline-block;
  position: relative;
  margin: 0 auto 0 auto;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  width: 35px;
  height: 35px;
  background: #0C2975;
  border: 0px solid var(--color-white);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0) !important;
  margin-inline: 10px;
}
.social-circle li i {
  margin: 0;
  line-height: 35px;
  text-align: center;
  font-size: 15px !important;
  padding: 0 !important;
}
.social-circle li a:hover i,
.triggeredHover {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -ms--transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.social-circle i {
  color: var(--color-one);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
/* footer social icons */

.rwd-table {
  margin: auto;
  min-width: 300px;
  max-width: 100%;
  border-collapse: collapse;
}
.rwd-table thead tr:first-child {
  border-top: none;
  background: var(--color-black);
  color: #fff;
}
.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: rgba(0, 0, 0, 0.01);
}
.rwd-table.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #fbfbfb !important;
}
.rwd-table th {
  display: none;
}
.rwd-table td {
  display: block;
}
.rwd-table td:first-child {
  margin-top: 0.5em;
}
.rwd-table td:last-child {
  margin-bottom: 0.5em;
}
.rwd-table td:before {
  content: attr(data-th) " : ";
  font-weight: bold;
  display: inline-block;
  color: #000;
  padding-right: 15px;
}
.rwd-table th,
.rwd-table td {
  text-align: left;
}
.rwd-table {
  color: #333;
  overflow: hidden;
  margin-bottom: 30px;
}
.rwd-table tr {
  border-color: #bfbfbf;
}
.rwd-table th,
.rwd-table td {
  padding: 0.5em 1em;
}

/* Made changes from here 09-12-2025*/

.top-image {
  margin-left: -173px;
  margin-bottom: -76px;
  position: relative;
  top: 58px;
  max-width: 817px;
}
.margin-text {
  margin-top: -268px;
}
.banner-margin {
  margin-top: -317px;
}
.top-menu.tiny {
  bottom: auto;
  top: 0;
  position: fixed;
  height: 65px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99;
  min-height: 95px !important;
  right: 0;
  left: 0;
}

.popup-submit {
  background-color: #0C2975;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 23px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  width: 33%;
  margin: 5px;
}

.enq-wid {
  width: 450px;
}

/* Full-width background */
.services-section {
  width: 100%;
  background: #0d1a2c;
  padding: 114px 0;
  min-height: 1800px;
}

/* Centered content with max width */
.services-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title p {
  letter-spacing: 6px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.section-title h2 {
  font-size: 60px;
  color: #ffffff;
  line-height: 1.3;
  font-weight: 500;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 17px;
}
.service-margin-side {
  margin-top: 100px;
}
.service-margin-middle {
  margin-top: -100px;
}

/* Cards */
.service-card {
  background: #11243e80;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #183660;
  backdrop-filter: blur(6px);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  height: 550px;
}
.service-card:hover {
  border-color: #0C2975;
  transition: all 0.3s ease;
}
.service-card:hover h3 {
  color: #0C2975;
  transition: all 0.3s ease;
}
.service-card img {
  width: 100%;
  object-fit: contain;
  border-radius: 20px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 30px;
  border-left: 5px solid #0C2975;
  padding-left: 10px;
  font-weight: 500;
  margin-left: 22px;
}

.service-card ul {
  margin: 0 0 10px 16px;
  padding: 0 0 0 20px;
  list-style-type: square;
  text-align: left;
}

.service-card ul li {
  color: #d6d6d6;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
}

/* .service-card ul.list{ margin: 0 0 10px 16px; padding: 0 0 0 20px; list-style-type: square; text-align: left;} */

.stats-section {
  display: flex;
  justify-content: center;
  margin-top: -140px; /* optional overlap effect */
}

/* Blue Box */
.stats-box {
  background: #0C2975;
  width: 94%;
  padding: 48px 63px;
  border-radius: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  height: 331px;
}

/* Each Item */
.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 60px;
  font-weight: 500;
  margin: 0;
}

.stat-item p {
  margin-top: 8px;
  font-size: 22px;
  opacity: 0.9;
  font-weight: 500;
}

/* MAIN SECTION */
.why-us-section {
  padding: 100px 0;
  background: #ffffff;
}

.why-us-container {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
  margin-left: 100px;
  margin-right: 100px;
}

/* LEFT IMAGE */
.why-img-box {
  position: relative;
  width: 45%;
}

.why-img-box img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* CALL BOX */
.call-box {
  position: absolute;
  left: 194px;
  bottom: -25px;
  background: #fff;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  border-radius: 20px;
  white-space: nowrap;
}
.call-box span {
  font-weight: 600;
  font-size: 20px;
  flex-shrink: 0;
}

.call-details {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.call-details img {
  width: 45px;
  padding: 10px;
  background-color: #0C2975;
  border-radius: 100%;
}

.call-details a {
  color: #0C2975;
  font-weight: 600;
  text-decoration: none;
  font-size: 20px;
}

/* FEATURES GRID */
.features {
  width: 55%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 60px;
  margin: -135px 0 0 0;
}

/* FEATURE BLOCK */
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item .icon {
  width: 60px;
}

/* TITLE WITH FIXED BLUE LINE */
.feature-item h4 {
  font-size: 22px;
  font-weight: 500;
  padding-left: 15px;
  position: relative;
  line-height: 1.4;
}

.feature-item h4::before {
  content: "";
  width: 4px;
  height: 22px;
  background: #0C2975;
  position: absolute;
  left: 0;
  top: 4px;
}

.home-testimonial-bg {
  padding: 100px 0;
  position: relative;
  background-color: #eaecff;
  margin-left: 60px;
  margin-right: 60px;
  border-radius: 20px;
  z-index: 1;
}

.stars-img {
  position: absolute;
  top: 100px;
  right: 135px;
  width: 175px;
  margin-top: -10px;
}

.top-whats-app{position:fixed;bottom:80px;right:15px;z-index:999}
.top-whats-app a{width:50px;height:50px;color:#fff!important;background:#27c34c;border-radius:100%;display:flex;justify-content:center;align-items:center}
.top-whats-app a:hover{color:#27c34c !important; background:#fff !important;}
.headerwhatsApp i{font-size:28px;line-height:22px}

.home-testimonial-bg .image {
  position: absolute;
  bottom: -112px;
  z-index: 1;
  margin-left: -100px;
}

.home-testimonial-box img {
  width: 7% !important;
}

.home-testimonial-bg h2 {
  letter-spacing: 15px;
  font-size: 20px;
  margin-bottom: 50px;
  color: var(--color-one);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: -10px;
}

.home-testimonial-box {
  position: relative;
  padding: 40px;
}

.home-testimonial-box p {
  font-size: 16px;
  margin: 30px 0;
  text-align: center;
}

.home-testimonial-box h5 {
  font-weight: 400;
  font-size: 22px;
  text-align: center;
}
.home-testimonial-box h6 {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

.quote-icon {
  position: absolute;
  width: 10%;
}

.quote-icon.left {
  top: 20px;
  left: 2px;
}

.home-gallery-bg {
  position: relative;
  padding: 19px 0;
  background-color: #0d1a2c;
}

/* .home-gallery-bg::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: var(--color-one);
  width: 100%;
  height: 40%;
  top: -242px;
} */

.home-gallery-bg h2 {
  letter-spacing: 15px;
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--color-white);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 100px;
  text-align: center;
}

.home-gallery-bg h3 {
  font-size: 60px;
  margin-bottom: 50px;
  color: var(--color-white);
  font-weight: 400;
  text-align: center;
}
.b-20 {
  border-radius: 20px;
}

.home-news-owl .owl-nav {
  position: absolute;
  right: 0px;
  top: -106px;
}
.home-news-owl .owl-nav button.owl-prev {
  right: 40px;
}
.home-news-owl .owl-nav button.owl-next {
  right: 0px;
}

.site-footer {
  background: var(--color-one);
  padding: 120px 0 30px;
  color: #fff;
  position: relative;
}

/* CTA BAR */
.footer-cta {
  background: #0C2975;
  margin: 0 100px 0 100px;
  border-radius: 18px;
  padding: 35px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-90px);
  gap: 70px;
  position: relative;
  z-index: 1;
}

.footer-cta h3 {
  margin: 0;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.icon-phone {
  background: white;
  padding: 11px;
  border-radius: 100%;
  margin-right: 23px;
  margin: top -13px;
}
.phone-text {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
}

.footer-new {
  background: var(--color-one);
}

/* wrapper */
.footer-wrapper {
  padding: 73px 95px;
  border-radius: 20px;
  color: white;
  margin: 0 45px;
  background: #11243e;
}

/* column */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* titles */
.footer-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 35px;
}

/* text */
.footer-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-info {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
}

.footer-list {
  margin: 0 0 10px 0px;
  padding: 0 0 0 20px;
  list-style-type: square;
  text-align: left;
}

.footer-list li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}

/* map */
.map-box {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.footer-bottom {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 41px;
}

.social-media {
  margin-top: 27px; /* NO margin on xs */
}
@media screen and (max-width: 601px) {
  .rwd-table tr:nth-child(2) {
    border-top: none;
  }
  .table-bordered {
    border: 0px;
  }
}
@media screen and (min-width: 600px) {
  .rwd-table tr:hover {
    background-color: #fff !important;
  }
  .rwd-table thead tr:hover {
    background: var(--color-black) !important;
  }
  .rwd-table td:before {
    display: none;
  }
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: 0.25em 0.5em;
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
}

@media (min-width: 320px) and (max-width: 1080px) {
  .mainMenu .sidebar {
    padding: 80px 10px 50px 20px;
  }
  .mainMenu .sidebar .main-menu-box h2 {
    font-size: 22px;
  }
  .slider {
    margin-top: 0px;
    padding: 0;
  }
  .inner-banner {
    margin-top: 64px;
  }
  .inner-banner img {
    min-width: 100%;
    height: 130px;
    object-fit: cover;
  }
  .hidden-xs,
  .for-md {
    display: none !important;
  }
  .for-xs {
    display: block !important;
  }
  ::-webkit-scrollbar {
    width: 0px;
  }
  .Morder-1 {
    order: 1;
    -webkit-order: 1;
  }
  .Morder-2 {
    order: 2;
    -webkit-order: 2;
  }
  .Morder-3 {
    order: 3;
    -webkit-order: 3;
  }
  .Morder-4 {
    order: 4;
    -webkit-order: 4;
  }
  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 1.1rem;
    height: 1.1rem;
  }
  .carousel-inner > .carousel-item > img {
    border-radius: 0;
  }
  .slider .carousel-control-next,
  .slider .carousel-control-prev {
    bottom: 5px;
  }
  .btn-one {
    font-size: 12px;
  }
  .btn-one i {
    width: 30px;
    height: 30px;
    line-height: 14px;
  }
  footer .text-end {
    text-align: center !important;
  }
  footer {
    text-align: center;
  }
  .footerextra-Mt {
    margin-top: 0;
  }
  footer .footer-list {
    margin-top: 0px;
  }
  .back-to-top {
    bottom: 10px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  ul.footerextra {
    margin: 30px 0 40px;
  }
  footer .copy {
    padding: 30px 0 30px 0;
    margin-top: 20px;
  }
  footer .copy .copy-right {
    text-align: center;
  }
  footer .copy .copy-center {
    padding-top: 0px;
    line-height: 24px;
  }
  footer .copy .copy-center i {
    display: none;
  }
  footer .copy .copy-center span {
    display: block;
  }
  footer .footer-list h3 span {
    display: block;
    margin-right: 0;
    text-transform: uppercase;
  }
  ul.footerextra li {
    list-style: none;
    padding: 6px 12px 6px 12px;
    position: relative;
    z-index: 0;
  }
  ul.footerextra li::before {
    content: "\f192";
    font-family: "Font Awesome 5 Free";
    left: -3px;
    position: absolute;
    top: 12px;
    font-weight: 900;
    color: var(--color-white);
    font-size: 6px;
  }
  .topSearch {
    right: 55px;
    top: 7px;
  }
  .search_icon {
    background-color: rgba(0, 0, 0, 0.1);
    height: 40px;
    width: 40px;
    font-size: 16px;
  }
  .search button {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
  }
  .search-body {
    position: relative;
    padding: 30px 15px !important;
  }
  .modal-custom {
    margin-top: 30px;
  }
  .modal-custom-bg .modal-body .close {
    right: 0;
    top: -40px;
  }
  .rwd-table td {
    width: 100%;
  }
  .footer-link-box.Nbr {
    border-right: 0px solid #d9d9d9;
  }
  .footer-link-box.Mbb {
    border-bottom: 1px solid #d9d9d9;
  }
  .footer-link-box {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer-link-bg .container {
    bottom: 0;
  }
  .footer-link-content-bg {
    padding: 50px 20px 50px 20px !important;
    text-align: center;
  }
  .footer-link-content-bg h2 {
    font-size: 40px;
  }
  footer .btn-one-full {
    margin-bottom: 15px !important;
  }
  ul.social-network li {
    margin: 0 10px;
  }
  ul.social-network {
    text-align: center;
    /* margin-top: 20px; */
  }
  .inner-bg {
    padding: 30px 0;
  }
  .inner-banner h1 {
    font-size: 20px;
    right: 0;
    left: 0;
    bottom: 10px;
    margin-bottom: 0;
    text-align: center;
  }
  .bg-color-one {
    padding: 30px 20px;
  }
  .bg-color-one h2 {
    text-align: center;
  }
  .bg-color-one h2 span {
    padding: 0;
  }
  .bg-color-one h2:before {
    bottom: -5px;
  }
  #commonTab .commonTab-list {
    display: none;
  }
  #commonTab.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
    padding: 15px;
    background-color: var(--color-one);
    border: 1px solid var(--color-one);
    color: var(--color-white);
    margin: 10px 10px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }
  #commonTab.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
    background-color: transparent;
    border: 1px solid var(--color-one);
    color: var(--color-one);
  }

  .navbar.main-nav {
    padding: 20px 10px;
  }
  .main-nav-container {
    justify-content: center !important;
  }

  .home-top-bg h1 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    margin-bottom: 25px;
  }
  .home-top-bg {
    padding: 20px 0 00px 0;
    text-align: center;
  }
  .home-top-bg h2 {
    font-size: 22px;
  }

  .navbar-brand img {
    width: 65%;
  }
  .mainMenu ul.toggle {
    top: 20px;
    right: 5%;
    width: 40px;
    height: 40px;
  }
  .top-menu-btn {
    position: absolute;
    top: 60px;
    right: 5px;
  }
  .top-menu-btn .btn-two-full {
    margin-top: 0;
    padding: 2px 15px 2px 15px;
    font-size: 14px;
    font-weight: 500;
  }

  .home-about-bg {
    padding: 50px 0 50px 0;
    text-align: center;
  }
  .home-about-bg .home-about-bg-img {
    position: relative;
    margin-top: -65px;
  }

  .home-head {
    font-size: 36px;
    line-height: 42px;
    margin-top: 0px;
  }
  .home-head span {
    display: inline;
  }
  .home-head::before {
    right: 0;
    margin: 0 auto;
  }

  .home-service-bg h2 {
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .home-service-box a h3 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    position: absolute;
    bottom: 10px;
    right: 10px;
    left: 10px;
  }

  .home-expertise-bg {
    padding: 80px 0;
    background-position: right;
  }
  .home-expertise-bg .home-expertise-text-box {
    min-height: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .home-expertise-bg .home-expertise-text-box h2 {
    font-size: 34px;
    text-align: center;
  }
  .home-client-bg {
    padding: 40px 0 40px 0;
  }

  .home-service-list-bg {
    padding: 0 0 30px 0;
  }
  .home-service-list-bg ul.home-service-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-service-list-bg ul.home-service-list li {
    margin: 11px;
    width: 43%;
  }
  .home-service-list-bg ul.home-service-list li a .home-service-list-box {
    padding: 20px 10px;
  }
  .home-service-list-bg ul.home-service-list li a .home-service-list-box h2 {
    font-size: 18px;
  }
  .home-service-list-bg
    ul.home-service-list
    li
    a
    .home-service-list-box
    h2
    span {
    display: inline;
  }
  .home-service-list-bg
    ul.home-service-list
    li
    a
    .home-service-list-box
    h2::before {
    height: 3px;
  }
  .home-service-list-bg ul.home-service-list li a .home-service-list-box i img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
  .home-service-list-bg ul.home-service-list li a .home-service-list-box p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin: 0;
  }

  .home-vision-2030-bg {
    padding: 10px 0 60px 0;
    text-align: center;
  }

  .home-happening-bg {
    padding: 20px 0 0 0;
  }
  .home-happening-bg h2 {
    font-size: 32px;
    margin: 15px 0;
  }
  .home-happening-box {
    padding: 15px 15px 30px 15px;
  }
  .home-happening-box a {
    padding: 10px 10px 20px 10px;
  }
  .home-happening-box a p {
    font-size: 16px;
    margin: 20px 0;
  }

  .home-priority-bg {
    padding: 0;
  }
  .home-priority-bg .home-priority-box {
    padding: 30px 0;
  }

  /* Made changes from here */
  .top-image {
    margin-left: 0px;
    margin-bottom: 0px;
    position: relative;
    top: 15px;
    max-width: 100%;
  }
  .margin-text {
    margin-top: 0px;
  }
  .stats-section {
    margin-top: -40px;
  }

  .stats-box {
    width: 90%;
    padding: 30px 20px;
    height: auto;
    flex-direction: column;
    gap: 30px;
    border-radius: 16px;
  }

  .stat-item h3 {
    font-size: 40px;
    font-weight: 600;
  }

  .stat-item p {
    font-size: 16px;
    margin-top: 5px;
  }

  .services-section {
    padding: 60px 0;
    min-height: auto;
  }

  .section-title h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .section-title p {
    font-size: 14px;
    letter-spacing: 4px;
  }

  .services-grid {
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 20px;
    justify-content: center;
  }

  .service-margin-side,
  .service-margin-middle {
    margin-top: 0;
  }

  .service-card {
    height: auto;
    padding: 15px;
  }

  .service-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    margin-left: 12px;
    padding-left: 8px;
    border-left-width: 4px;
  }

  .service-card ul li {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .service-card img {
    border-radius: 20px;
  }

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

  /* STACK IMAGE + CONTENT */
  .why-us-container {
    flex-direction: column;
    gap: 40px;
    margin: 0;
    padding: 0 20px;
  }

  /* IMAGE FULL WIDTH */
  .why-img-box {
    width: 100%;
  }

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

  /* CALL BOX FIXED FOR MOBILE */
  .call-box {
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%);
    padding: 18px 22px;
    gap: 12px;
    border-radius: 15px;
  }

  .call-box span {
    font-size: 16px;
  }

  .call-details img {
    width: 35px;
    padding: 8px;
  }

  .call-details a {
    font-size: 16px;
  }

  /* FEATURES SECTION - CENTER + 2 ITEMS IN ROW */
  .features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 in a row */
    gap: 25px 20px;
    margin-top: 50px;
    justify-items: center; /* center items properly */
    text-align: center; /* text center */
  }

  .feature-item {
    align-items: center;
  }

  .feature-item .icon {
    width: 50px;
  }

  .feature-item h4 {
    font-size: 18px;
    padding-left: 0;
  }

  .feature-item h4::before {
    display: none; /* hide the blue line for clean mobile look */
  }
  .contact-form-box {
    max-width: 100%;
  }
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .contact-info-box,
  .contact-form-box {
    width: 90%;
  }
  .contact-subtitle {
    font-size: 15px;
    padding: 0 20px;
  }
  .contact-title {
    font-size: 26px;
  }
  .contact-subtitle {
    font-size: 14px;
  }
  .contact-info-box,
  .contact-form-box {
    padding: 20px;
  }
  .submit-btn {
    font-size: 14px;
  }

  .enq-wid {
    width: 345px;
    margin-top: 65px;
  }

  .home-gallery-bg h2 {
    font-weight: 400;
    font-size: 25px;
    text-align: center;
  }
  .home-gallery-bg {
    position: relative;
    padding: 19px 0;
  }
  .home-testimonial-bg {
    padding: 60px 20px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 16px;
  }

  /* STARS IMAGE */
  .stars-img {
    position: static;
    display: block;
    margin: 0 auto 30px;
    width: 120px;
  }

  /* SIDE IMAGE (HIDE ON SMALL DEVICES) */
  .home-testimonial-bg .image {
    position: static;
    margin: 0 auto 20px;
    display: none;
  }

  /* HEADING */
  .home-testimonial-bg h2 {
    letter-spacing: 6px;
    font-size: 16px;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: center;
  }

  /* TESTIMONIAL BOX */
  .home-testimonial-box {
    padding: 25px;
  }

  .home-testimonial-box p {
    font-size: 15px;
    margin: 20px 0;
  }

  .home-testimonial-box h5 {
    font-size: 18px;
  }

  .home-testimonial-box h6 {
    font-size: 14px;
  }

  /* QUOTE ICON */
  .quote-icon {
    width: 40px;
    top: 10px;
    left: 10px;
  }

  /* GALLERY SECTION */
  .home-gallery-bg {
    padding: 60px 0;
  }

  .home-gallery-bg::before {
    top: -120px;
    height: 30%;
  }

  .home-gallery-bg h2 {
    letter-spacing: 6px;
    font-size: 16px;
    margin-top: 60px;
  }

  .home-gallery-bg h3 {
    font-size: 34px;
    margin-bottom: 30px;
  }
  /* SITE FOOTER */
  .site-footer {
    padding: 80px 0 30px;
  }

  /* CTA BAR */
  .footer-cta {
    margin: 0 48px;
    padding: 25px 20px;
    flex-direction: column; /* stack content */
    text-align: center;
    gap: 20px;
    transform: translateY(-60px); /* less upward movement */
  }

  .footer-cta h3 {
    font-size: 22px;
    line-height: 1.4;
  }

  /* PHONE SECTION */
  .icon-phone {
    padding: 10px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .phone-text {
    font-size: 18px;
  }
  .footer-wrapper {
    top: 0;
    margin: 0 15px;
    padding: 40px 25px;
  }

  /* Show ONLY address */
  .footer-services,
  .footer-location {
    display: none;
  }

  /* Center address */
  .footer-address {
    text-align: left;
    margin-bottom: 30px;
  }

  /* Bottom section alignment */
  .footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
  }

  .footer-new .row:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-new .row:last-child .col-md-4 {
    text-align: center;
  }

  .footer-new img {
    max-width: 160px;
  }
  .social-media {
    margin-top: -1.5rem; 
  }
  .footer-text {
    text-align: center;
  }
  .footer-info {
    text-align: center;
  }
  .footer-title{
    margin-top: 55px;
  }
  .top-whats-app{position: fixed;bottom: 18px;right: 25px; z-index: 99999;}
}
