body {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 400;
}

#loader {
    display: none;
}

.custom-css {
    padding-top: 69px;
}

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

header {
    background-color: #fff;
    box-shadow: 0 0 5px #dcdcdc;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}
.price-section {
      max-width: 1000px;
      margin: 60px auto;
      padding: 20px;
      background: #fff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
      border-radius: 12px;
    }

    .price-section h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 30px;
      color: #333;
    }

    .price-table {
      width: 100%;
      border-collapse: collapse;
    }

    .price-table th, .price-table td {
      padding: 15px;
      text-align: center;
      border-bottom: 1px solid #eee;
    }

    .price-table th {
      background-color: #00a3d3;
      color: white;
    }

    .price-table td:last-child a {
      background-color: #00a3d3;
      color: white;
      padding: 8px 14px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.95rem;
      transition: background 0.3s;
    }

    .price-table td:last-child a:hover {
      background-color: #00a3d3;
    }

    @media (max-width: 768px) {
      .price-table, .price-table thead, .price-table tbody, .price-table th, .price-table td, .price-table tr {
        display: block;
      }

      .price-table thead {
        display: none;
      }

      .price-table tr {
        margin-bottom: 20px;
        background: #f9f9f9;
        padding: 15px;
        border-radius: 10px;
      }

      .price-table td {
        text-align: left;
        padding: 10px 15px;
        position: relative;
      }

      .price-table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #00a3d3;
      }
    }
.banner-slider {
      position: relative;
      overflow: hidden;
      height: 100vh;
      max-height: 700px;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: opacity 1s ease-in-out;
      opacity: 0;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }


    .banner-content {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 3;
      color: white;
      height: 100%;
      padding: 40px;
      flex-wrap: wrap;
    }

    .banner-text {
      flex: 1 1 60%;
      max-width: 60%;
      padding-right: 20px;
    }

    .banner-text h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }

    .banner-text p {
      font-size: 16px;
    }

    .banner-form {
      flex: 1 1 35%;
      background: rgba(255, 255, 255, 0.95);
      padding: 25px;
      border-radius: 10px;
      color: #333;
    }

    .banner-form h3 {
      margin-bottom: 15px;
    }

    .banner-form input,
    .banner-form button {
      width: 100%;
      padding: 12px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .banner-form button {
      background-color: #00a3d3;
      color: white;
      border: none;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .banner-slider {
        height: auto;
        max-height: none;
      }

      .banner-content {
        flex-direction: column;
        align-items: center;
        padding: 20px;
      }

      .banner-text,
      .banner-form {
        max-width: 100%;
        flex: 1 1 100%;
        padding: 0;
      }

      .banner-text h1 {
        font-size: 28px;
        text-align: center;
      }

      .banner-text p {
        font-size: 14px;
        text-align: center;
      }

      .banner-form {
        margin-top: 20px;
        padding: 20px;
      }
    }
     .floor-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .floor-section h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #333;
    }

    .floor-grid {
      display: grid;
      text-align: center;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .floor-card {
      background: #fff;
      padding-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .floor-card:hover {
      transform: scale(1.03);
    }

    .floor-card img {
      width: 100%;
      display: block;
    }

    .floor-card h3 {
      text-align: center;
      padding: 15px 0;
      color: #444;
      font-size: 1.2rem;
    }
    .floor-card img {
  width: 100%;
  display: block;
  filter: blur(5px);
  transition: filter 0.4s ease;
}

.floor-card:hover img {
  filter: blur(0);
}
 .location-section {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
    }

    .location-content {
      flex: 1 1 500px;
    }

    .location-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #333;
    }

    .location-content p {
      font-size: 1.05rem;
      color: #555;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .location-list {
      list-style: none;
      padding: 0;
    }

    .location-list li {
      margin-bottom: 18px;
      font-size: 1rem;
      color: #333;
      display: flex;
      align-items: center;
    }

    .location-list li i {
      color: #00a3d3;
      margin-right: 12px;
      font-size: 1.2rem;
    }

    .location-image {
      flex: 1 1 400px;
    }

    .location-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
      .location-section {
        flex-direction: column;
        text-align: center;
      }

      .location-list li {
        justify-content: center;
      }
    }

    .faq-section {
    background-color: #2a2a2a;
    /*padding: 40px 0;*/
}

.faq-section .section-title h2 {
    color: #000000;
    margin: 0 0 20px 0;
}

.faq-section .section-title p {
    color: #fff;
}

.faq-section .section-title p a {
    color: #fff;
}
.specialist-block h5 {
    margin-bottom: 10px;
    padding-left: 18px;
    border-left: 6px solid  #00a3d3;
}

.specialist-block p {
    text-align: justify;
    margin: 0;
    font-size: 15.3px;
    font-family: 'Calibri', sans-serif !important;
}
.specialist-block {
    margin-bottom: 30px;
    border: 1px solid #00a3d3;
    color: #000 !important;
    min-height: 90%;
    /* border-width: 1px; */
    /* border-style: solid; */
    /* border-color: #000; */
    /* border-image: initial; */
    padding: 15px;
}
.project-highlights {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.specialist-block h3 {
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: 6px solid #00a3d3;
    color: #000 !important;
    font-size: 20px;
}
section {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* soft shadow */
    margin: 40px 0; /* space between sections */
    padding: 40px 20px; /* inner spacing */
    background-color: #fff; /* optional: white background */
    border-radius: 12px; /* optional: rounded corners */
}
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #00a3d3;
  margin-bottom: 40px;
  position: relative;
}

.highlights-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.highlight-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.highlight-item h4 {
  color: #00a3d3;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.highlight-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.project-amenities {
  padding: 60px 20px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #00a3d3;
  margin-bottom: 40px;
}

#amenities {
  text-align: center;
  padding: 50px 20px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.amenity-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  text-align: center;
}
.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.amenity-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}
.amenity-card h3 {
  font-weight: 600;
  color: #00a3d3;
  font-size: 18px;
  margin-bottom: 10px;
}
.amenity-card p {
  font-size: 14px;
  color: #555;
}
.gallery-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.gallery-section .subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}
.highlights-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.highlight-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.highlight-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.highlight-list {
  padding-left: 20px;
  list-style: none;
}

.highlight-list li {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* Trigger Button Styling */
.open-popup-btn {
  padding: 12px 25px;
  font-size: 16px;
  background: linear-gradient(135deg, #25579c, #00a3d3);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.open-popup-btn:hover {
  background: #00a3d3;
  transform: translateY(-2px);
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* Form Box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 480px;
  margin: 5% auto;
  padding: 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: popupFade 0.4s ease;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #444;
  cursor: pointer;
}

.popup-box h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #00a3d3;
  font-size: 24px;
}

/* Form Inputs */
.popup-box input,
.popup-box textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.popup-box input:focus,
.popup-box textarea:focus {
  border-color: #00a3d3;
  outline: none;
}

/* Submit Button */
.submit-btn {
  background: #00a3d3;
  color: #fff;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #00a3d3;
}

/* RERA Info */
.rera-text {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

@keyframes popupFade {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-control {
    margin-bottom: 10px;}
    /* Sticky Mobile Chat/Call Bar */
    .sticky-footer {
      display: none;
    }

    @media (max-width: 768px) {
      .sticky-footer {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #00a3d3;
        color: #fff;
        justify-content: space-around;
        padding: 10px 0;
        z-index: 9999;
      }

      .sticky-footer a {
        color: white;
        text-decoration: none;
        font-weight: bold;
      }
    }

    
    /* Popup */
    #popup-form {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 9999;
    }

    #popup-form .popup-content {
      background: #fff;
      width: 90%;
      max-width: 400px;
      margin: 10% auto;
      padding: 30px;
      position: relative;
      border-radius: 10px;
    }

    #popup-form .popup-content span {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
    }
.mobile-number a,
.mobile-number span {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    background-color: #5bd5b4;
    border-radius: 4px;
    padding: 2px 10px;
    display: flex;
    align-items: center;
    font-weight: 600;
    margin: 0 0 0 10px;
    cursor: pointer;
}

.common-btn {
    /* text-align: center; */
}

.common-btn .btn {
    color: #5bd5b4;
    font-size: 16px;
    border: 1px solid #5bd5b4;
    width: 100%;
}

.project-section {
    background-color: #f0f0f0;
    padding: 80px 0 15px 0;
}

.disclaimer {
    border: 1px solid #000;
    padding: 20px 20px 10px 20px;
}

.disclaimer h2 {
    text-align: center;
    font-size: 22px;
    color: #000;
    margin-bottom: 20px;
}

.disclaimer p {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.project-content {
    background-color: #fff;
    padding: 15px;
    position: relative;
}

.project_status {
    width: auto;
    position: absolute;
    left: 50%;
    bottom: 0;
    background-color: #b08338;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 4px 5px 1px;
    transform: translateX(-50%);
    text-transform: uppercase;
}

.project-content h2 {
    font-size: 22px;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-align: center;
}

.project-content p {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.project-content p img {
    width: 18px;
    height: auto;
    margin-top: -5px;
}

.project-content p span {
    color: rgb(134, 130, 130);
}

.project-cnt-item {
    display: flex;
    align-items: center;
    margin: 0 0 15px 0;
    background-repeat: no-repeat
}

.project-cnt-item p {
    margin: 0;
    padding: 0 0 0 34px;
    font-size: 16px
}

.project-item {
    margin: 0 0 30px 0;
    overflow: hidden;
    box-shadow: 4px 5px 2px gainsboro;
}

.project-image {
    position: relative;
}

.input-group {
    margin-bottom: 15px
}

.countryCode {
    width: 30%;
    border: 1px solid #ced4da;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.submit-btn {
    background-color: #1a73e8;
    color: #fff;
    display: block;
    width: 100%
}

.pop-call {
    text-align: center
}

.modal-body {
    padding: 0
}

.modal-header {
    border-bottom: 0
}

.pop-call a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    display: block;
    padding: 10px 0;
    background-color: #1a73e8
}

.modal-body form {
    padding: 20px
}

.we-deliver ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    text-align: center
}

.we-deliver ul li span {
    display: block;
    line-height: 100%;
    font-size: 15px
}

.we-deliver ul li .fa {
    font-size: 30px
}

.we-deliver ul li {
    padding: 0 15px
}

.we-deliver {
    padding: 0 20px 20px 20px
}

.modal-header {
    width: 100%;
    display: inline-block;
    position: relative;
    padding-top: 35px;
}

.formflag {
    display: none;
}

.btn-close {
    position: absolute;
    right: 22px;
    top: 35px;
    opacity: 1
}

.modal-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600
}

footer {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 16px 0 0 0;
    width: 100%;
    display: inline-block
}

footer p {
    color: #fff;
    font-size: 14px
}

.fix-mobile-strip {
    display: none
}

a.whatsapp_float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1;
    text-decoration: none;
    background-image: url(../images/home/whatsapp_icon.png);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-size: cover;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.menu ul li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 25px;
}

.rera-strip {
    color: #fff;
    padding: 5px 10px;
}

.swiper-cnt {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.project-configurations {
    text-shadow: 0px 1px 2px #000;
}

.project-configurations h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.project-configurations p {
    font-size: 16px;
    color: #fff;
    margin: 0 0 5px 0;
}

.banner-configurations-site-visit {
    display: flex;
    align-items: center;
}

.banner-configurations {
    display: flex;
}

.configuration-item {
    padding-right: 20px;
    position: relative;
}

.project-configurations h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.project-configurations p {
    font-size: 16px;
    color: #fff;
    margin: 0 0 5px 0;
}

.configurations-size::after {
    content: "";
    background-color: #fff;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 10px;
    bottom: 0;
}

.project-site-visit {
    display: flex;
    align-items: center;
}

.project-site-visit .btn {
    background-color: #000;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 4px;
}

.home-section {
    position: relative;
    padding-top: 55px;
}

.form-section {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.form-section .container {
    display: flex;
    justify-content: flex-end;
    max-width: 1116px;
    padding: 0;
}

.input-group .countryCode {
    width: 40%;
}

.home-banner .swiper-pagination {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.home-banner .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 8px 0;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.home-banner .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #00c853;
}

.mobile-number {
    display: flex;
}

.logo {
    max-width: 150px;
}

.project-heading {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 40px;
}

.project_btn {
    color: #fff;
    background-color: #00c853;
    padding: 6px 10px;
    text-decoration: none;
    border-radius: 4px;
}

.get_in_touch {
    background: #f5f5f5;
    padding: 80px 0px 0px;
}

.fotter_connect {
    text-align: center;
}

.fotter_connect_links:last-child {
    margin-top: 50px;
}

footer ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

footer ul li {
    margin: 0 10px;
}

footer ul li a {
    color: #fff !important;
    text-decoration: none;
}

.menu .dropdown-menu {
    display: none;
}

.menu ul li.dropdown:hover .dropdown-menu {
    display: block;
}

.menu ul li span {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 25px;
    cursor: pointer;
}

.menu ul li.dropdown .dropdown-menu li a {
    padding: 5px 15px;
    display: block;
    font-size: 13px;
}

.menu ul li.dropdown .project-menu {
    min-width: 300px;
}

.menu ul li.dropdown .project-menu li {
    width: 50%;
    float: left;
}

.menu-tab {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.menu-tab li {
    margin: 0 10px;
}

.menu-tab li a {
    background-color: #1a73e8;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 4px;
}

.enquire-btn-mobile {
    margin: 0 0 0 15px;
}

.swiper-bg .mobile-banner {
    display: none;
}

.ready-to-move {
    background-color: green;
}

.new-launch {
    background-color: #1a73e8;
}

.portfolio-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    text-align: center;
    visibility: hidden;
    transition: all 0.5s;
    transform: scale(0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-overlay::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    left: 10%;
    top: 10%;
    transition: 50ms height ease 150ms;
    z-index: 3;
}

.portfolio-overlay a {
    position: relative;
    z-index: 4;
}

.portfolio-overlay .magnify-icon {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #0f0f1b;
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.25s;
}

.portfolio-overlay .magnify-icon span i {
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
    position: relative;
    top: 0;
}

.portfolio-overlay::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    right: 10%;
    bottom: 10%;
    transition: 100ms width ease 200ms;
    z-index: 3;
}

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

.home-banner {
    padding: 70px 0 0px 0;
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1399px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
    .project-content p {
        font-size: 12px;
    }
    .project-content p img {
        width: 16px;
    }
    .project_status {
        font-size: 13px;
    }
    .common-btn .btn {
        font-size: 14px;
    }
}

@media only screen and (max-width:1399px) {}

@media only screen and (max-width:1199px) {
    .menu ul li a {
        font-size: 14px;
        padding: 10px 10px;
    }
    .menu ul li {
        margin: 0 8px;
    }
    .project-cnt-item p {
        font-size: 14px
    }
    .common-btn .btn {
        font-size: 14px
    }
    .form-section .container {
        max-width: 936px;
    }
    .project-section {
        padding: 65px 0 0 0;
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 991px) {
    .container {
        max-width: 768px;
    }
    .project-content {
        padding: 10px;
    }
    .project-content p {
        font-size: 12px;
    }
    .common-btn .btn {
        font-size: 13px;
    }
    .project_status {
        font-size: 13px;
    }
}

@media only screen and (max-width:991px) {
    .fix-mobile-strip {
        display: block;
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        z-index: 9
    }
    .fix-mobile-strip ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0
    }
    .fix-mobile-strip ul li {
        width: 50%;
        text-align: center
    }
    .fix-mobile-strip ul li a {
        padding: 10px;
        display: block;
        text-decoration: none;
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 600;
        background-color: #000
    }
    a.whatsapp_float {
        width: 46px;
        height: 44px;
        left: 50%;
        bottom: 0;
        z-index: 9999;
        transform: translateX(-50%);
        background-size: cover
    }
    footer {
        padding: 16px 0 44px 0
    }
    .project-image img {
        width: 100%
    }
    .project-content h2 {
        font-size: 18px
    }
    .project-cnt-item p {
        font-size: 18px
    }
    .common-btn .btn {
        font-size: 15px;
    }
    .mobile-number {
        order: 1;
        display: none;
    }
    .menu {
        order: 2;
        position: relative;
    }
    .button_container {
        position: absolute;
        top: 50%;
        right: 0;
        height: 29px;
        width: 35px;
        cursor: pointer;
        z-index: 100;
        transition: opacity 0.25s ease;
        transform: translateY(-50%);
    }
    .button_container:hover {
        opacity: 0.7;
    }
    .button_container.active .top {
        transform: translateY(11px) translateX(0) rotate(45deg);
        background: #fff;
    }
    .button_container.active .middle {
        opacity: 0;
        background: #fff;
    }
    .button_container.active .bottom {
        transform: translateY(-11px) translateX(0) rotate(-45deg);
        background: #fff;
    }
    .button_container span {
        background: #1a73e8;
        border: none;
        height: 5px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.35s ease;
        cursor: pointer;
    }
    .button_container span:nth-of-type(2) {
        top: 11px;
    }
    .button_container span:nth-of-type(3) {
        top: 22px;
    }
    .overlay {
        position: fixed;
        background: #1a73e8;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s, visibility 0.35s, height 0.35s;
        overflow: hidden;
        z-index: 9;
    }
    .overlay.open {
        opacity: 0.9;
        visibility: visible;
        height: 100%;
    }
    .overlay.open li {
        -webkit-animation: fadeInRight 0.5s ease forwards;
        animation: fadeInRight 0.5s ease forwards;
        -webkit-animation-delay: 0.35s;
        animation-delay: 0.35s;
    }
    .overlay.open li:nth-of-type(2) {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }
    .overlay.open li:nth-of-type(3) {
        -webkit-animation-delay: 0.45s;
        animation-delay: 0.45s;
    }
    .overlay nav {
        position: relative;
        height: 70%;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
    }
    .overlay ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        height: 100%;
    }
    .overlay ul li {
        display: block;
        position: relative;
        opacity: 0;
        margin: 0;
    }
    .overlay ul li a,
    .overlay ul li span {
        display: inline-block;
        position: relative;
        color: #fff;
        text-decoration: none;
        overflow: hidden;
        font-size: 20px;
    }
    .menu ul li.dropdown .dropdown-menu li a {
        color: #000;
        display: inline-block;
        font-size: 16px;
    }
    @-webkit-keyframes fadeInRight {
        0% {
            opacity: 0;
            left: 20%;
        }
        100% {
            opacity: 1;
            left: 0;
        }
    }
    @keyframes fadeInRight {
        0% {
            opacity: 0;
            left: 20%;
        }
        100% {
            opacity: 1;
            left: 0;
        }
    }
    .form-section .container {
        max-width: 696px;
    }
    .project-heading {
        font-size: 35px;
    }
    .menu ul li.dropdown .project-menu li {
        width: 100%;
        float: none;
    }
}

@media only screen and (max-width:767px) {
    .mobile-number a {
        font-size: 20px;
    }
    .overlay ul li a {
        font-size: 30px;
    }
    .form-section {
        position: static;
        transform: translate(0);
        margin: 20px 0 15px 0;
        display: none;
    }
    .mobile-number span {
        display: none;
    }
    .home-section {
        padding-top: 58px;
    }
    .mobile-number a {
        font-size: 14px;
        margin: 0;
    }
    .project-heading {
        font-size: 30px;
    }
    .get_in_touch {
        padding: 20px 0px 0px;
    }
    .project-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .swiper-cnt {
        bottom: 10px;
    }
    .banner-configurations {
        display: none;
    }
    .form-section .container {
        justify-content: center;
    }
}

@media only screen and (max-width:575px) {
    a.whatsapp_float {
        height: 41px
    }
    .fix-mobile-strip ul li a {
        font-size: 14px
    }
    footer {
        padding: 16px 0 41px 0
    }
    .we-deliver ul li {
        padding: 0 10px
    }
    .we-deliver {
        padding: 0 10px 15px 10px
    }
    .we-deliver ul li span {
        font-size: 12px
    }
    .we-deliver ul li .fa {
        font-size: 20px;
        height: 25px
    }
    .submit-btn {
        font-size: 14px
    }
    .form-control {
        font-size: 14px
    }
    .countryCode {
        width: 40%
    }
    .pop-call a {
        font-size: 16px
    }
    .modal-title {
        font-size: 20px
    }
    .project-content h2 {
        font-size: 16px
    }
    .project-cnt-item p {
        font-size: 16px
    }
    .common-btn .btn {
        font-size: 14px
    }
    .mobile-number a span {
        display: none
    }
    .mobile-number a {
        padding: 5px
    }
    .project-item {
        margin: 0 0 20px 0;
    }
    footer p {
        font-size: 13px;
        text-align: justify
    }
    .overlay ul li a {
        font-size: 20px;
    }
    .project-configurations h2 {
        font-size: 22px;
    }
    .project-configurations p {
        font-size: 14px;
    }
    .project-site-visit .btn {
        font-size: 12px;
    }
    .home-banner {
        position: relative;
    }
    .swiper-bg .desktop-banner {
        display: none;
    }
    .swiper-bg .mobile-banner {
        display: block;
    }
    .project_status {
        font-size: 11px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 350px) {
    .common-btn .btn {
        font-size: 14px;
    }
    .project-content .row .col-6 {
        width: 100%;
    }
}

@media only screen and (min-width: 351px) and (max-width: 400px) {
    .project-content p {
        font-size: 11px;
    }
    .project-content p img {
        width: 15px;
    }
}

@media only screen and (min-width: 401px) and (max-width: 575px) {
    .project-content p {
        font-size: 13px;
    }
    .project-content p img {
        width: 15px;
    }
}