/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

@font-face {
  font-family: "Evogria";
  src: url("../fonts/Evogria.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Evogria";
  src: url("../fonts/Evogria-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

:root {
  --white: #fff;
  --black: #000;
  --primary: #29abe2;
  --secondary: #333333;
}

html {
    scroll-behavior: smooth;

    overflow-x: hidden;
}
body {
  position: relative;
  background: #f7f9f8;
  overflow-x: hidden !important;
  height: 100%;

}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 30px;
  color: var(--black);
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.subHead {
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 0.7rem;
}

.mainHead {
  font-size: 62px;
  font-family: "Evogria";
  font-weight: 400;
  text-transform: uppercase;
     letter-spacing: 7px;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
  overflow-x: hidden;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 1.125rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 12px;
  display: inline-block;
  padding: 1rem 2.5rem;
  line-height: normal;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 2px solid #fff;
}

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid #fff;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  position: relative;
}

.navbar-nav .nav-item .nav-link::before {
  width: 0%;
  height: 4px;
  background: var(--primary);
  top: -23px;
  position: absolute;
  content: "";
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.navbar-nav .nav-item .nav-link:hover:before {
  width: 100%;
}
.dropdown-menu {
  background: #1a1a1a;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  padding: 0.75rem 0;
  min-width: 200px;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

/* Show dropdown on open/hover */
.dropdown.show > .dropdown-menu,
.dropdown-menu.show,
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
  pointer-events: auto;
}

/* Dropdown Items */
.dropdown-menu .dropdown-item {
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: background 0.23s, color 0.23s, padding-left 0.2s;
  position: relative;
  z-index: 1;
}

/* Dropdown Item Hover */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background: var(--primary);
  color: #fff;
  padding-left: 2rem;
  box-shadow: 0 2px 8px rgba(200,23,59,0.09);
}

/* Nested Dropdown Arrow */
.dropdown-submenu > .dropdown-toggle::after {
  /*content: "\f105";*/
  /*font-family: "Font Awesome 5 Free";*/
  font-weight: 900;
  margin-left: 8px;
  font-size: 0.85em;
  vertical-align: middle;
  color: var(--primary);
}

/* Nested Dropdown Styles */
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 3px;
  background: #222;
  border-radius: 12px;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Separator (optional) */
.dropdown-menu .dropdown-divider {
  border-top: 1px solid #333;
  margin: 0.25rem 0;
}

/* Responsive: mobile dropdowns */
@media (max-width: 991px) {
  .navbar-nav {
    gap: 0.7rem;
    padding-top: 0.7rem;
    border-top: none;
  }
  .dropdown-menu,
  .dropdown-submenu > .dropdown-menu {
    position: static !important;
    min-width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    transform: none;
    border-radius: 0;
    background: #181818;
    margin: 0;
    padding: 0.7rem 0;
  }
  .dropdown-menu .dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: 0;
  }
}

/* Add subtle divider between items for clarity */
.dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Optional: Highlight parent link if dropdown is open */
.dropdown.show > .nav-link,
.dropdown-submenu:focus-within > .dropdown-toggle,
.dropdown-submenu:hover > .dropdown-toggle {
  color: #fff;
}

/* Optional: Add an indicator for active page in dropdown */
.dropdown-menu .dropdown-item.active {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-left: 4px solid #fff;
}
/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 100vh;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

/* .homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
} */

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

/* .homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
} */

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 1rem 0 0;
  color: var(--white);
  font-size: 75px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Evogria";
  letter-spacing: 8px;
}

.main-slider h3 {
  margin: 0;
  color: var(--white);
  font-size: 57px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Evogria";
  letter-spacing: 8px;
  margin: 1rem 0 2rem;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin: 0.625rem 0;
  font-size: 1.5625rem;
}

/* CSS */
/* .swiper-pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-right: 10px;
  width: fit-content;
  height: fit-content;
  right: 1rem;
}

.swiper-pagination-bullet {
  width: auto;
  height: auto;
  color: white;
  font-weight: bold;
  font-size: 16px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
} */
.homeSlider .swiper-pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-right: 10px;
  width: fit-content;
  height: fit-content;
  right: 1rem;
  left: auto;
}

.homeSlider .swiper-pagination-bullet {
  position: relative;
  width: auto;
  height: auto;
  padding-right: 30px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  opacity: 0.5;
  background: none;
  border: none;
  text-align: right;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.homeSlider .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 2px;
  background: white;
  transform: translateY(-50%);
}

/* ✅ Active bullet has same size, just more opacity */
.homeSlider .swiper-pagination-bullet-active {
  opacity: 1;
  font-size: 14px;
  /* Keep size same */
}

/* !MAIN HERO SLIDER CSS */

/* Header section */
#navMenu {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
}

.about_content .btn-group,
.navbar-collapse .btn-group {
  margin-left: auto;
  gap: 2rem;
  margin-bottom: 1.3rem;
}

#navMenu {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
}

.about_content .btn-group span,
.navbar-collapse .btn-group span {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.about_content .btn-group a:last-child,
.navbar-collapse .btn-group a:first-child {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.about_content .btn-group a:last-child h6,
.navbar-collapse .btn-group a:first-child h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.about_content .btn-group .themeBtn,
.navbar-collapse .btn-group .themeBtn {
  clip-path: polygon(6% 0, 100% 0%, 93% 100%, 0% 100%);
  border-radius: unset;
}

ul.side_links {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  top: 38%;
  left: 1rem;
  gap: 1rem;
  width: fit-content;
}

ul.side_links li:first-child {
  color: #fff;
  writing-mode: sideways-rl;
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 20px;
  margin-left: 1rem;
  font-weight: 700;
}

ul.side_links li:not(:first-child) {
  font-size: 22px;
}

ul.side_links li:not(:first-child) i {
  color: #fff;
}

/* main Slider styling */

.main-slider h5 {
  color: #fff;
  font-size: 34px;
}

.slideOne {
  padding-left: 6rem;
  position: relative;
}

.slideOne img {
  position: absolute;
  left: 0;
  top: 24%;
}

.slideOne .btn-group {
  gap: 1rem;
}

/* About section */
.about_content .btn-group a h6 {
  color: #000 !important;
}

.about_content p {
  margin-bottom: 2rem;
  font-weight: 500;
}

.mainHead.tiny {
  font-size: 47px;
  margin-bottom: 0.4rem;
  font-family: "Evogria";
}

.about .about_bg {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
}

.about .about_bg2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about_main {
  position: relative;
  padding-left: 5rem;
}

figure.about_main h4 {
  position: absolute;
  writing-mode: sideways-lr;
  white-space: nowrap;
  top: 43%;
  left: 2.2%;
  background: var(--primary);
  padding: 2rem 1rem;
  border-radius: 50px 0px 0px 50px;
  font-size: 26px;
  font-weight: 700;
}

/* service section */
.service_head {
  position: relative;
  text-align: center;
}

.service_head .mainHead {
  font-size: 60px;
}

.service_head img {
  position: absolute;
  margin: auto;
  inset: 0;
}

.service_head p {
  font-weight: 500;
}

.service_card h4 {
  font-size: 37px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 58px;
  margin: 2rem 0;
}

.service_card p {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 0.7rem;
}

.service_card a {
  color: #000;
  font-weight: 600;
  font-size: 21px;
}

.services > .themeBtn {
  color: #000;
  margin: auto;
}

section.services {
  padding-left: 8rem;
}

.serviceSlide {
  padding: 2rem 0 1rem;
}

.serviceSlide .swiper-wrapper {
  align-items: center;
}

.service_card figure img {
  border-radius: 10px;
}

/* full section */

.full {
  background: url(../images/full.png) no-repeat center / cover;
  height: 820px;
  display: grid;
  place-items: center;
}

.full_content .mainHead {
  color: #fff;
}

.full_content p {
  margin: 1rem 0;
  color: #fff;
  line-height: 30px;
}

.full_content a {
  color: #000;
  font-weight: 400;
}

.full_img {
  display: flex;
  /* align-items: flex-end; */
  gap: 3rem;
  position: relative;
}
.full_img figure{
  position: absolute;
    display: flex
;
    align-items: center;
    bottom: -221px;
    
}

.full_img figure img:nth-child(2){
      width: 315px;
    position: relative;
    top: 83px;
}
.full_img::before {
    position: absolute;
    content: "";
    width: 442px;
    height: 483px;
    left: 2%;
    bottom: -186px;
    border: 1px solid var(--primary);
    border-radius: 11px;
}


.full_img .ful_img {
  z-index: 1;
}

.img_bg {
  position: absolute;
  bottom: -50px;
  right: 0;
}

.serviceSlide .swiper-button-next {
  right: 6%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  opacity: 0.749;
  color: #0a1b15;
  font-size: 5rem;
  top: 30%;
}

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

.testi_card ul {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1rem 0;
}

.testi_card ul li a {
  color: #ffcc00;
}

.testi_card p {
  color: #757c85;
  font-size: 18px;
  line-height: 30px;
}

.testi_card figure {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.testimonial .mainHead {
  margin-bottom: 2rem;
  text-align: center;
}

.testiSlide .centeredSlides {
  border-width: 1px;
  border-color: rgb(41, 171, 226);
  border-style: solid;
  border-radius: 3px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 8px 53.1px 5.9px rgba(221, 221, 221, 0.31);
}

.testiSlide .swiper-slide > img {
  position: relative;
  top: 66px;
  left: 8%;
  z-index: 11;
}

.swiper-slide-active .testi_card {
  border-color: var(--primary);
}

.swiper-slide-active .testi_card .quote-icon {
  filter: brightness(0) saturate(100%) invert(34%) sepia(94%) saturate(1129%)
    hue-rotate(172deg) brightness(93%) contrast(98%);
  /* You can adjust this filter to match your actual --primary color */
  transition: filter 0.3s ease;
}

.testi_card {
  border: 1px solid #eee;
  padding: 5rem 4rem 2rem;
  position: relative;
}

/* .testi_card > img {
  position: absolute;
  top: -10%;
  left: 12%;
  z-index: 11;
} */

.testimonial .swiper-button-next,
.testimonial .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #000;
  top: 60%;
  border-radius: 50%;
  color: #fff;
  /* Ensure icon is visible */
  transition: background-color 0.4s ease-in;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Positioning */
.testimonial .swiper-button-next {
  right: -8px;
  left: auto;
}

.testimonial .swiper-button-prev {
  left: -8px;
  right: auto;
}

/* Hover effect */
.testimonial .swiper-button-next:hover,
.testimonial .swiper-button-prev:hover {
  background-color: var(--primary);
}

.testimonial .swiper-button-next:after,
.testimonial .swiper-button-prev:after {
  font-size: 12px;
  color: #fff;
}

/* Gallery  section */
.gallery .mainHead {
  margin-bottom: 2rem;
  text-align: center;
}

.gallery .house_mid {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.gallery .themeBtn {
  color: #000;
  margin-top: 2rem;
}

/* Contact section */

.contact {
  background: url(../images/contact-bg.png) no-repeat center / cover;
  height: 800px;
}

.contact .mainHead {
  text-align: center;
  margin-bottom: 2rem;
}

.contact_form .form-control {
  margin-bottom: 1rem;
  padding: 1.5rem 1rem;
  border-radius: 6px;
  border: 1px solid darkgray;
  box-shadow: unset;
}

.contact_form .form-control::placeholder {
  color: #111;
  font-size: 1.125rem;
}

.form_inputs select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  border: 1px solid darkgray;
  box-shadow: unset;
}

.contact_form textarea {
  height: 112px;
  resize: none;
  margin-top: 1rem;
}

.contact_form button {
  border: unset;
  box-shadow: unset;
  margin-top: 2rem;
  margin: auto;
}

/* footer css start */

footer {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: top left;
  padding: 100px 0 30px;
  background-color: #f7f9f8;
}

.footer-menu {
  display: flex;
  gap: 100px;
  padding: 30px 0;
  border-top: 1px solid #5d5c5c;
  border-bottom: 1px solid #5d5c5c;
  margin: 2rem 0;
}

.footer-menu li a {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 2px;
  transition: all 0.4s;
}

.footer-menu li a:hover {
  color: #e1e1e1;
}

.copyright-content p {
  font-size: 18px;
  color: #fffdfd;
}

.copyright-content p span {
  font-weight: 700;
}

.footer-social-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-social-links li a i {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.footer-social-links li a i:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.quickList h2 {
  font-size: 32px;
  font-weight: 500;
  color: #fdfdfd;
  margin-bottom: 1rem;
}

.calFoter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.calFoter li {
  display: flex;
  gap: 0.5rem;
}

.calFoter li:first-child {
  width: 100%;
}

.calFoter li a,
.calFoter li span {
  font-size: 18px;
  color: #fdfdfd;
  transition: all 0.4s;
}

.calFoter li a:hover,
.calFoter li span:hover {
  color: #e1e1e1;
}

.calFoter li i {
  color: #fdfdfd;
  margin-top: 6px;
}

.map-location iframe {
  border-radius: 20px;
}

/* footer css end */

/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 65px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Evogria";
}

.innerBan {
  position: relative;
}

.project-gall figure img {
  width: 100%;
}

.project-gall {
  margin-bottom: 1.5rem;
}

/* Video Sec Css Start */

.video-sec {
  background: url(../images/video.png) center/cover fixed;
  align-content: center;
  height: 800px;
}

.video-sec a i {
  height: 9.375rem;
  width: 9.375rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: auto;
  background-color: #ff0000;
  font-size: 1.75rem;
  color: var(--white);
  transition: 0.6s ease;
}

.video-sec a:hover i {
  transform: scale(1.1);
}

/* Video Sec Css End  */

/* Icon Sec Css Start */

.icon-wrapp {
  text-align: center;
  position: relative;
}

.icon-content h4 {
  color: #4a480d;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.425rem;
}

.icon-content p {
  text-transform: capitalize;
  color: #62788f;
}

.icon-wrapp::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background-color: rgb(0 0 0 / 6%);
  right: 0;
}

section.icon-sec .col-md-3:last-child .icon-wrapp::before {
  position: unset;
}

.icon-sec {
  padding: 9rem 0 6rem;
}

/* Icon Sec Css End  */

/* Choose Sec Css Start */

.choose-images {
  display: flex;
  gap: 3rem;
}

.choose-imag {
  margin-top: 3rem;
  flex-shrink: 0;
  height: fit-content;
  width: fit-content;
}

.choose-img {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  height: fit-content;
}

.choose-images h5 {
  font-size: 3.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.choose-imag h5 {
  margin-bottom: 1.25rem;
}

.choose-img h5 {
  margin-top: 1.25rem;
}

.choose-img::before {
  position: absolute;
  content: "";
  height: 50%;
  background-color: #29ace2;
  width: 88%;
  right: -10px;
  z-index: -1;
  bottom: 83px;
}

.choose-imag::before {
  position: absolute;
  content: "";
  height: 50%;
  background-color: #29ace2;
  width: 43%;
  right: -43px;
  z-index: -1;
  top: 8rem;
  left: inherit;
}

.choose-content p {
  font-size: 1.125rem;
  width: 62%;
}

.choose-content .mainHead {
  margin-bottom: 1rem;
}

.choose-content p + p {
  margin: 1rem 0;
}

.choose-sec {
  padding: 2rem 0;
}

/* Choose Sec Css End  */

/* Info Sec Css Start */
.info-img {
  height: 200px;
  width: 200px;
  display: grid;
  background-color: #092664;
  place-items: center;
  border-radius: 50%;
  margin: auto;
}

section.info-sec .col-md-3:nth-child(2) .info-img {
  background-color: var(--primary);
}

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

section.info-sec .col-md-3:nth-child(3) .info-img {
  background-color: var(--black);
}

.info-wrapp h5 {
  font-size: 22px;
  text-transform: uppercase;
  margin-top: 1.75rem;
  font-weight: 600;
}

.info-wrapp h5 span {
  display: block;
  color: #2a2323;
  font-size: 22px;
  text-transform: none;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 0.625rem;
}

.info-sec {
  background: url(../images/infobg.png) center/cover no-repeat;
  padding: 9rem 0;
}

.info-img:hover img {
  transform: scale(1.2);
}

.info-img img {
  transition: 0.6s ease;
}
/* Info Sec Css End  */

/* Iframe Sec Css Start */
figure.map-img img {
  width: 100%;
}

.map-wrapp iframe {
  display: block;
  border-radius: 16px;
}

.map-wrapp {
  position: relative;
}

.map-wrapp::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
  border-radius: 16px;
  z-index: -6;
}

/* Iframe Sec Css End  */

/* Services Sec Css Start */

figure.servicesimag img {
  width: 100%;
}

.servicescontent p {
  font-size: 1.125rem;
  color: #828282;
  width: 85%;
}

.servicescontent h2 {
  font-size: 3.75rem;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.servicescontent p + p {
  margin: 1rem 0;
}

.servicescontent {
  padding-left: 3.75rem;
}

.servicesimag {
  position: relative;
  z-index: 1;
}

.servicesimag::before {
  position: absolute;
  content: "";
  height: 50%;
  top: -5em;
  bottom: 0;
  margin: auto;
  left: -10px;
  background-color: #29abe2;
  width: 30px;
  border-radius: 13px;
  z-index: -1;
}

.servicesvectore1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

section.servicessec {
  z-index: 1;
}

section.servicessec.services1 .servicesimag::before {
  height: 60%;
  width: 50%;
  right: -11px;
  bottom: -10px;
  top: unset;
  left: unset;
  border-radius: 10px;
}

.servicesvectore2 {
  position: absolute;
  left: 0;
  bottom: -30%;
  z-index: -1;
}

section.servicessec.services1 {
  padding: 0 0 6rem;
}

section.servicessec.services3 .servicesimag img {
  border-radius: 16px;
}
/* Services Sec Css End  */

/* Roofing Sec Css Start */
.roofing-sec {
  background: url(../images/roofingbg.png) center/cover fixed;
  background-color: #132c64;
  z-index: 1;
}

.roofing-sec::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 23%;
  background-color: #29abe2;
  top: 0;
  bottom: 0;
  z-index: -1;
}

figure.roofing-img img {
  border-radius: 16px;
  width: 100%;
}

figure.roofing-img {
  position: relative;
  z-index: 1;
}

figure.roofing-img::before {
  position: absolute;
  content: "";
  height: 60%;
  width: 50%;
  background-color: #153777;
  z-index: -1;
  bottom: -10px;
  left: -12px;
  border-radius: 10px;
}

.roofing-content h2 {
  font-size: 3.75rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 1rem;
}

.roofing-content p {
  font-size: 1.125rem;
  color: var(--white);
  width: 85%;
}

.roofing-content p + p {
  margin: 1.125rem 0;
}

.roofing-content {
  padding-left: 3.75rem;
}
/* Roofing Sec Css End */

/*Site loader Css*/
.site-loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: var(--primary);
	z-index: 999999;
}

.site-loader .pl {
	margin: auto;
	position: relative;
	width: 8em;
	height: 8em;
	z-index: 99;
}

.site-loader .pl:before,
.pl:after {
	animation: pl-before 2.5s var(--trans-timing) infinite;
	background-color: var(--extra-color-1);
	content: "";
	display: block;
	position: absolute;
	top: 75%;
	left: 50%;
	width: 25%;
	height: 25%;
	transform-origin: 100% 100%;
}

.site-loader .pl:after {
	animation-name: pl-after;
}


.trouble_bg {
     position: absolute;
  bottom: 0;
  right: 0;
}

.roofing-service{
    padding-top:50px;
    padding-bottom:300px;
}
.add-margin {
        padding-bottom: 139px !important;
    }
.why-trust-section{
    background:white;
}
.roof-over-section{
    background:#29abe2;
}

.sec-privacy h3{
  padding: 1.2rem 0;
}
.sec-privacy ul li{
list-style: circle;
padding: 0.7rem;
}
.sec-privacy ul {
padding-left: 2.5rem;
}

.img-radius{
  border-radius: 30px;
}

.card-full-h{
  height: 100%;
}
.card-full-h img{
  height: 100% !important;
  width: 100%;
}


@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }

  .navbar-collapse.show {
    display: block !important;
  }
}



/* add card remove inline css add external css */
 .new-card-css img{
    width: 100%;
}
 .new-card-css .card-body{
    background: #fff;
     border-radius: 18px; 
     position: absolute; 
     left: 50%; top: 80%;
      transform: translateX(-50%);
       width: 85%;
        box-shadow: 0 8px 32px rgba(40,40,40,0.09);
}
 .new-card-css .card-body .card-title{
    font-weight:700; 
    font-size:2rem;
}
 .new-card-css .card-body
.card-text{
    color:#888
}

.add-margin  .new-card-css{
   
margin-bottom: 6.7rem;
}

.why-trust-section h3{
            font-size: 41px !important;
}

.inner-slider{
  height: 76vh;
}