* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto';
}


@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-LightItalic.woff2') format('woff2'),
        url('../fonts/Roboto-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Italic.woff2') format('woff2'),
        url('../fonts/Roboto-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Black.woff2') format('woff2'),
        url('../fonts/Roboto-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-BlackItalic.woff2') format('woff2'),
        url('../fonts/Roboto-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.woff2') format('woff2'),
        url('../fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-BoldItalic.woff2') format('woff2'),
        url('../fonts/Roboto-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Thin.woff2') format('woff2'),
        url('../fonts/Roboto-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-MediumItalic.woff2') format('woff2'),
        url('../fonts/Roboto-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
        url('../fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-ThinItalic.woff2') format('woff2'),
        url('../fonts/Roboto-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}
/* Hero Section */
.hero {
  position: relative;
  min-height:calc(100vh - 100px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items:center;
  justify-content: center;
  transition: background-image 1.2s ease-in-out;
}
.button-bg i {
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    background: #dddddd;
    width: 37px;
    font-size: 20px;
    height: 37px;
    justify-content: center;
    display: inline-block;
}
.button-bg {
    text-decoration: none;
     padding: 13px 20px 13px 10px;
    margin-top: 19px;
    font-weight: 400;
    border: 1px solid #fff;
    border-radius: 32px;
    background: #FFF;
    color: #000000;
    font-size: 20px;
    cursor: pointer;
}
.banner-btn p {
    margin-bottom: 0px;
    margin-top: 20px;
}
.banner-btn {
    position: absolute;
    bottom: 56px;
}
.button-bg:hover{
  color: #000;
}

.button-bg.button {
    background: transparent;
    color: #fff;
    margin-right: 15px;
    padding: 13px 36px;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgb(0 0 0 / 15%);
}
.nav-right ul li a {
    font-size: 19px;
    color: #fff;
    padding: 10px 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.5s;
}
.nav-right ul li a:hover{
  color: #f54c30;
}
.nav-right ul li{
  list-style: none;
}
.header.sticky .logo img
 {
    width: 118px;
}
.header {
    position: absolute;
    top: 0;
    z-index: 11;
    padding: 13px;
      transition: all 0.3s ease;
  z-index: 999;
    width: 100%;
    background: #00000070;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
      background: #2f2f2f;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  animation: slideDown 0.3s ease;
}

/* Smooth slide animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.logo img {
    width: 206px;
}
.hero-banner {
    display: flex;
    justify-content: center;
    background-color: #00000069;
    border-radius: 12px;
    padding: 20px;
}
.container {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  max-width: 1200px;
}
.whatsapp-info {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
}
.whatsapp-info a {
    display: flex;
     width: 60px;
    height: 60px;
    color: #fff;
    font-size: 35px;
    color: #fff;
    align-items: center;
    justify-content: center;
    z-index: 9999;
        margin-bottom: 10px;
    text-decoration: none;
    border-radius: 50%;
    padding: 9px;
}
.whatsapp-icon{
  background-color: green;
}
.phone-icon{
background-color: #027AAF;
}
.mail-icon{
background-color: #BF8C1B;
}
.whatsapp-info a svg {
    width: 40px !important;
    height: 40px !important;
}
.logo {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 0px;
}

.logo span {
  color: #00aaff;
}
.banner-left span{
  font-weight: 700;
}

.banner-left h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  font-style: oblique;
}

.banner-left p {
  font-size: 27px;
  color: #fff;
      font-style: italic;

  margin-bottom: 0px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info i {
  font-size: 1.8rem;
  color: #ffff;
}

.contact-info p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-info h3 {
  margin-top: 3px;
  font-size:25px;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background: #bcbcbc;
}

::-webkit-scrollbar {
    width: 3px;
    background-color: var(--backgroundColor);
    height: 2px;
}
.banner-right {
  background: rgb(0 0 0 / 49%);
    padding: 50px 41px;
    border-radius: 8px;
    max-width: 545px;
    width: 100%;
    border: 1px solid #ffffff4d;

}
button.btn-close {
 position: absolute;
    right: -31px;
    background-color: #00b0fa;
    top: -27px;
    width: 20px;
    display: flex;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    line-height: initial;
    height: 20px;
    opacity: 1;
    filter: none;
    color: #ffeeee !important;
    background-image: none;
}
.form-box h3 {
    font-weight: 500;
    text-align: center;
    line-height: 33px;
    color: #000;
    font-size: 27px;
    margin-bottom: 30px;

}
.section-title {
    grid-column-gap: 19px;
    grid-row-gap: 25px;
    flex-direction: row;
    color: #000;
    justify-content: center;
    font-size: 28px;
    font-weight: 500;
    align-self: stretch;
    align-items: center;
    padding-top: 0;
    padding-bottom: 2rem;
    display: flex;
}
.border-shape {
    background-color: #000;
    width: 30px;
    max-width: 30px;
    height: 1px;
}

form button {
  width: 100%;
  padding: 12px;
  margin-top: 19px;
  border: none;
  border-radius: 4px;
  background: #00aaff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #0088cc;
}

.features {
  background: #0096ff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 197px;
  padding: 30px 10px;
  flex-wrap: wrap;
  text-align: center;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.feature-box img {
  width: 57px;
  margin-bottom: 10px;
  filter: brightness(100);
}

.feature-box p {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0px;
}
.banner-left{
  text-align: center;
}

.contact-form-group {
    margin-bottom: 14px;
}
.contact-form-group label {
    color: #fff;
    display: block;
    font-size: 17px;
    font-weight: 500;
    padding-bottom: 7px;
}
.header-info-right {
    margin-top: 17px;
}
.contact-main-info .border-shape {
  background-color: #fff;
}

.header-info-right span {
    margin-right: 12px;
}
.header-info-right a:hover{
  background-color: #0096ff;
}
.header-info-right a {
    text-decoration: none;
    color: #ffffff;
    border-radius: 50%;
    width: 35px;
    align-items: center;
    justify-content: center;
        margin-right: 9px;
    font-size: 22px;
    display: inline-flex;
    height: 35px;
    border: 1px solid #fff;
    padding: 6px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.contact-form-group input, .contact-form-group textarea {
    border: 1px solid #cccccc36 !important;
    border-radius: 5px;
    background: #090909 !important;
    font-size: 14px;
    outline: none;
    color: #fff;
    padding: 12px;
    transition: border-color .3s ease-in-out;
    width: 100%;
}
.card-section{
  background-image: url('../img/banner-2.webp');
  background-size: cover;
  width: 100%;
  min-height: 800px;
  background-attachment: fixed;
}



/* 🔹 Overlay effect */
.contact-main-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* black overlay with 60% opacity */
  z-index: -1;
}
.contact-details {
    width: 100%;
    max-width: 656px;
    padding: 34px 55px;
    margin-bottom: 44px !important;
    margin: auto;
    border-radius: 20px;
    background: #fff;
}
/* ===== About Us Section ===== */
.about-us-section {
  position: relative;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.about-us-overlay {
  padding: 80px 0;
}

.about-us-info{
  margin-top: 90px;
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-us-content {
  flex: 1 1 45%;
  z-index: 2;
}

.about-us-title {
  font-size: 36px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.about-us-title span {
  display: block;
  font-weight: 300;
  font-style: italic;
  text-transform: none;
  font-size: 26px;
}

.about-us-subtitle {
  margin: 20px 0 40px;
  font-size: 16px;
}

.about-us-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 5px;
  margin-bottom: 40px;
 
  align-items: center;
}
.about-icon-item::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 75px;
    background-color: #0000006b;
    right: 0px;
    top: 0px;
}

.about-icon-item {
    text-align: center;
    position: relative;
    height: 100%;
}

.about-icon-item img {
      width: 40px;
    height: 39px;
    margin-bottom: 12px
}
.about-icon-item.about-border:after {
    display: none;
}

.about-icon-item p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-us-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-us-text.italic {
  font-style: italic;
}

.about-us-btn {
  display: inline-block;
  padding: 12px 35px;
  border: 1px solid #fff;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-us-btn:hover {
  background: #fff;
  color: #007fae;
}

.about-us-map {
  flex: 1 1 45%;
  text-align: center;
}

.about-us-map img {
  max-width: 100%;
  height: auto;
}

/* ===== services Section ===== */
.services-section {
  text-align: center;
  padding: 80px 20px;
     background: linear-gradient(360deg, rgba(245, 76, 48, 1) 0%, rgba(255, 255, 255, 1) 100%);
  font-family: "Poppins", sans-serif;
}
.footer-socia-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
    padding-top: 37px;
}
.footer-title {
    font-size: 15px;
    font-weight: 700;
    color: #282c3f;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.footer-logo img {
    width: 218px;
}
footer.footer-info {
   padding: 27px 0px;
    margin-top: 82px;
    border-top: 1px solid #0000000d;
    background: linear-gradient(360deg, rgb(245 76 48 / 38%) 0%, rgba(255, 255, 255, 1) 100%);
}
.social-icons a {
    text-decoration: none;
    color: #ffffff;
    border-radius: 50%;
    background: #f54c30;
    width: 35px;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    font-size: 18px;
    display: inline-flex;
    height: 35px;
    border: 1px solid #f54c30;
    padding: 6px;
    transition: all 0.5s;
}
.social-icons a:hover{
  color: #f54c30;
    background: #fff;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-subtitle {
  max-width: 900px;
  margin: 0 auto 60px;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== services Grid ===== */
.services-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 37px;
  flex-wrap: wrap;
}

.services-card {
  text-align: center;
  width: 200px;
}
.contact-add-info {
       padding-top: 39px;
}
.nav-right ul li a:focus{
  color: #f54c30;
}


.services-image {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px dashed;
    transition: transform 0.4s ease;
}

.services-image img {
    width: 100%;
    height: 200px;  
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.services-image:hover img {
  transform: scale(1.05);
}

.services-name {
  font-size: 19px;
  font-weight: 600;
  color: #000;
  margin-top: 15px;
}

/* ===== Button ===== */
.btn-wrapper {
  margin-top: 70px;
}

.btn-enquire {
  display: inline-block;
  padding: 14px 45px;
  border: 1px solid #000;
  border-radius: 40px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-enquire:hover {
  background-color: #000;
  color: #fff;
}






.contact-details .form-box h3{
  color: #000;
}
.mob-num-info .contact-card-info .language-dropdown{
  text-align: left;
}
.mob-num-info .search-box{
  padding: 7px 12px;

}
.mob-num-info .language-options li:hover {
    background-color: #56565612;
}
.mob-num-info .dropdown-menu{
  background-color: #fff;
}
.mob-num-info .language-options li{
  color: #000;
}
.contact-card-info .contact-form-group label{
  text-align: left;
  color: #000;
}
.contact-card-info .contact-form-group input, .contact-form-group textarea{
      background: #ededed !important;
      color: #000000;
}
.contact-card-info .language-dropdown{
     background: #ededed !important;
      color: #000000;
}
.location-info {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #f5f5f5;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 37px;
}
.map-sec {
    height: 370px;
}
.location-icon {
    border: 1px dashed #fa3835;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 50px;
    background-color: #fff;
    padding: 0 20px;
}

.location-icon i {
    font-size: 23px;
    color: #f54c30;

}
.contact-details-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.contact-add span {
    font-size: 33px;
    font-weight: 500;
}
.contact-add  .border-shape{
  background-color: #000;
}
.location-add {
    text-align: start;
}
.contact-add {
    margin: auto;
    max-width: 100%;
    padding: 66px 0px;
}
.location-add span {
    font-size: 16px;
    padding-bottom: 2px;
    font-weight: 500;
    color: #414141;
}
.location-add p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #000;
    text-transform: capitalize;
}
.map-sec iframe {
    width: 100%;
    height: 100%;
}

.property-gallery {
  background-color: #f8f9fb;
  padding: 90px 0;
}


.gallery-grid {
  display: grid;
grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}



.gallery-item {
  overflow: hidden;
  height: 245px;
  border: 2px dashed #000;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}
.product-name{
    width: 100%;
    position: absolute;
    bottom: 0;
    font-size: 21px;
    font-weight: 500;
    padding: 10px 5px;
    left: 0;
    text-align: center;
    border-radius: 0px 0px 4px 4px;
    background-color: #0000008f;
    color: #fff;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}


.nav-right ul {
    display: flex;
    padding: 0;
    margin: 0;
}
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom {
   margin: auto;
    padding: 27px 20px;
    padding-bottom: 46px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    border-top: 1px solid #fa38354a;
}
.privacy-info a {
    color: #131313;
    font-size: 16px;
    text-decoration: underline;
    padding-left: 18px;
    transition: all 0.5s;
}
.privacy-info a:hover{
  color: #f54c30;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 15px;
}
.about-us-text span {
    font-weight: 700;
}
/* -----privacy policy---- */
.header.header-inner {
    position: sticky;
    background: #2f2f2f;
}

.policy-details-info {
    padding: 20px 20px;
    border-radius: 20px;
    background: #fafafa;
    box-shadow: 0px 1px 11px 1px #00000021;
}
.terms-title {
    text-align: center;
    font-size: 32px;
    color: #f54c30;
    font-weight: 700;
    margin-bottom: 20px;
}
.privacy-content h2 {
    font-size: 20px;
    margin: 30px 0 10px;
    color: #222;
    font-weight: 600;
}
.privacy-content p {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 10px;
}
.privacy-content ul {
    margin-left: 20px;
    margin-top: 10px;
}
.privacy-content ul li {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 8px;
    list-style: disc;
}
.terms-section {
    padding: 95px 0px;
    padding-bottom: 20px;
}
.policy-details-info h2 {
    font-size: 22px;
}







@media (max-width:1500px) {
  .services-wrapper{
        gap: 21px;
  }
  .btn-wrapper {
    margin-top: 44px;
}
.about-us-overlay {
    padding: 0px;
}
.about-us-icons{
      gap: 12px 18px;
}
.banner-left h1 {
    font-size: 52px;
}
}
@media (max-width:1400px) {
.services-card {
    text-align: center;

}
}

@media (max-width:1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
    }
  .container {
    width: 100%;
  }
  .services-image {
    width: 171px;
    height: 171px;
  }
  .services-card {
    text-align: center;
    width: 171px;
}
}

@media (max-width:1024px) {
  .container {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
  .about-us-section{
    padding-bottom: 0px;
  }
  .banner-left {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .banner-right {
    padding: 19px 24px;
    border-radius: 8px;
    max-width: 399px;
  }

}
@media (max-width:991px) {
  .banner-left{
  text-align: left ;
  }
  .banner-left h1 {
    font-size: 33px;
    margin-bottom: 0px;
}
.banner-left p{
      margin-top: 15px;
    margin-bottom: 0rem;
}
.logo img {
    width: 208px;
}
.button-bg{
      font-size: 15px;
}
.banner-btn{
  text-align: left;
}
.about-us-text{
  text-align: left;
}
button.btn-close{
      top: -37px;
      right: 0px;
}

}
@media (max-width:768px) {
  .about-us-info {
    display: block;
  }
  form button{
    margin-top: 7px;
  }
  .about-us-map img {
    max-width: 49%;
  }
  .modal-img{
    display: none;
  }
  .modal-inner-data {
    width: 100%;
  }
}
@media (max-width:575px) {
  .hero-banner {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 45px;
    justify-content: space-between;
}

.banner-btn {
    position: static;
    bottom: 56px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}
.banner-left{
  margin-bottom: 0px;
  text-align: center;
}
.banner-left h1 {
    font-size: 27px;
    margin-bottom: 0px;
}
.banner-left p {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 0px;
}
.about-us-icons{
  grid-template-columns: repeat(2, 1fr);
          gap: 12px 2px;
}
  .services-image {
        width: 116px;
        height: 116px;
  }
    .services-image img {
    width: 100%;
    height: 100%;
    }
    .services-name {
    font-size: 14px;
    font-weight: 500;
    }
    .btn-enquire {
    display: inline-block;
    padding: 9px 65px;
    }
    .property-gallery {
    background-color: #f8f9fb;
    padding: 22px 0;
}
.contact-add span {
    font-size: 25px;
}
.location-add span {
    font-size: 18px;
}
.section-subtitle{
  margin: 0 auto 29px;
    line-height: 21px;
}
.contact-details {
      padding: 18px 21px;
}
.card-section {
    background-size: cover;
    width: 100%;
    min-height: 225px;
    background-attachment: inherit;
}

.location-info {
    gap: 12px;
}
.location-add p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}
.contact-add {
    margin: auto;
    max-width: 950px;
    padding: 29px 0px;
}
        .btn-wrapper {
        margin-top: 33px;
    }
    .services-wrapper {
        row-gap: 6px;
        justify-content: space-around;
    }
        .services-card {
        text-align: center;
        width: 102px;
    }
  .about-us-text {
      text-align: center;
      line-height: 21px;
  }
  .about-us-btn{
    padding: 8px 60px;
  }
  .contact-details{
        margin-bottom: 29px !important;
  }
  .header-info-right{
    text-align: left;
  }
  .contact-main-info{
    padding: 36px 0;
        padding-bottom: 50px;
  }
  .section-title{
        font-size: 25px;
        padding-bottom: 0px;
            font-weight: 500;
  }
  .services-section {
    text-align: center;
    padding: 39px 20px
  }
.about-us-section{
  padding: 52px 0;
}
.about-icon-item::after{
  display: none;
}
.about-us-title span {
        font-size: 19px;
        margin-top: 7px;
        display: flex;
        text-align: center;
        justify-content: center;
    }
.about-us-title {
    font-size: 25px;
}
.about-us-title span{
      font-size: 19px;
}
.button-bg i{
    width: 34px;
    margin-right: 10px;
    height: 34px;
    font-size: 17px;
}
.logo img {
    width: 169px;
}
.button-bg{
        width: 100%;
        margin-top: 14px;
        font-size: 17px;
        padding: 9px 5px !important;
        text-align: center;
}
.about-us-overlay {
    padding: 0px;
}
.gallery-grid{
 grid-template-columns: repeat(2, 1fr); 
 gap: 8px;
}
.gallery-item:last-child {
  grid-column: 1 / -1; 
}
.gallery-item{
  height: 149px;
}

.gallery-item:last-child img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero{
          padding: 0px 20px;
  min-height: 100vh;
}
.banner-btn p{
  font-size: 11px;
  margin-top: 76px;
}
.services-card:nth-child(3){
  width: 100%;
}

}
