body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Segoe UI", sans-serif;
}
:focus,
:active {
  box-shadow: none !important;
}
/*==========================MENU BAR=====================*/
.main-navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 8px 0;
  z-index: 1001;
}

.main-navbar .nav-link.link-effect {
  position: relative;
  padding: 10px 10px;
  overflow: hidden;
  display: inline-block;
  border-radius: 30px;
  font-size:15px;
  transition: all 0.4s ease;
}

.main-navbar .nav-link.link-effect span {
  position: relative;
  z-index: 2;
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-navbar .nav-link.link-effect::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(6, 144, 236, 0.1);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 1;
}

.main-navbar .nav-link.link-effect:hover span {
  color: #0690ec !important;
}

.main-navbar .nav-link.link-effect:hover::before {
  width: 100%;
  height: 100%;
  background: rgba(6, 144, 236, 0.15);
}

.main-navbar .nav-link.link-effect.active::before {
  width: 100%;
  height: 100%;
  background: rgba(6, 144, 236, 0.2);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.dropdown-menu .dropdown-item {
  position: relative;
  padding: 10px 20px;
  color: #333;
  font-weight: 500;
  transition: all 0.4s ease;
  z-index: 1;
}

.dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #0690ec 0%, #04c48d 100%);
  transform-origin: left;
  transform: skewX(-15deg);
  transition: width 0.4s ease;
  z-index: -1;
  opacity: 0;
}

.dropdown-menu .dropdown-item:hover {
  color: white !important;
  padding-left: 25px;
}

.dropdown-menu .dropdown-item:hover::before {
  width: 120%;
  opacity: 1;
}

.navbar-toggler {
  background-color: #0690ec;
  color: #ffffff !important;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background-color: #0578c4;
  transform: scale(1.05);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 8px;
  }

  .nav-link.link-effect {
    margin: 4px 0;
    border-radius: 8px !important;
  }
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.3s ease;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-buttons {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.login-btn {
  position: relative;
    padding: 3px 4px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
}

.binary-login {
  background: linear-gradient(135deg, #0690ec 0%, #04c48d 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(6, 144, 236, 0.25);
}

.plot-login {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa502 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.login-btn:active {
  transform: translateY(0);
}

.login-btn::after {
  content: "▼";
  font-size: 10px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.login-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 120px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.login-btn:hover .login-dropdown,
.login-btn:focus-within .login-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-item {
  padding: 10px 20px;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
  display: block;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #0690ec 0%, #04c48d 100%);
  color: #ffffff;
  padding-left: 24px;
}

.dropdown-divider {
  height: 1px;
  background: linear-gradient(135deg, #0690ec 0%, #04c48d 100%);
  margin: 8px 0;
}

@media (max-width: 991.98px) {
  .login-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
  }

  .login-btn {
    width: 100%;
    justify-content: space-between;
  }

  .login-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(255, 255, 255, 0.8);
  }

  .login-btn:hover .login-dropdown,
  .login-btn:focus-within .login-dropdown {
    display: block;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-dropdown {
  animation: fadeIn 0.3s ease forwards;
}
/*=====iPad Responsive Fixes==*/
@media (min-width: 768px) and (max-width: 1199px) {
  /* Main Navbar Structure Fix */
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .main-navbar .nav-link.link-effect {
    padding: 8px 12px;
    margin: 0 3px;
    font-size: 14px;
    border-radius: 20px !important;
  }

  /* Logo Sizing */
  .navbar-brand img {
    max-height: 32px;
  }

  /* Dropdown Menu Fixes */
  .dropdown-menu {
    position: absolute;
    min-width: 200px;
    margin-top: 5px !important;
  }

  .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
  }

  .login-buttons {
    margin-left: auto;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
  }

  .login-btn {
    min-width: 120px;
    padding: 8px 16px;
    font-size: 14px;
  }

  @media (width: 1024px) and (height: 1366px) {
    .main-navbar .nav-link.link-effect {
      padding: 10px 14px;
      margin: 0 5px;
    }

    .login-buttons {
      gap: 12px;
    }
  }

  /* Landscape Mode Fixes */
  @media (orientation: landscape) {
    .main-navbar {
      padding: 5px 0;
    }

    .main-navbar .nav-link.link-effect {
      padding: 6px 10px;
    }

    .login-btn {
      padding: 6px 12px;
    }
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar-expand-lg > .container {
    flex-wrap: wrap;
  }

  .navbar-collapse {
    order: 2;
    width: 100%;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 10px;
  }
}

@media (pointer: coarse) {
  .nav-link.link-effect {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .dropdown-toggle::after {
    margin-left: 8px;
  }

  .login-btn {
    padding: 12px 20px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body:before {
    content: "iPad View: " attr(class);
    position: fixed;
    top: 0;
    left: 0;
    background: red;
    color: white;
    padding: 5px;
    z-index: 9999;
  }
}
/*=========================CROUSEL STYLING=====================*/
/* Carousel Container */
.carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Carousel Slides */
.carousel-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 550px;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide Content */
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: white;
  padding: 40px;
  text-align: center;
}

.slide-content h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(6, 144, 236, 0.7);
  border: 2px solid white;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(115, 238, 104, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Dots Navigation */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(174, 227, 169, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: #0690ec;
  border-color: white;
  transform: scale(1.2);
}

.dot:hover:not(.active) {
  background: rgba(115, 238, 104, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
  .carousel-slides {
    height: 400px;
  }

  .slide-content {
    padding: 30px;
  }

  .slide-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .carousel-slides {
    height: 350px;
  }

  .slide-content {
    padding: 20px;
  }

  .slide-content h3 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 1rem;
    display: none;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .carousel-slides {
    height: 300px;
  }

  .slide-content {
    padding: 15px;
  }

  .slide-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.carousel-slide {
  animation: fadeIn 0.8s ease;
}

/*=====================ABOUT SECTION STYLING====================*/
.about-propmart {
  padding: 100px 0;
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
}

.about-img-group {
  position: relative;
}

.main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.experience-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  padding: 25px 30px;
  border-radius: 10px;
  text-align: center;
  z-index: 2;
}
.about-paragraph {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  font-family: "Lora", serif;
  font-size: 1.05rem;
}
.experience-box h3 {
  font-size: 42px;
  line-height: 1;
}

.experience-box p {
  font-size: 18px;
  font-weight: 500;
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-primary-light {
  background-color: rgba(6, 144, 236, 0.1);
}

.features h5 {
  font-size: 20px;
}

.stats-row {
  background: white;
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.stats-row h3 {
  margin-bottom: 10px;
}

.stats-row p {
  color: #6c757d;
  font-weight: 500;
}

.bg-primary {
  background-color: #0690ec !important;
}

.text-primary {
  color: #0690ec !important;
}

.btn-primary {
  background-color: #0690ec;
  border-color: #0690ec;
}

.btn-outline-primary {
  color: #0690ec;
  border-color: #0690ec;
}

.btn-outline-primary:hover {
  background-color: #0690ec;
  color: white;
}

@media (max-width: 1199.98px) {
  .about-propmart {
    padding: 80px 0;
  }

  .main-img {
    height: 450px;
  }
}

@media (max-width: 991.98px) {
  .about-propmart {
    padding: 60px 0;
  }

  .main-img {
    height: 400px;
  }

  .experience-box {
    right: 0;
    bottom: -20px;
    padding: 20px 25px;
  }

  .stats-row {
    margin-top: 60px;
    padding: 40px 20px;
  }
}

@media (max-width: 767.98px) {
  .about-propmart {
    padding: 50px 0;
  }

  .main-img {
    height: 350px;
  }

  .experience-box {
    padding: 15px 20px;
  }

  .experience-box h3 {
    font-size: 36px;
  }

  .stats-row {
    margin-top: 50px;
    padding: 30px 15px;
  }

  .stats-row h3 {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {
  .main-img {
    height: 300px;
  }

  .experience-box {
    bottom: -15px;
    right: 15px;
    padding: 12px 15px;
  }

  .experience-box h3 {
    font-size: 30px;
  }

  .experience-box p {
    font-size: 16px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
  }

  .stats-row {
    margin-top: 40px;
  }

  .stats-row h3 {
    font-size: 28px;
  }
}
/*=====================OUR SITE STYLING=====================*/

.property-gallery {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.2rem;
  color: #6c757d;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.property-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.property-card:hover {
  transform: translateY(-10px);
}

.property-image {
  position: relative;
  height: 350px;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(6, 144, 236, 0.8) 0%,
    transparent 100%
  );
  padding: 30px;
  color: white;
}

.property-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.view-btn {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 20px;
  background-color: #7add35;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background-color: #0690ec;
  color: white;
  transform: translateX(5px);
}

.view-btn i {
  margin-left: 5px;
}
.gallery-slider {
  margin-top: 40px;
}

/* --- Carousel Navigation Arrows: Circle Style Bottom --- */
.gallery-slider {
  position: relative;
  padding-bottom: 60px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #0690ec;
  border-radius: 50%;
  color: #fff;
  bottom: 5px;
  top: auto;
  transform: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #7add35;
  box-shadow: 0 0 10px rgba(130, 237, 76, 0.6);
}

@media (min-width: 768px) {
  .swiper-button-next {
    right: 42%;
  }
  .swiper-button-prev {
    left: 42%;
  }
}

@media (max-width: 767px) {
  .swiper-button-next {
    right: 95px;
  }
  .swiper-button-prev {
    left: 95px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-pagination-bullets {
  bottom: 0px;
}

.swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
  margin: 0 4px;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: #0690ec;
  transform: scale(1.2);
  box-shadow: 0 0 6px #0690ec;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .property-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .property-gallery {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .property-overlay h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .property-image {
    height: 250px;
  }
}

/*===================OUR PROJECT STYLING===================*/
.project-location-section {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
}
.project-card {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ribbon {
  /*position: absolute;
  top: 15px;
  left: -10px;*/
  background: #28a745;
  color: white;
  padding: 6px 20px;
  font-weight: bold;
  font-size: 14px;
 /* transform: rotate(-45deg);*/
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*======================NEWS ENQIRY FORM STYLING=================*/
.news-box {
  border: none;
  transition: all 0.3s ease;
}

.news-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-container {
  scrollbar-width: thin;
  scrollbar-color: #0077cc #f1f1f1;
}

.news-container::-webkit-scrollbar {
  width: 6px;
}

.news-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.news-container::-webkit-scrollbar-thumb {
  background-color: #0077cc;
  border-radius: 10px;
}

.news-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.news-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card:hover .news-hover-effect {
  opacity: 1;
}

.date-badge {
  min-width: 50px;
}

.news-watermark {
  position: absolute;
  bottom: -30px;
  right: -30px;
  font-size: 120px;
  color: rgba(0, 119, 204, 0.05);
  z-index: 0;
}

.enquiry-form {
  transition: all 0.3s ease;
}

.enquiry-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.form-watermark {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 12px 15px;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  background-color: white;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
}

.enquiry-form label {
  color: #666;
}

.enquiry-form button {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.enquiry-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #0077cc, #00bfa5);
  transition: width 0.3s ease;
  z-index: -1;
}

.enquiry-form button:hover {
  color: white !important;
}

.enquiry-form button:hover::before {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-container {
    height: 250px !important;
  }

  .news-watermark,
  .form-watermark {
    font-size: 80px;
    bottom: -20px;
    right: -20px;
  }
}
.news-marquee-container {
  position: relative;
  padding-bottom: 40px;
}

.news-marquee {
  width: 100% !important;
  padding: 10px;
}

.hover-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 119, 204, 0.8);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.news-marquee-container:hover .hover-indicator {
  opacity: 1;
  bottom: 20px;
}

.news-card {
  background: white;
  border-left: 4px solid #0077cc;
  border-radius: 0 8px 8px 0;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.date-badge {
  background: #0077cc;
  color: white;
  border-radius: 5px;
  padding: 8px;
  min-width: 50px;
  text-align: center;
  margin-right: 15px;
}

/*===================ALL SECTION HEADING STYLING=====================*/
.animated-heading {
  position: relative;
  text-align: center;
  width: 100%;
}

.heading-text {
  font-weight: 700;
  background: linear-gradient(90deg, #0690ec, #7add35);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  margin: 0;
  line-height: 1.2;
  animation: colorWave 8s ease-in-out infinite;
}

.heading-text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -10px;
  left: 0;
  background: linear-gradient(90deg, #0690ec, #7add35);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  animation: underlineGrow 3s ease-in-out infinite;
}

.subheading {
  color: #555;
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-top: 20px;
  font-weight: 400;
  opacity: 0;
  animation: fadeIn 2s ease-in-out 0.5s forwards;
}

@keyframes colorWave {
  0%,
  100% {
    background: linear-gradient(90deg, #0690ec, #7add35);
    -webkit-background-clip: text;
    background-clip: text;
  }
  50% {
    background: linear-gradient(90deg, #7add35, #0690ec);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

@keyframes underlineGrow {
  0% {
    transform: scaleX(0);
    transform-origin: right;
  }
  50% {
    transform: scaleX(1);
    transform-origin: right;
  }
  51% {
    transform-origin: left;
  }
  100% {
    transform: scaleX(0);
    transform-origin: left;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==========================FOOTER STYLING===================*/
/* Real Estate Footer Styles */
.propmart-footer {
  background: linear-gradient(135deg, #0a2463 0%, #3a0ca3 100%);
  color: #fff;
  padding: 50px 0 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

/* Columns */
.footer-col {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

/* Logo & About Section */
.footer-about .footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #7add35;
  transform: translateY(-3px);
}

/* Titles */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #7add35;
}

/* Links */
.footer-links li {
  margin-bottom: 5px;
  list-style: none;
}

.footer-links a {
  color: #eee;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: #7add35;
  padding-left: 5px;
}
/* Contact Section Styling */
.footer-contact {
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 20px;
  list-style: none;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact i {
  color: #7add35;
  font-size: 18px;
  min-width: 20px;
  padding-top: 3px;
}

.footer-contact span {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  color: #eee;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-item {
    gap: 10px;
  }

  .footer-contact i {
    font-size: 16px;
  }
}
.footer-contact li i {
  color: #7add35;
  font-size: 16px;
  margin-bottom: 15px;
  width: 30px;
  height: 30px;
  background: rgba(122, 221, 53, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effects */
.footer-contact li:hover i {
  color: white;
  background: #7add35;
  transform: rotateY(360deg);
  box-shadow: 0 0 15px rgba(122, 221, 53, 0.5);
}

/* Pulse Animation */
.footer-contact li i::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(122, 221, 53, 0.2);
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0;
}

.footer-contact li:hover i::after {
  animation: none;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

.footer-contact li:nth-child(1):hover i {
  /* Map Marker */
  animation: bounce 0.8s;
}

.footer-contact li:nth-child(2):hover i {
  /* Phone */
  animation: shake 0.5s;
}

.footer-contact li:nth-child(3):hover i {
  /* Email */
  animation: float 1s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Newsletter */
.footer-newsletter input {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-newsletter button {
  background: #7add35;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-newsletter button:hover {
  background: #0690ec;
}

.footer-note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  margin-left: 90px;
  margin-right: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 15px;
}

.footer-legal a {
  color: #eee;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-legal a:hover {
  color: #7add35;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-col {
    min-width: 45%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-col {
    min-width: 100%;
  }
}

/*=================OTHER PAGE STYLING======================*/
.inner-cover {
  background: url("../image/about-img/ab6.jpg") no-repeat center center/cover;
  min-height: 400px;
  position: relative;
}

.inner-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.inner-cover .container {
  position: relative;
  z-index: 2;
}

.text-shadow {
  text-shadow: 2px 2px 5px rgba(140, 238, 133, 0.8);
}

.home-btn {
  background: transparent;
  border: none;
  color: white;
  font-weight: 600;
  padding: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.home-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #7add35;
  transition: width 0.4s ease;
}

.home-btn:hover {
  color: #7add35;
}

.home-btn:hover::after {
  width: 100%;
}

.home-btn span {
  display: inline-block;
  transition: letter-spacing 0.3s ease;
}

.home-btn:hover span {
  letter-spacing: 1.5px;
}

.home-btn:hover {
  text-shadow: 0 0 10px rgba(122, 221, 53, 0.4);
}
@media (max-width: 768px) {
  .inner-cover {
    min-height: 300px;
  }

  @media (max-width: 576px) {
    .inner-cover {
      min-height: 250px;
    }
  }

  /* For extremely small devices (optional) */
  @media (max-width: 400px) {
    .inner-cover {
      min-height: 200px;
    }
  }
}

/*================COMPANY INFORMATION PAGE STYLING===================*/
.shadow-3d {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
}
.about-paragraph {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
  font-family: "Lora", serif;
  font-size: 1.05rem;
}
.hover-zoom {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper:hover .hover-zoom {
  transform: scale(1.05);
}

.bg-gradient-dark {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 100%
  );
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0690ec 0%, #7add35 100%);
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background-color: #f8f9fa;
}

.certificate-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.certificate-card:hover {
  transform: translateY(-8px);
}

.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
  opacity: 1;
}

.btn-icon {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ps-lg-5 {
    padding-left: 0 !important;
  }

  .experience-badge {
    padding: 15px !important;
  }
}

@media (max-width: 768px) {
  .display-5 {
    font-size: 2.2rem;
  }

  .feature-item {
    padding: 15px !important;
  }

  .certificate-card {
    margin-bottom: 20px;
  }
}

/*====================MISSION VISSION PAGE STLING===================*/
.mission-vision {
  background-color: #f8f9fa;
}

.mission-card,
.vision-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
.vision-card .bg-dark {
  background-color: #0f5eb7 !important;
}

.bullet-point {
  width: 12px;
  height: 12px;
  margin-top: 6px;
}
.vision-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  font-family: "Lora", serif;
  font-size: 1.05rem;
}
.mission-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  font-family: "Lora", serif;
  font-size: 1.05rem;
}
.blur-3 {
  filter: blur(30px);
}

/* Projects Section Styles */
.project-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.project-image {
  height: 220px;
}

.project-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.project-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-weight: 600;
}

.btn-arrow {
  transition: all 0.3s ease;
}

.btn-arrow:hover {
  padding-right: 1rem !important;
  padding-left: 1.5rem !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .mission-content p,
  .vision-content p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .display-5,
  .display-4 {
    font-size: 2.2rem;
  }

  .project-image {
    height: 180px;
  }

  .card-body {
    padding: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .icon-box {
    width: 50px !important;
    height: 50px !important;
  }

  .card-header {
    padding: 1.5rem !important;
  }
}

/*====================MESSAGE PAGE STYLING=====================*/
/* Message Section Styles */
.message-section {
  background-color: #f8f9fa;
}

.message-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.message-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.message-quote {
  position: relative;
  transition: all 0.3s ease;
}

.message-quote:hover {
  background-color: rgba(6, 144, 236, 0.1) !important;
}

.stat-card {
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  background-color: rgba(6, 144, 236, 0.05);
  transform: translateY(-3px);
}

.nature-quote {
  transition: all 0.3s ease;
}

.nature-quote:hover {
  background-color: rgba(122, 221, 53, 0.05);
}

.signature-img {
  opacity: 0.9;
  transition: all 0.3s ease;
}

.signature-img:hover {
  opacity: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.blur-3 {
  filter: blur(30px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .message-card {
    padding: 2.5rem !important;
  }

  .display-5 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .message-card {
    padding: 2rem !important;
  }

  .message-signature {
    text-align: center !important;
    margin-top: 3rem !important;
  }

  .stat-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .display-5 {
    font-size: 2rem;
  }

  .fs-5 {
    font-size: 1rem !important;
  }

  .message-quote {
    padding: 1.5rem !important;
  }
}

/*======================PHOTO GALLERY PAGE STYLING======================*/
.gallery-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.section-header {
  position: relative;
  margin-bottom: 50px;
}

.section-header h1 {
  font-weight: 700;
  color: #2c3e50;
}

.section-header::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 80px;
  height: 4px;
  background: #0690ec;
}

.nav-pills .nav-link {
  color: #495057;
  font-weight: 500;
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
  background: #0690ec;
  color: white;
}

.gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-caption {
  padding: 20px;
  background: white;
}

.gallery-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #2c3e50;
}

.gallery-caption p {
  color: #7f8c8d;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-section {
    padding: 50px 0;
  }

  .nav-pills .nav-link {
    margin: 5px;
    padding: 6px 15px;
    font-size: 0.9rem;
  }

  .gallery-img {
    height: 200px;
  }
}

/*============================OUR PROJECT/MUNGARI PAGE STYLING======================*/
:root {
  --primary: #0690ec;
  --secondary: #7add35;
  --dark: #2c3e50;
  --light: #f8f9fa;
}
.location-section {
  padding: 80px 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.bg-shape-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(6, 144, 236, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.bg-shape-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(122, 221, 53, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.location-header {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
  z-index: 1;
}

.location-header h1 {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
  text-transform: uppercase !important;
  position: relative;
  display: inline-block;
}

.location-header h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.location-header p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.coming-soon-card {
  background-color: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.coming-soon-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon-card h2 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.coming-soon-card p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.quick-links-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.quick-links-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
}

.quick-links-card h3 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.quick-links-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.quick-link-item {
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.quick-link-item a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: rgba(122, 221, 53, 0.05);
  font-weight: 500;
}

.quick-link-item a:hover {
  background: linear-gradient(
    90deg,
    rgba(6, 144, 236, 0.1),
    rgba(122, 221, 53, 0.1)
  );
  color: var(--primary);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quick-link-item a i {
  margin-right: 12px;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.quick-link-item a:hover i {
  color: var(--primary);
  transform: scale(1.2);
}

.location-map {
  height: 400px;
  width: 1300px;
  background-color: #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  color: #6c757d;
  font-weight: 500;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .coming-soon-card {
    padding: 40px;
  }

  .quick-links-card {
    margin-top: 30px;
  }
  .location-map {
    height: 400px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .location-map {
    height: 350px;
    width: 100%;
    margin: 25px auto; /* Adjust margin */
  }
}
@media (max-width: 768px) {
  .location-section {
    padding: 60px 0;
  }

  .coming-soon-card {
    padding: 30px 20px;
  }

  .location-header h1 {
    font-size: 2.2rem;
  }

  .location-map {
    height: 300px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .location-header h1 {
    font-size: 1.8rem;
  }
  .location-map {
    height: 200px;
    width: 100%;
  }

  .location-header p {
    font-size: 1rem;
  }

  .coming-soon-icon {
    font-size: 2.5rem;
  }

  .coming-soon-card h2 {
    font-size: 1.5rem;
  }
}

/*=======================PLOT AVAILABILITY PAGE STYLING============================*/

.availability-section {
  background-color: white;
}

/* Plot Cards */
.plot-card {
  transition: all 0.3s ease;
  border-radius: 12px;
}

.plot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.plot-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.plot-card:hover .card-img-top {
  transform: scale(1.03);
}

.badge {
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
}

/* Pagination */
.pagination .page-item .page-link {
  border-radius: 8px;
  margin: 0 5px;
  border: none;
  color: #495057;
}

.pagination .page-item.active .page-link {
  background-color: #0d6efd;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .plot-card .card-img-top {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .plot-card .card-img-top {
    height: 180px;
  }

  .availability-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .plot-card .card-img-top {
    height: 160px;
  }

  .plot-card .card-body {
    padding: 1.25rem;
  }
}
/*=====================CARRER PAGE STYLING ======================*/
.bg-shape {
    position: absolute;
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    top: 5%;
    left: 5%;
    opacity: 0.15;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #0a7e36 0%, #0cc75c 100%);
    clip-path: circle(40% at 50% 50%);
    bottom: -10%;
    right: -5%;
    opacity: 0.1;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    bottom: 10%;
    left: -5%;
    opacity: 0.1;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #0a7e36 0%, #0cc75c 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    top: 15%;
    right: 10%;
    opacity: 0.15;
}

.download-container {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 82, 164, 0.15);
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.download-header {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a7e36 0%, #0cc75c 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    opacity: 0.2;
    z-index: -1;
}

.download-header h2 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 600;
}

.download-header p {
    opacity: 0.9;
    font-size: 16px;
}

.download-table {
    width: 100%;
    border-collapse: collapse;
}

.download-table thead {
    background: linear-gradient(135deg, #0a7e36 0%, #0cc75c 100%);
    color: white;
}

.download-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
}

.download-table th:nth-child(1) {
    width: 15%;
    text-align: center;
}

.download-table th:nth-child(2) {
    width: 55%;
}

.download-table th:nth-child(3) {
    width: 30%;
    text-align: center;
}

.download-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 16px;
    color: #444;
}

.download-table tr:nth-child(even) {
    background-color: #f8fdff;
}

.download-table tr:hover {
    background-color: #f0f9ff;
}

.download-table td:nth-child(1) {
    text-align: center;
    font-weight: 500;
    color: #0072cc;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 114, 255, 0.2);
    border: none;
    cursor: pointer;
    width: 100%;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 114, 255, 0.3);
    background: linear-gradient(135deg, #0062d9 0%, #00b0e6 100%);
}

.download-btn i {
    margin-right: 8px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .download-table thead {
        display: none;
    }
    
    .download-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 10px;
    }
    
    .download-table td {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 10px;
        border-bottom: none;
    }
    
    .download-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        color: #0072cc;
    }
    
    .download-table td:nth-child(1) {
        background-color: #f0f9ff;
        border-radius: 6px 6px 0 0;
        margin: -10px -10px 10px -10px;
        padding: 12px;
        font-size: 18px;
        font-weight: 600;
    }
    
    .download-btn {
        width: 90%;
        margin: 0 auto;
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4 {
        transform: scale(0.7);
    }
}

@media (max-width: 480px) {
    .download-header h2 {
        font-size: 24px;
    }
    
    .download-header p {
        font-size: 14px;
    }
    
    .download-table td {
        font-size: 14px;
    }
    
    .download-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4 {
        transform: scale(0.5);
    }
}
/*=========================CONTACT US PAGE STYLISNG===========================*/
.contact-prestige-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-prestige-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: #7add35;
}

.luxury-contact-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 80px 20px;
  background: radial-gradient(circle at center, #f8f9fa 0%, #eef2f6 100%);
}

.luxury-card-glass {
  width: 320px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.luxury-card-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0690ec, #7add35);
}

.luxury-card-glass:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.luxury-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #0690ec, #7add35);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(6, 144, 236, 0.3);
}

.luxury-card-glass h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.luxury-card-glass p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.luxury-contact-hover {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.luxury-card-glass:hover .luxury-contact-hover {
  height: 45px;
}

.luxury-contact-hover a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  background: linear-gradient(135deg, #0690ec, #7add35);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.luxury-contact-hover a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 144, 236, 0.3);
}
/* Add this to your existing luxury card CSS */
.luxury-icon-circle {
  /* Previous styles */
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.luxury-card-glass:hover .luxury-icon-circle {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(6, 144, 236, 0.4);
}
.luxury-card-glass:nth-child(1):hover .luxury-icon-circle {
  transform: rotate(15deg) scale(1.1);
}

.luxury-card-glass:nth-child(2):hover .luxury-icon-circle {
  transform: rotate(-15deg) scale(1.1);
}

.luxury-card-glass:nth-child(3):hover .luxury-icon-circle {
  transform: rotate(10deg) scale(1.1);
}
.map-box {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-box:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.map-container {
  border: 1px solid #e9ecef;
}

.map-iframe {
  min-height: 350px;
}

.map-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: none;
}

.map-watermark {
  bottom: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.03;
  z-index: 0;
}

.location-details {
  max-width: 70%;
}
@media (max-width: 1200px) {
  .luxury-contact-section {
    gap: 20px;
    padding: 60px 15px;
  }

  .luxury-card-glass {
    width: 280px;
    padding: 35px;
  }
}

@media (max-width: 992px) {
  .prestige-main-title {
    font-size: 2.2rem;
  }

  .prestige-subtitle {
    font-size: 1rem;
  }

  .luxury-contact-section {
    flex-wrap: wrap;
    justify-content: center;
  }

  .luxury-card-glass {
    width: 80%;
    margin-bottom: 30px;
  }

  .location-details {
    max-width: 90%;
  }

  .map-iframe {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-prestige-header {
    padding: 70px 0 60px;
  }

  .prestige-main-title {
    font-size: 1.9rem;
  }

  .prestige-subtitle {
    font-size: 0.95rem;
  }

  .luxury-icon-circle {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }

  .luxury-card-glass {
    width: 90%;
    padding: 30px;
  }

  .luxury-contact-hover a {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  .map-iframe {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .contact-prestige-header {
    padding: 50px 0 40px;
  }

  .prestige-main-title {
    font-size: 1.6rem;
  }

  .prestige-divider-line {
    width: 60px;
  }

  .prestige-subtitle {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .luxury-card-glass {
    padding: 25px;
  }

  .luxury-icon-circle {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .luxury-contact-hover {
    height: auto;
  }

  .luxury-contact-hover a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .map-iframe {
    min-height: 250px;
  }

  .location-details {
    max-width: 100%;
  }
}
