/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Poppins", sans-serif; */
}
body {
  font-family: "Poppins", sans-serif !important;
}


/* HEADER STYLING */
.header {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  font-family: "Philosopher", sans-serif;
}

.header-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  height: 88px;
  
}

.logo {
  width: 120px;
}

.logo img {
  width: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  position: relative;
  margin: 0 15px;
}

.nav-menu li a {
  color: #000000 !important;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  padding: 10px 0;
  display: block;
  position: relative;
  letter-spacing: 1px;
  padding-left: 5px;
}

.nav-menu li a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: red;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
}

.nav-menu li a:hover {
  color: red;
}

.nav-menu li a:hover:after {
  width: 100%;
}

.nav-menu li a.active {
  color: red;
}

.nav-menu li a.active:after {
  width: 100%;
}
.has-submenu {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 0;
}

.has-submenu:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #0077b6;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Submenu inside submenu */
.has-submenu2 {
  position: relative;
}

.dropdown-content2 {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.has-submenu2:hover .dropdown-content2 {
  display: block;
}

.dropdown-content2 a {
  color: #0077b6;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content2 a:hover {
  background-color: #f1f1f1;
}

/************LAND OWNER SUBMENU******************/
.has-submenu3 {
  position: relative;
  color: #000;
}

.dropdown-content3 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 204px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 0;
}

.has-submenu3:hover .dropdown-content3 {
  display: block;
}

.dropdown-content3 a {
  color: #0077b6;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content3 a:hover {
  background-color: #f1f1f1;
}






.contact-icons {
  display: flex;
  align-items: center;
}

.contact-icons a {
  margin-left: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}

.contact-icons img {
  height: 46px;
  /* width: 60px; */
  object-fit: contain;
}

.whatsapp-icon {
  background-color: #25d366;
  color: white;
}

.phone-icon {
  background-color: #0a3d62;
  color: white;
}

.play-icon {
  background-color: transparent;
}

.hamburger {
  display: none;
  cursor: pointer;
  background-color: #000000;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.hamburger .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Menu Button from first code */
.menu-btn {
  background: black;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
  margin-left: 10px;
}

.menu-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: transform 0.3s ease-in-out;
}

.menu-btn:hover {
  background: darkgray;
  transform: scale(1.1);
}

/* Mega menu from first code */
.mega-menu-mega {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1010;
  color: white;
  padding: 50px;
  flex-direction: column;
  align-items: stretch;
}

.mega-menu-mega.active {
  display: flex;
}

.hidden {
  display: none !important;
}

.menu-container-mega {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 30px;
  position: relative;
}

.menu-sidebar-mega {
  width: 350px;
  padding: 30px;
}

.menu-header-mega {
  margin-bottom: 40px;
}

.menu-list-mega {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list-mega li {
  margin-bottom: 15px;
}

.menu-list-mega a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  transition: color 0.3s;
}

.menu-list-mega a:hover {
  color: #f8f9fa;
}

.menu-list-mega a.active {
  color: #dc3545;
}

.submenu-mega {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  display: none;
}

.submenu-mega.show {
  display: block;
}

.submenu-mega li {
  margin-bottom: 10px;
}

.toggle-icon-mega {
  font-size: 16px;
  margin-left: 5px;
}

.contact-info-mega {
  position: absolute;
  top: 30px;
  right: 30px;
  text-align: right;
  z-index: 10;
  color: #fff;
}

.contact-details-mega {
  font-size: 16px;
  line-height: 1.7;
  color: #eee;
}

.contact-details-mega p {
  margin: 0 0 20px;
}

.contact-details-mega i {
  margin-right: 8px;
  color: #dc3545;
}

.social-icons-mega {
  margin-bottom: 20px;
}

.social-icons-mega span {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
  color: #fff;
}

.social-icons-mega a {
  color: white;
  background-color: #333;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icons-mega a:hover {
  background-color: #dc3545;
}

.contact-btn-mega {
  display: inline-block;
  background-color: #dc3545;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
  color: white;
  cursor: pointer;
}

.contact-info-mega .contact-btn-mega {
  background-color: #dc3545;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
  color: #1c1a1a;
  text-decoration: none;
}

.contact-info-mega:hover .contact-btn-mega {
  background-color: #c82333;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #fff;
}

.close-btn-mega {
  position: absolute;
  top: -30px;
  right: 28px;
  background: white;
  color: black;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease-in-out;
}

.close-btn-mega:hover {
  transform: scale(1.2);
}


/****************RESPONSIVE MENU********************/
@media (max-width: 768px) {
  .header-nav-container {
    height: 70px;
    padding: 0 12px;
    max-width: 100%;
  /*  overflow-x: hidden;*/
  /*max-width: 100%;*/
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 72px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eaeaea;
  }

  .nav-menu li a {
    padding: 15px 20px;
    font-size: 14px;
  
  }

  .dropdown-content {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    padding-left: 20px;
  }

  .has-submenu.active .dropdown-content {
    display: block;
  }
.nav-menu li a:after {
  left:0%;
}
  .contact-icons {
    margin-left: auto;
    margin-right: 10px;
  }

  .logo {
    width: 100px;
  }
  
  .mega-menu-mega {
    padding: 20px;
    overflow-y: auto;
  }

  .menu-container-mega {
    flex-direction: column;
  }

  .menu-sidebar-mega {
    width: 100%;
    padding: 15px;
  }

  .menu-header-mega {
    margin-bottom: 20px;
  }

  .menu-list-mega a {
    font-size: 20px;
  }

  .submenu-mega {
    padding-left: 15px;
  }

  .contact-info-mega {
    position: static;
    text-align: left;
    margin-top: 20px;
  }

  .social-icons-mega {
    justify-content: left;
    margin-bottom: 15px;
  }

  .social-icons-mega a {
    margin: 0 12px 0 0;
  }

  .contact-details-mega {
    font-size: 12px;
  }

  

  .close-btn-mega {
    top: 10px;
    right: 10px;
  }
}

.nav-menu{
  margin-bottom: 0;
}

/* responsive-view */
@media (max-width: 768px) {
.menu-btn {
display: none;
}
.contact-icons a {
height: 30px;
width: 30px;
}
.contact-icons img{
height: 30px;
}
.hamburger {
height: 35px;
width: 35px;
padding: 8px;
}
.hamburger .bar{
width: 14px;
height: 2px;
margin: 4px auto;
}
.hamburger.open .bar:nth-child(1) {
transform: translateY(3px) rotate(45deg);
}
}



@media screen and (max-width: 991px) {
  /* Main dropdown styles */
  .dropdown-content,
  .dropdown-content2,
  .dropdown-content3 {
    display: none;
    position: static;
    box-shadow: none;
    width: 100%;
    padding-left: 15px;
    background-color: #f9f9f9;
    min-width: 100%;
  }
  
  /* Show dropdown when parent has active class */
  .has-submenu.active > .dropdown-content {
    display: block;
    animation: fadeDown 0.3s ease;
  }
  
  /* Show residential submenu when parent has active class */
  .has-submenu2.active > .dropdown-content2 {
    display: block;
    animation: fadeDown 0.3s ease;
    border-left: 2px solid #ddd;
  }
  
  /* Animation for dropdown appearance */
  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Style for menu items */
  .dropdown-content a,
  .dropdown-content2 a,
  .dropdown-content3 a {
    padding: 12px 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333 !important;
  }
  
  /* Add dropdown indicators */
  .has-submenu > a::after,
  .has-submenu2 > a::after,
  .has-submenu3 > a::after {
    content: '\25BC';
    float: left;
    font-size: 12px;
    margin-left: 0px;
    transition: transform 0.3s ease;
  }
  
  /* Rotate arrow when submenu is open */
  .has-submenu.active > a::after {
    transform: rotate(180deg);
  }
  
  .has-submenu2.active > a::after {
    transform: rotate(180deg);
  }
  
  /* Override hover behavior for mobile */
  .has-submenu:hover .dropdown-content,
  .has-submenu2:hover .dropdown-content2,
  .has-submenu3:hover .dropdown-content3 {
    display: block;
  }
  
  /* Style for Property submenu */
  .dropdown-content {
    border-left: 2px solid #ddd;
  }
  
  /* Style for Residential submenu */
  .dropdown-content2 {
    background-color: #f2f2f2;
  }
}




/* FOOTER STYLING */
.footer {
  background-color: #222; /* Dark background */
  color: #fff; /* White text */
  padding: 40px 0;
}

.container-footer {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Footer Logo Section */
.foot-logo-section {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.foot-logo-section img {
  width: 100px; /* Increased logo size */
  height: auto;
}

.foot-logo-section p {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

/* Taglines Section */
.footer-taglines {
  margin-top: 20px;
}

.footer-taglines p {
  font-size: 14px;
  line-height: 1.6;
  margin: 5px 0;
  font-style: italic;
  color: #ddd; /* Slightly lighter color */
}

/* Address Section */
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-address p {
  font-size: 14px;
  margin: 0;
}

.footer-address a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-address a:hover {
  color: #e30613; /* Highlight effect */
}

/* Quick Links & Projects */
.quicklinks,
.projects {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quicklinks h2,
.projects h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.quicklinks a,
.projects a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease-in-out;
}

.quicklinks a:hover,
.projects a:hover {
  color: #e30613;
}

/* Footer Copyright & Social Icons */
.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 14px;
  border-top: 1px solid #444;
}

.footer-copyright .col-lg-10 {
  text-align: left;
}

.footer-copyright .col-lg-2 {
  text-align: right;
}

.footer-social-icons {
  display: flex;
  justify-content: flex-end; /* Ensures right alignment */
  gap: 20px;
}

.footer-social-icons a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s ease-in-out, transform 0.2s;
}

.footer-social-icons a:hover {
  color: #e30613;
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-top: 20px;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

/* INDEX PAGE */

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 87vh;
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
}

/* .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100vh; /* Ensure it covers the viewport height /
  filter: brightness(0.7);
} */

/* Caption Styling */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 10% !important;
  transform: translateY(-50%);
  text-align: left;
}

.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3,
.carousel-caption p {
  text-align: left;
}

/* Adjust heading sizes */
.carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: white;
}

.carousel-caption p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: white;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-bottom: 2rem;
}

.hero-stats div {
  text-align: left;
}

/* Separator */
.separator {
  width: 2px;
  height: 100px;
  background: rgba(255, 255, 255, 0.5);
}

/* Hero Stats Content */
.hero-stats h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.hero-stats p {
  font-size: 1rem;
  color: white;
}
/* Custom navigation container */
.carousel-nav-container-herosection {
  position: absolute !important;
  bottom: 145px !important;
  left: 0 !important;
  right: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 20 !important;
}

/* Indicators */
.carousel-indicators-herosection {
  position: static !important;
  margin: 0 10px !important;
}

.carousel-indicators-herosection [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 6px !important;
}

.carousel-indicators-herosection .active {
  background-color: white !important;
}

/* Repositioned controls */
.carousel-control-prev-herosection,
.carousel-control-next-herosection {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  background: none !important;
  opacity: 1 !important;
}

.carousel-control-prev-icon-herosection,
.carousel-control-next-icon-herosection {
  width: 20px !important;
  height: 20px !important;
}

@media (max-width: 768px) {
  .testimonial-head h2 {
    font-size: 42px;
  }

  .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
  }
  .hero-section {
    height: 69vh;
  }

  .carousel-item img {
    height: 69vh; /* Match the container height */
  }

  .carousel-caption h1 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 4px;
  }

  .carousel-caption p {
    font-size: 14px;
  }

  /* Hero Stats */
  .hero-stats {
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
    margin-bottom: 20px;
  }

  .hero-stats h3 {
    font-size: 28px;
  }

  .hero-stats p {
    font-size: 14px;
  }

  /* Separator */
  .separator {
    width: 4px;
    height: 80px;
    background: rgba(255, 255, 255, 0.5);
  }

  /* Buttons */
  .hero-buttons {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .hero-buttons button {
    font-size: 16px;
    padding: 12px 20px;
  }

  /* About Button Project */
  .about-btn-project {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px !important;
  }

  .about-btn-project button {
    width: 100%;
    max-width: 250px;
    font-size: 16px;
    padding: 12px 20px;
  }

  .about-btn-project a {
    margin-left: 30px;
    margin-bottom: 18px;
    margin-top: 10px;
  }

  .about-btn-project i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out,
      transform 0.2s ease-in-out;
  }

  .carousel-nav-container-herosection {
    display: none !important;
  }

  /* Footer Adjustments */
  .footer {
    padding: 30px 0;
  }

  .container-footer {
    padding: 0 15px;
  }

  .foot-logo-section {
    text-align: center;
  }

  .foot-logo-section img {
    width: 80px;
  }

  .foot-logo-section p {
    font-size: 14px;
  }

  .footer-taglines {
    text-align: center;
    margin-top: 15px;
  }

  .footer-taglines p {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-address {
    text-align: center;
  }

  .footer-address h2 {
    font-size: 16px;
    margin-top: 30px;
  }

  .footer-address p {
    font-size: 13px;
  }

  .quicklinks,
  .projects {
    text-align: center;
    margin-top: 20px;
  }

  .quicklinks h2,
  .projects h2 {
    font-size: 16px;
  }

  .quicklinks a,
  .projects a {
    font-size: 13px;
  }

  .footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-top: 20px;
  }

  .footer-social-icons {
    justify-content: center;
    gap: 15px;
  }

  .footer-social-icons a {
    font-size: 20px;
  }
}

/* Contact Section Page */
.contact-us-page {
  background-color: #f8f8f8;
  padding: 110px 0;
}

/* Contact Info */
.contact-title {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}

.contact-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
  max-width: 500px;
}

/* Contact List */
.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.contact-list li {
  font-size: 16px;
  color: #000;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  font-weight: 500;
}

.contact-icon {
  font-size: 18px;
  color: #dc3545;
  margin-right: 10px;
}

.support-info {
  margin-top: 80px;
}

/* Support & Media Info */
.support-info h4 {
  font-size: 18px;
  color: #000;
  margin-top: 15px;
  font-weight: bold;
}

.support-info p {
  font-size: 16px;
  color: #666;
  max-width: 500px;
}

/* Form Container */
.form-container {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.btn-dan {
  text-align: center;
}

/* Form Fields */
.form-label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-control {
  border-radius: 4px;
  font-size: 14px;
  padding: 10px;
  border: 1px solid #ccc;
}

textarea.form-control {
  resize: none;
}

/* Submit Button */
.btn-danger-contact {
  display: block;
  background-color: #e30613 !important;
  color: #fff !important;
  padding: 12px !important;
  width: 80% !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 50px !important;
  transition: 0.3s ease-in-out !important;
}
.btn-dan {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Aligns items vertically (if needed) */
}

.btn-danger-contact:hover {
  background-color: darkred;
}

/* Map Section */
.map-include {
  background-color: #fff;
  padding: 50px 0;
}

.map-content h3 {
  font-size: 28px;
  font-weight: bold;
  color: #f4b700;
}

.map-content p {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  margin-bottom: 10px;
}

.map-content ul {
  padding: 0;
}

.map-content ul li {
  font-size: 16px;
  color: #000;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.map-content .contact-icon {
  font-size: 18px;
  color: #e30613;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
  }

  .contact-description,
  .support-info p {
    font-size: 16px;
  }

  .form-label {
    font-size: 14px;
  }

  .form-control {
    font-size: 14px;
  }

  .btn-danger-contact {
    font-size: 14px;
  }

  .map-content h3 {
    font-size: 24px;
  }
  .testimonial-text p {
    font-size: 14px;
  }
  .about-btn-project-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
}

/* ABOUT US IN INDEX PAGE */
/* ABOUT US SECTION */
.about-us {
  margin-top: 50px;
  background: #fff;
}
.about-head {
  text-align: left;
}

.about-head h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f4b700;
  margin-bottom: 12px;
}

.about-head h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.about-des p {
  font-size: 18px;
  color: #000000;
  margin: 20px 0;
}

.about-des ul {
  padding-left: 15px;
  list-style: none;
}

.about-des ul li {
  position: relative;
  font-size: 18px;
  color: #000000;
  margin-bottom: 8px;
}

.about-des ul li::before {
  content: "•";
  color: red;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: -15px;
  top: 2px;
}

.about-btn-project {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
}

.about-btn-project button {
  background: red;
  color: white;
  border: none;
  font-size: 16px;
  padding: 10px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

/* .about-btn-project button:hover {
  background: darkred;
} */

.about-btn-project a {
  font-size: 16px;
  color: red;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 18px;
}
.about-btn-project a i {
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
  border: 1px solid red;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: red;
}

.about-btn-project a:hover i {
  transform: translateX(5px);
  color: black;
  background-color: red;
  border: red;
}

.about-us .col-lg-5 img {
  width: 100%;
  height: 480px;
  border-radius: 35px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .about-head h2 {
    font-size: 28px;
  }

  .about-us .col-lg-5 img {
    height: 300px;
  }

  .about-des p,
  .about-des ul li {
    font-size: 14px;
    text-align: left;
  }

  .about-btn-project {
    flex-direction: column;
  }
}
/* ABOIUT US SECTION END */

/* FEATURE SECTION in INdex Page */
:root {
  --primary-color: #2c3e50;
  --accent-color: #3498db;
  --text-dark: #1a1a2e;
  --background-light: #f4f6f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background-light);
}

/*****************************COUNTER SECTION *************************************/

.counter-section {
  background: linear-gradient(#1d1b1bda, rgba(0, 0, 0, 0.5)),
    url("../images/slider-3.jpg");
  background-size: cover;
  background-position: center;
  margin-top: 2px;
  padding: 30px 0;
}

.counter-box {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  /* background: #fff; */
  border-radius: 8px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.counter-icon {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 15px;
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.counter-text {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  color: #fff;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: #007bff;
}

.section-title p {
  font-size: 18px;
  color: #ffffff;
}

.feature-section {
  display: flex;
  min-height: 75vh;
  align-items: center;
  padding-top: 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  overflow: hidden;
  margin-bottom: 15px;
}

.container-feature-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 50px;
  align-items: center;
}

/* Left Side Text Section */
.feature-text {
  position: relative;
  z-index: 2;
  padding-right: 50px;
}

.highlight-title {
  font-size: 30px;
  font-weight: 700;
  color: #f4b700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 19px;
  display: inline-block;
  position: relative;
}

.highlight-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.highlight-heading {
  font-size: 37px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight-description {
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
}

/* Project Grid */
.feature-projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
}

.project-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.project-card:nth-child(1) {
  transform: translateY(-50px);
}

.project-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 30px 20px;
  color: white;
  transition: all 0.4s ease;
}

.project-overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
  transform: translateY(0);
  opacity: 1;
  transition: none;
}

.project-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(0);
  opacity: 1;
  transition: none;
}

.hover-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.hover-icon i {
  color: white;
  font-size: 20px;
}

/* Hover Effects */
.project-card:hover {
  transform: scale(1.03) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .project-overlay h3,
.project-card:hover .project-overlay p {
  transform: translateY(0);
  opacity: 1;
}

.project-card:hover .hover-icon {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container-feature-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .feature-projects {
    grid-template-columns: 1fr;
  }

  .project-card:nth-child(1) {
    transform: translateY(0);
  }
}
.properties {
  padding: 40px 0 60px;
}

.container-fluid {
  padding: 0 15px;
  /* max-width: 1800px; */
  margin: 0 auto;
}

.prop-head {
  text-align: left;
  padding: 0 15px;
  margin-bottom: 30px;
}

.prop-head h3 {
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4b700;
  margin-bottom: 12px;
  

}

.prop-head h2 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 8px;
}

.prop-head p {
  font-size: 18px;
  color: #ffffff;
  max-width: 650px;
}

/* Property Cards */
.property-cards {
  margin: 0;
}

.property-card {
  padding: 0;
}

/* Property Images */
.prop-img {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.prop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.3s ease-in-out;
}

.prop-img:hover img {
  transform: scale(1.05);
}

/* Container holding the text and button */
.prop-img-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  display: flex;
  flex-direction: column;
}

/* Title and button in the same row */
.prop-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Styling for heading */
.prop-title h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  flex-grow: 1;
}

/* Styling for paragraph */
.prop-img-text p {
  margin: 5px 0 0 0;
  color: #fff;
  font-size: 18px;
}

/* Styling for button */
.prop-explore-btn {
  display: flex;
  justify-content: flex-end;
}

.prop-explore-btn button {
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}

.prop-explore-btn button:hover {
  background-color: #ff4d4d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .prop-head h2 {
    font-size: 36px;
  }

  .prop-head h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .property-card {
    margin-bottom: 20px;
  }

  .prop-head {
    padding: 0 15px;
  }

  .prop-img {
    height: 400px;
  }

  .prop-explore-btn button {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 15px;
  }

  .prop-title h3 {
    font-size: 20px;
  }

  .prop-img-text p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .prop-head h2 {
    font-size: 30px;
  }

  .prop-head h3 {
    font-size: 20px;
  }

  .prop-img {
    height: 350px;
  }

  .prop-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .prop-explore-btn {
    margin-top: 10px;
  }
}
/* TESTIMONIALS  */
.prop-test-section {
  background-color: #000;
  color: white;
}

.testimonials {
  padding-bottom: 60px;
}
.testimonial-head {
  text-align: left;
}

.testimonial-head h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4b700;
}

.testimonial-head h2 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 36px;
}

.testimonial-head p {
  font-size: 16px;
  color: #aaa;
  max-width: 450px;
  margin-bottom: 40px;
}
.testimonials h2 {
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.underline {
  position: relative;
  height: 4px;
  width: 100px;
  background: linear-gradient(45deg, #fe721d, #ff5627);
  margin: 0 auto 30px; /* center and space below */
  border-radius: 2px;
}
/* Testimonial Rating */
.testimonial-rating {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
}

/* Individual Rating Item */
.rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Large Number Style */
.rating-item .number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Muted Text */
.rating-item .mute {
  font-size: 14px;
  color: #aaa;
}

/* Testimonial Text */
.testimonial-text-content {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;

  /* Space for navigation buttons */
}

.testimonial-text p {
  font-size: 22px;
  line-height: 1.6;
  color: #ddd;
  text-align: left;
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
}

.testimonial-author p {
  font-size: 14px;
  color: #aaa;
  text-align: center;
}

/* Testimonial Slider */
.test-slider {
  width: 100%;
  position: relative;
}

/* Individual Testimonial Slide */
.swiper-slide {
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

/* Testimonial Navigation Buttons */
.testimonial-next-prev-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 80%;
  transform: translateX(-50%);
  gap: 8px;
  z-index: 10;
}

/* Previous & Next Buttons */
.testimonial-next-prev-icon button {
  background-color: red;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

/* Hover Effect */
.testimonial-next-prev-icon button:hover {
  background-color: #ff4d4d;
}

/* Ensure buttons are close together */
.testimonial-next-prev-icon {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 0px;
}

/* Hide Default Swiper Navigation Icons */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* Custom Left & Right Arrow Styles */
.testimonial-next-prev-icon .swiper-button-prev,
.testimonial-next-prev-icon .swiper-button-next {
  font-size: 18px;
  font-weight: bold;
}

/* GALLERY SECTION */
.header-gallery-section {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.gallery-tag {
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: #f4b700;
}

.gallery-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gallery-description {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #000000;

  font-size: 16px;
}

/* Slideshow Container */
.slideshow-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Slideshow Track (Infinite Scroll) */
.slideshow-track {
  display: flex;
  width: calc(100% * 3); /* 3x the width to ensure smooth looping */
  animation: scrollGallery 5s linear infinite;
}

/* Keyframes for Infinite Scrolling */
@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  } /* Moves left by 1/3rd of its width */
}

/* Gallery Grid Inside Slideshow */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 15px;
  width: 100%;
  flex-shrink: 0; /* Prevent shrinking */
  align-items: center; /* Center items vertically */
  justify-content: center;
}

/* Gallery Item Styling */
.gallery-item {
  background-color: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Staggered Grid Layout */
.item1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3; /* Centered vertically */
  align-self: center;
}

.item2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.item3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.item4 {
  grid-column: 3 / 4;
  grid-row: 1 / 3; /* Large Image */
}

.item5 {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.item6 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

.item7 {
  grid-column: 5 / 6;
  grid-row: 1 / 3; /* Centered vertically */
  align-self: center;
}

/* Default Grid for Larger Screens */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .item1,
  .item2,
  .item3,
  .item5,
  .item6,
  .item7 {
    grid-row: auto;
  }
}

/* Tablet View */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/* Default Grid for Larger Screens */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet View */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/* 📱 Mobile View (Simple 2-Column Grid with 7 Images) */
@media (max-width: 480px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 8px;
  }

  .gallery-item {
    display: none; /* Hide all images by default */
  }

  /* Show only the first 7 images */
  .gallery-item:nth-child(-n + 5) {
    display: block;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/* FAQ SECTION INDEX PAGE */
/* FAQ SECTION */
.faq-heading {
  text-align: left;
}
.faq-heading h4 {
  font-size: 27px;
  text-transform: uppercase;
  font-weight: 600;
  color: #f4b700;
  margin-bottom: 12px;
}
.faq-heading p {
  color: #000 !important;
  font-size: 18px;
}

.faq-heading h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #000;
}

.faq-heading p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Custom Accordion Styling */
.custom-accordion .accordion-item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.custom-accordion .accordion-button {
  padding: 15px 20px;
  font-weight: 500;
  color: #333;
  background-color: transparent;
  border: none;
  box-shadow: none;
  text-align: left;
  position: relative;
}

/* Remove Bootstrap default icon */
.custom-accordion .accordion-button::after {
  content: none !important;
}

/* Add Custom + and × Icon */
.custom-accordion .accordion-button::before {
  content: "+";
  font-size: 20px;
  font-weight: bold;
  color: #666;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Change + to × when expanded */
.custom-accordion .accordion-button:not(.collapsed)::before {
  content: "×";
  color: red;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .faq-heading h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .faq-heading h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .faq-heading p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .custom-accordion .accordion-button::before {
    font-size: 18px;
    right: 15px;
  }
}

/* Contact Us Link */
.contact-link {
  color: red;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 21px;
}

/* Styling for the right arrow */
.contact-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid red;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Change arrow color to red */
.contact-arrow svg {
  stroke: red;
}

/* Hover effect */
.contact-link:hover .contact-arrow {
  background-color: red;
  transform: scale(1.1);
}

.contact-link:hover .contact-arrow svg {
  stroke: white;
}

/* Remove default Bootstrap focus blue outline */
.custom-accordion .accordion-button:focus,
.custom-accordion .accordion-button:active {
  box-shadow: none !important;
  outline: none !important;
  color: inherit;
  background-color: transparent !important;
}

/* Optional: Ensure button stays visually the same */
.custom-accordion .accordion-button:not(.collapsed) {
  background-color: transparent !important;
}

/* BLOG SECTION IN INDEX */
/* Blog Section */
.blog-section {
  padding-top: 0px;
}
.blog-titles {
  text-align: left;
}
/* Blog Header */

.blog-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

/* Browse Link */
.browse-link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #f00;
  text-decoration: none;
  font-weight: 500;
}

.browse-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  color: #f00;
  transition: transform 0.3s ease;
}

.browse-link:hover .browse-icon {
  transform: translateX(5px);
}
.recent-hr {
  text-align: center;
  margin: 20px 0;
}

.recent-hr hr {
  width: 100%;
  border: 2px solid #0000001a;
  opacity: 1;
}

/* Blog Section */
.blog-section {
  padding-top: 28px;
}

/* Blog Header */
.blog-label {
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
  color: #f4b700;
}

.blog-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.blog-subheading {
  font-size: 16px;
  color: #000000;
  margin-bottom: 0;
}

/* Browse Link */
.browse-link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #f00;
  text-decoration: none;
  font-weight: 500;
}

.browse-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  color: #f00;
  transition: transform 0.3s ease;
}

.browse-link:hover .browse-icon {
  transform: translateX(5px);
}

/* Horizontal Rule for Recent Blogs */
.recent-hr {
  text-align: center;
  margin: 20px 0;
}

.recent-hr hr {
  width: 100%;
  border: 2px solid #0000001a;
  opacity: 1;
}

/* Blog Card */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensures all cards are equal height */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}



/* Card Category */
.card-category {
  position: absolute;
  background: #fff;
  color: black;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  right: 16px;
  bottom: 16px;
}

/* Card Content */
.card-content {
  flex-grow: 1; /* Ensures content fills remaining space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

/* Card Meta (Author & Date) */
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px !important;
}

.author {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  height: 100%; /* Ensure it takes full height */
}

/* Card Title */
.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000 !important;
  line-height: 1.3;
}

/* Card Text */
.card-text {
  font-size: 16px;
  color: #000000;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blog-header .col-md-4 {
    text-align: left;
    margin-top: 20px;
  }

  .blog-heading {
    font-size: 28px;
  }

  .card-image {
    height: 200px; /* Adjust image height for smaller screens */
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 0 0;
  }

  .blog-heading {
    font-size: 24px;
  }

  .card-content {
    padding: 0;
    text-align: left;
  }

  .card-title {
    font-size: 16px;
  }

  .card-text {
    font-size: 13px;
  }
  .trends-head {
    text-align: left;
  }
}

/* Gallery Section Styles */
.star-gallery {
  padding: 50px 0;
}

.container-star {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.gallery-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  color: #333;
}

/* Grid Layout - Matches the Image Layout */
.parent-star-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-gap: 10px;
}

/* Grid positioning for Exact Image Layout */
.div2 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.div3 {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}
.div4 {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}
.div5 {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}
.div6 {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
}
.div7 {
  grid-column: 3 / 4;
  grid-row: 4 / 5;
}

/* 🛠 Fix Overlapping Issues */
.parent-star-gallery div {
  width: 100%;
  height: 100%;
  overflow: hidden; /* Ensures no overflow */
  border-radius: 15px; /* Smooth rounded corners */
}

.parent-star-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the div properly */
  display: block;
}

/* Responsive Adjustments */

/* Mobile */
@media (max-width: 767px) {
  .parent-star-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .div2,
  .div3,
  .div4,
  .div5,
  .div6,
  .div7 {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .parent-star-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .div2 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .div3 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .div4 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .div5 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .div6 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .div7 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
}

/* 404 Error Stylimgements */
.error-about-section {
  position: relative;
  height: 120vh; /* Full viewport height */
  background: url("../images/error.jpg") no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center; /* Centers vertically */
  justify-content: center;
  padding: 0 20px;
}

.error-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.error {
  width: 100%;
  padding: 20px 0 20px 0;
  color: white;
  margin-left: 40px;
}
.error h1 {
  font-size: 90px;
}
.error h2 {
  font-size: 58px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.error button {
  background-color: red;
  color: white;
  padding: 10px;
  border-radius: 28px;
  margin-top: 20px;
}

.project-details {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75vh;
  text-align: center;
  background: url("../images/pro-detail.jpg") ;
  position: relative;
  color: white;
}

/* Overlay for Better Readability */
.project-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Ensure Content Appears on Top */
.container-project-details-head {
  position: relative;
  z-index: 2;
}

/* Text Styling */
.project-details-head h2 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.project-details-head p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
}


@media (max-width: 768px) {
  .project-details-head h2 {
    font-size: 28px;
}
.project-details-head p {
  font-size: 12px;}

}

/* ================================= */
/* Project Description Section */
.project-description-sum {
  position: relative;
  width: 100%;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Centering the "PROJECT DETAILS" Heading */

.project-description-sum-head h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f4b700;
  margin-top: 30px;
}

/* Main Content Container */
.project-description-sum .container {
  max-width: 1200px;
  z-index: 2;
}

/* Left Side Content */

.project-star h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.project-star-para {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Key Features */
.project-star-key h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.project-star-key ul {
  padding-left: 20px;
}

.project-star-key ul li {
  font-size: 16px;
  color: #333;
  position: relative;
  margin-bottom: 8px;
  padding-left: 5px;
}

/* Right Side Image */
.star-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.star-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .project-description-sum {
    padding: 60px 0;
  }

  .project-star {
    padding: 30px;
  }

  .project-star h2 {
    font-size: 24px;
  }

  .project-star-key h3 {
    font-size: 18px;
    text-align: left;
  }
  .pro-p {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .project-description-sum {
    padding: 0 0;
  }

  .project-description-sum .container {
    flex-direction: column;
    text-align: center;
  }

  .project-star {
    padding: 20px;
  }
  .star-box {
    margin-top: 20px;
  }

  .star-box img {
    width: 100%;
    height: auto;
  }
}

/* Project Details Box */
.project-info-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  position: sticky;
  top: 100px;
}

.project-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-info-box li {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.project-info-box li:last-child {
  border-bottom: none;
}

.project-info-box strong {
  font-weight: 700;
  color: #000;
}

.project-info-box span {
  font-weight: 500;
  color: #555;
}

/* ================================= */

/* Testimonial Section */
.testimonial-section {
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  text-align: center;
  padding: 80px 20px;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Quote Symbol */
.testimonial-quote {
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
}

/* Author Details - Centered */
.testimonial-author {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-role {
  font-size: 14px;
  opacity: 0.8;
}

/* 📱 Responsive Styles */

/* Tablet View */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 20px;
  }

  .testimonial-quote {
    font-size: 40px;
  }

  .author-name {
    font-size: 16px;
  }

  .author-role {
    font-size: 13px;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .testimonial-section {
    padding: 60px 15px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .testimonial-quote {
    font-size: 35px;
  }

  .author-name {
    font-size: 15px;
  }

  .author-role {
    font-size: 12px;
  }
}
/* BLOG>PHP */
.three-in-one {
  background-color: rgb(244, 237, 218);
}

.trends {
  display: flex;
  align-items: center;
  min-height: 40vh;
}

@media (min-width: 1530px) and (max-width: 1830px) {
  .trends {
    min-height: 48vh !important;
    padding-top: 44px;
  }
}
@media (min-width: 1360px) and (max-width: 1450px) {
  .trends {
    min-height: 53vh !important;
  }
}

.trends-head h2 {
  font-size: 54px;
  font-weight: bold;
  margin-bottom: 15px;
}

.trends-head p {
  font-size: 19px;
  color: #000000;
  line-height: 1.6;
}

/* Construction Section */


.construction-img img {
  width: 100%;
  height: 400px;
  max-width: 100%;
  border-radius: 15px;
  display: block;
}

/* Text Styling */
.construction-text {
  text-align: left;
}

.construction-text h3 {
  font-size: 22px;
  color: #e30613;
  margin-bottom: 10px;
}

.construction-text h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.construction-text p {
  font-size: 14px;
  color: #666;
}

.mute {
  color: #aaa;
}

/*  Responsive Design */
@media (max-width: 992px) {
  .construction-section {
    padding: 40px 0;
  }

  .construction-text h2 {
    font-size: 24px;
  }

  .construction-text p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .construction-section .row {
    flex-direction: column;
    text-align: center;
  }

  .construction-img img {
    max-width: 100%;
  }

  .construction-text {
    text-align: center;
    margin-top: 20px;
  }

  .construction-text h2 {
    font-size: 22px;
  }

  .construction-text p {
    font-size: 12px;
  }
}

/* Text Styling */
.construction-text {
  flex: 1;
  max-width: 500px;
}

.construction-text h3 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 10px;
}

.construction-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin-bottom: 15px;
}

.construction-text p {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.construction-text .mute {
  color: #888;
  font-size: 13px;
  margin-left: 5px;
}

/* Blog Card Image Styling */
.card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 230px !important;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

.card-image:hover img {
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .construction-section {
    padding: 0;
  }
  .trends {
    height: 40vh;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .construction-text h2 {
    font-size: 22px;
    text-align: left;
  }

  .construction-text p {
    font-size: 13px;
    text-align: left;
  }

  .construction-img img {
    max-width: 100%;
    height: 250px;
  }
}

/* Newsletter Section */
.newsletter {
  text-align: center;
  padding: 0px 20px;
  background-color: #fff;
}

.newsletter-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.newsletter-heading {
  font-size: 70px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

/* Input field with button inside */
.newsletter-form {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.input-container {
  position: relative;
  width: 350px;
  /* Adjust width */
}

.newsletter-form input {
  width: 100%;
  padding: 15px 120px 15px 15px;
  /* Space for the button */
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 50px;
  outline: none;
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: red;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background-color: darkred;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-heading {
    font-size: 24px;
  }

  .input-container {
    width: 100%;
    max-width: 320px;
  }

  .newsletter-form input {
    padding-right: 100px;
    /* Adjusted space for button */
  }
}
/* Blog post.php */
/* Blog Header Section */
.blog-header-post {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50vh;
  background: #ffffff;
  margin-top: 30px;
}

.define-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

.define-img {
  width: 960px; /* Adjust width */
  height: 420px; /* Fixed height */
  border-radius: 24px; /* Rounded corners */
  overflow: hidden;
}

.define-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.date-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

.date-img {
  width: 960px; /* Adjust width */
  height: 420px; /* Fixed height */
  border-radius: 24px; /* Rounded corners */
  overflow: hidden;
}

.date-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.architecture-text {
  font-size: 14px;
  font-weight: 600;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.blog-heading {
  font-size: 48px;
  font-weight: 700;
  color: #222;
}

.blog-header-post p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0 auto;
}

/* Blog Date Section */
.date-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.date-img {
  width: 100%;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
}

.date-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ensure Row & Column Spacing */
.blog-date .row {
  margin-bottom: 0 !important; /* Removes extra spacing */
}

/* Section Styling */
.defining {
  padding: 40px 0;
  background-color: #fff;
}

.define-head {
  margin-bottom: 0px;
}

.define-head h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.define-head p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.define-list ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.define-list ul li {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  padding: 10px 0;
}

.define-list ul li b {
  color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-heading {
    font-size: 30px;
  }

  .blog-header-post p,
  .define-head p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .date-text {
    font-size: 18px;
  }

  .date-img {
    height: 300px; /* Reduce height for tablets */
  }
}

@media (max-width: 768px) {
  .blog-heading {
    font-size: 28px;
    text-align: left;
  }

  .define-list ul li {
    font-size: 14px;
  }

  .date-img {
    width: 100%;
    height: 250px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 480px) {
  .blog-header-post {
    min-height: 50vh; /* Adjust height for small devices */
    padding: 30px 15px;
  }

  .blog-header-post p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }

  .date-img {
    height: 200px; /* Smaller image on mobile */
    border-radius: 20px;
  }
}

/* ABOUT.PHP */
.our-values {
  background-color: #000;
  /* Dark Background */
  color: #fff;
  /* White Text */
  padding: 80px 0;
}
.values-head {
  text-align: left;
}
.values-head h3 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f4b700;
}

.values-head h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 10px 0;
}

.values-head p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
}

.values-list ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.values-list ul li {
  position: relative;
  font-size: 18px;
  padding-left: 25px;
  margin-bottom: 10px;
  text-align: left;
}

.values-list ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: rgb(255, 255, 255);
  /* Light Blue Bullet */
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  border: 1px solid #fff;
  padding: 28px;
  border-radius: 10px;
}

.value-card h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 17px;
  color: #ffffff;
}
/* CAREER PAGE  */
.career {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78vh;
  background: url("../images/ghgh.jpg") no-repeat center/cover;
  color: white;
}

.career::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.career-head {
  text-align: left;
}
.career-head {
  position: relative;
  z-index: 1;
}

.career-head h2 {
  font-size: 64px;
  font-weight: bold;
}

.career-head p {
  font-size: 24px;
  color: rgb(255, 255, 255);
}

/* Career Benefit Section */
.career-card-benefit-section {
  background-color: #000;
  /* Black background */
  color: white;
  /* White text */
  padding: 80px 0;
  text-align: left;
}

/* Benefit Header */
.career-benefit h3 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff99;
  /* 60% white opacity */
}

.career-benefit h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.career-benefit p {
  font-size: 20px;
  /* color: rgba(255, 255, 255, 0.6); */
  color: #fff;
  /* 60% opacity */
  max-width: 500px;
  margin-bottom: 20px;
}

/* Cards Layout */
.career-card {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Subtle border */
  padding: 60px;
  border-radius: 32px;
  text-align: left;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.career-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 13px;
  color: white;
}

.career-card p {
  font-size: 18px;
  /* color: rgba(255, 255, 255, 0.6); */
  color: #fff;
  margin: 0;
}

@media (max-width: 992px) {
  .col-lg-4 {
    flex: 1 1 calc(50% - 20px);
    /* 2 columns on tablets */
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .col-lg-4 {
    flex: 1 1 100%;
    /* 1 column on mobile */
    max-width: 100%;
  }
}

/* Openings Section */
.openings {
  padding-top: 80px;
  background-color: #fff;
  text-align: left;
}

.openings-head {
  text-align: left;
  margin-bottom: 40px;
}

.openings-head h3 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 1px;
}

.openings-head h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.openings-head p {
  font-size: 18px;
  color: #000000;
  max-width: 600px;
}

/* Job Listing */
.job-listing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Job Card */
.job-card {
  background-color: #f9f9f9;
  padding: 25px 30px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.job-card:hover {
  transform: translateY(-5px);
}

/* Job Info */
.job-info {
  flex: 2;
}

.job-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 1px;
}

.job-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 5px;
  color: #000;
}

/* Job Details */
.job-details {
  flex: 3;
  display: flex;
  gap: 200px;
}

.job-details div {
  text-align: left;
}

.job-label {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

.job-details p {
  font-size: 16px;
  color: #333;
}

/* Apply Now Button */
.job-apply {
  flex: 1;
  text-align: right;
}

.job-apply a {
  font-size: 16px;
  color: #e60000;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
}

.job-apply a:hover {
  text-decoration: underline;
}

.arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #e60000;
  background-color: #fff;
  /* White background */
  border: 2px solid #e60000;
  /* Red border */
  width: 40px;
  /* Circle width */
  height: 40px;
  /* Circle height */
  border-radius: 50%;
  /* Makes it circular */
  transition: all 0.3s ease-in-out;
}

.job-apply a:hover .arrow {
  background-color: #e60000;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid rgba(115, 113, 113, 0.662);
  }

  .job-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .job-apply {
    text-align: left;
    margin-top: 10px;
  }
}

/* PROJECTS.PHP */
.find-home {
  height: 100vh;
  width: 100%;
  background-image: url("../images/build4.jpg");
  background-size: cover;
  background-position: left;
  display: flex;
  align-items: center;
  position: relative;
}

.find-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(255, 255, 255, 0)
  );
  z-index: -1;
}

.find-home-head {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #000;
}

.find-home-head h2 {
  font-size: 48px;
  font-weight: 700;
}

.find-home-head p {
  font-size: 16px;
  color: #ffffff;
}

/* Property Search Box */
.property-search-box {
  background: white;
  border-radius: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  padding: 30px;
  transition: all 0.3s ease-in-out;
}

/* Search Tabs */
.search-tabs {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #f0f0f0;
}

.tab {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: white;
  color: black;
  border-radius: 10px 10px 0 0;
  border: none;
  outline: none;
}

.tab.active {
  background: red;
  color: white;
}

.tab:hover {
  background: rgba(255, 0, 0, 0.1);
  color: red;
}

/* Flexbox for Filters */
.search-filters {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

/* Each Filter */
.filter-group {
  flex: 1;
  min-width: 200px;
  padding: 20px 0;
}

/* Label Styling */
.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  text-align: left;
}

/* Dropdown Styling */
.dropdown {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M10.3 3.3L6 7.6 1.7 3.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l5 5c.4.4 1 .4 1.4 0l5-5c.4-.4.4-1 0-1.4s-1-.4-1.4 0z' fill='%23999999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.dropdown:hover,
.dropdown:focus {
  border-color: red;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

/* Option Styling */
.dropdown option {
  padding: 10px;
  font-size: 16px;
  background: white;
}

.dropdown option:checked {
  background: red;
  color: white;
}

/* Prevent default blue highlighting */
.property-search-box * {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .find-home {
    height: auto;
    padding: 50px 20px;
    text-align: center;
    background-position: center;
  }

  .find-home::before {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
  }

  .find-home-head h2 {
    font-size: 32px;
  }

  .find-home-head p {
    font-size: 14px;
    font-weight: bold;
  }

  .property-search-box {
    padding: 20px;
    margin-top: 20px;
  }

  .search-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .search-filters {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .filter-group {
    min-width: 100%;
    padding: 15px;
  }
}

.explore-journey {
  height: 76vh;
  width: 100%;
  background-image: url("../images/media.jpeg");
  background-size: cover;
  background-position: center left;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.explore-journey::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;
}

.container-journey {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.journey-head h2 {
  font-size: 78px;
  font-weight: 700;
  color: white;
}

.journey-head p {
  font-size: 18px;
  color: white;
  max-width: 800px;
}
/* LAND-OWNER */
/* Section Styling */
/*  */
@media (min-width: 1360px) and (max-width: 1450px) {
  .land-owner {
    height: 79vh !important;
  }
}

/* */
@media (min-width: 1530px) and (max-width: 1830px) {
  .land-owner {
    height: 73vh !important;
  }
}

.land-owner {
  padding-top: 80px;
  background-color: #fff;
  height: 69vh;
  margin-top: 50px!important;
}

.container-land-owner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Layout */
.row-land-owner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left Section */
.content-land-owner {
  width: 50%;
}

.content-land-owner h2 {
  font-size: 45px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.content-land-owner p {
  font-size: 21px;
  color: #000000;
  margin-bottom: 20px;
}

/* Ratings Section */
.excellent-tags h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 20px;
  color: #000;
}

.rating {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-top: 10px;
}

.rating img {
  height: 30px;
}

/* Right Section - Image */
.land-img {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.land-img .background {
  width: 100%;
  position: absolute;
  z-index: 0;
  bottom: 0;
  height: 396px;
}

.land-img .foreground {
  position: relative;
  z-index: 1;
  max-width: 80%;
  right: 130px;
  height: 338px;
}

/* Left Section - Image */
.plan-img {
  height: 300px !important;
}

.plan-img img {
  width: 100%;
  border-radius: 10px;
  height: 435px; /*insted of 100%*/
  object-fit: cover;
  object-position: center;
}

/* Right Section - Content */
.plan-content h2 {
  font-size: 40px;
  font-weight: bold;
  color: #000;
}

.plan-content p {
  font-size: 17px;
  color: #000000;
  line-height: 1.3;
  margin-top: 20px;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.plan-list li {
  font-size: 17px;
  color: #000000;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  font-weight: bold;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/star-list.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

@media (max-width: 768px) {
  .plan-content {
    margin-top: 29px !important;
  }
}
@media (max-width: 480px) {
  /* Adjusting Section Padding & Layout */
  .land-owner {
    padding: 40px 0;
    height: auto;
  }

  .land-img .background {
    height: 250px;
    padding-top: 80px;
  }
  .land-img .foreground {
    height: 200px;
  }

  .row-land-owner {
    flex-direction: column;
    text-align: center;
  }

  .content-land-owner {
    width: 100%;
    padding: 0 15px;
  }

  .content-land-owner h2 {
    font-size: 32px;
    line-height: 1.3;
    text-align: left;
  }

  .content-land-owner p {
    font-size: 16px;
    color: #030303;
    text-align: left;
  }

  .rating {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .rating img {
    height: 25px;
  }

  /* Image Adjustments */
  .land-img {
    width: 100%;
    /*margin-top: 20px;*/
  }

  .land-img .foreground {
    max-width: 100%;
    right: 0;
  }

  /* Plan Section (Mobile View) */
  .plan-img {
    height: 200px !important;
  }
  .plan-img img{
    height: 200px !important;
    object-fit: cover;
  }
  .plan-img img {
    border-radius: 8px;

  }

  .plan-content h2 {
    margin-top: 10px;
    font-size: 28px;
    text-align: left;
  }

  .plan-content p {
    font-size: 16px;
    text-align: left;
  }

  .plan-list li {
    font-size: 14px;
    padding-left: 25px;
  }

  .plan-list li::before {
    width: 16px;
    height: 16px;
    bottom: 0;
    top: 6px;
  }
}

/* General Styles */
.tart {
  background: #fff;
  margin-top: 30px;
}

.tart-head h3 {
  color: #f4b700;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tart-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.tart-head p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 40px;
}

/* Steps Section */
.identy-check {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@media (max-width: 768px) {
  .check-card {
    margin-bottom: 10px;}
}
.check-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.check-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.check-card h2 {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  border: 2px solid #222;
  color: #222;
  border-radius: 50%;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.check-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 13px;
}

.check-card p {
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
}

/* CANTACT US IN INDEX PAGE */
.curious {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 20px;
}

.contact-title-contact {
  width: 80px;
  height: 20px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  margin: 0 auto;
  color: #f4b400;
}

.contact-heading-contact {
  font-weight: 600;
  font-size: 64px;
  line-height: 70.21px;
  color: #000;
}

.about-btn-project-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.contact-btn-contact {
  padding: 10px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19.5px;
  border: 1px solid red;
  background-color: red;
  color: white;
  border-radius: 50px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .contact-heading-contact {
    font-size: 34px;
    line-height: 50px;
  }

  .contact-title-contact {
    font-size: 14px;
    width: auto;
    height: auto;
  }

  .about-btn-project button,
  .about-btn-project a {
    max-width: 100%;
    font-size: 14px;
  }
  .about-btn-project a {
    margin-left: 0;
  }

  .about-btn-project-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .contact-btn-contact {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 30px;
    display: block;
    margin: 0 auto;
  }
}

/* LAND OWNER FORM */
.registration-header {
  color: #f4b700;
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.form-title {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 15px;
}
.form-description {
  color: #000000;
  margin-bottom: 20px;
  max-width: 400px;
  font-size: 18px;
}
.contact-text {
  color: #000000;
  margin-bottom: 30px;
  max-width: 400px;
  font-size: 18px;
}
.contact-link-re {
  color: #e30613;
  text-decoration: none;
  font-weight: bold;
}
.contact-link-re:hover {
  text-decoration: underline;
}
.info-icon {
  color: #999;
  font-size: 14px;
  margin-left: 5px;
}
.form-re .re-btn {
  display: flex;
  justify-content: center;
}

.form-label {
  font-weight: 500;
  color: #333;
}
.form-control {
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 15px;
}
.form-re {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #fff;
}

.card-text a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.card-text a:hover {
  color: inherit;
  text-decoration: none;
}
.card-title {
  margin-bottom: 10px !important;
}

.card-title a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.card-title a:hover {
  color: inherit;
  text-decoration: none;
}
/* Career Detail Section */
.career-detail {
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  padding-top: 50px;
  text-align: center;
  margin-top: 50px;
  min-height: 40vh; /* Adjusted height for better responsiveness */
}

.career-detail .career-detail-head {
  max-width: 600px; /* Prevents content from being too wide */
  text-align: center;
}

.career-title {
  font-weight: bold;
  font-size: 56px;
  margin-bottom: 15px;
}

.career-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #494949;
}

.career-meta i {
  color: #d00000;
  margin-right: 5px;
}

.career-buttons {
  margin-top: 40px;
}

.career-buttons .btn {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
}

.career-buttons .btn-danger {
  background-color: #d00000;
  color: #fff;
  border: none;
}

.career-buttons .btn-danger:hover {
  background-color: #b30000;
}

.career-buttons .btn-outline-danger {
  color: #d00000;
  border: 2px solid #d00000;
}

.career-buttons .btn-outline-danger:hover {
  background-color: #d00000;
  color: #fff;
}
.job-des {
  padding: 50px 0;
}

.job-des h3 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 32px;
  color: #333;
  line-height: 1.3;
  margin-top: 20px;
}

.job-des p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Styling for Job Responsibilities and Qualifications */
.job-des .job-res,
.job-des .job-qual {
  margin-top: 30px;
}

.job-des h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-top: 20px;
}

.job-des ul {
  list-style: none;
  padding-left: 0;
}

.job-des ul li {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.job-des ul li::before {
  content: "●";
  color: red;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 5px;
}

@media screen and (max-width: 768px) {
  /* Career Detail Section */
  .career-detail {
    flex-direction: column;
    padding: 30px 15px;
    text-align: center;
    min-height: auto;
  }

  .career-detail .career-detail-head {
    max-width: 100%;
    padding: 0 15px;
  }

  .career-title {
    font-size: 36px;
  }

  .career-meta {
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }

  .career-buttons {
    margin-top: 20px;
  }

  .career-buttons .btn {
    width: 100%;
    font-size: 14px;
    padding: 10px 20px;
  }

  /* Job Description Section */
  .job-des {
    padding: 30px 15px;
  }

  .job-des h3 {
    font-size: 28px;
  }

  .job-des p {
    font-size: 14px;
  }

  .job-des .job-res,
  .job-des .job-qual {
    margin-top: 20px;
  }

  .job-des h4 {
    font-size: 18px;
  }

  .job-des ul li {
    font-size: 14px;
    padding-left: 15px;
  }

  .job-des ul li::before {
    font-size: 12px;
    top: 4px;
  }
}

.curious-head-contact h3 {
  font-size: 28px;
  padding-bottom: 20px;
}

.blog-section h3 {
  font-size: 20px;
}

@media (max-width: 768px) {
  .testimonial-head h2 {
    font-size: 48px;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .testimonial-head h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .testimonial-head p {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  /* Adjust testimonial rating */
  .testimonial-rating {
    align-items: center;
    gap: 10px;
  }

  .rating-item .number {
    font-size: 20px;
  }

  /* Testimonial Text */

  .testimonial-text p {
    font-size: 18px;
  }

  .testimonial-author h4 {
    font-size: 16px;
    text-align: center;
  }

  .testimonial-author p {
    font-size: 12px;
    text-align: center;
  }

  /* Testimonial Slider */
  .swiper-slide {
    padding: 15px;
  }

  /* Navigation Buttons */
  .testimonial-next-prev-icon {
    transform: translateX(-50%);
    gap: 5px;
  }
  .feature-text {
    text-align: left;
    margin-bottom: 24px !important;
  }
  .prop-img {
    /* height: 480px; */
    margin-bottom: 10px;
    max-height: 250px;
  }

  .testimonial-next-prev-icon button {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }
  .gallery-title {
    text-align: left;
    font-size: 28px;
  }
  .gallery-tag {
    text-align: left;
    font-size: 16px;
  }
  .header-gallery-section {
    padding: 10px;
  }
  .gallery-description {
    text-align: left;
  }
  .trends-head h2 {
    font-size: 18px;
    /* padding-top: 45px; */
  }
  .career-benefit {
    text-align: left;
  }
  .career-benefit h2 {
    font-size: 28px;
  }
}
.curious .about-btn-project {
  margin-top: 26px;
}
.personal-plan {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .explore-journey {
    /* height: 72vh !important; */
    height: 50vh !important;
  }
  .journey-head h2 {
    font-size: 34px;
    text-align: left;
  }
  .journey-head p {
    font-size: 14px;
    text-align: left;
  }
  .card-title a {
    font-size: 18px;
  }
  .card-text a {
    margin-top: 5px;
  }
  .career-head h2 {
    font-size: 40px;
  }
  .career-head p {
    font-size: 18px;
  }
  .career {
    height: 34vh;
        margin-top: 40px;
  }
  .openings-head p {
    font-size: 14px;
  }
  .openings {
    padding: 50px 0;
  }
  .project-details {
    height: 50vh;
  }
  .project-star-para {
    text-align: left;
  }
  .project-star h2 {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .project-star-key li {
    text-align: left;
  }
  .prop-img-text {
    bottom: 38px;
    left: -70px;
  }
}
@media (max-width: 768px) {
  .highlight-heading {
    font-size: 28px;
  }

  .prop-head h2 {
    font-size: 28px;
  }
  .values-head h2 {
    font-size: 28px;
  }
  .tart-head h2 {
    font-size: 28px;
  }
  .tart-head {
    text-align: left;
  }

  .form-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .testimonial-author {
    display: flex;
    flex-direction: column;
    text-align: center !important;
  }
  .construction-text h3 {
    text-align: left;
  }
  .find-home-head {
    margin-top: 50px;
  }
  .highlight-title {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  /* Adjust breakpoint as needed */
  .registration-header,
  .form-title,
  .form-description,
  .contact-text {
    text-align: left !important;
  }
}

#pagination {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: center; /* Centers pagination */
}

#pagination li {
  margin: 0 5px;
}

#pagination li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #d32f2f; /* Red color */
  border: 1px solid #d32f2f;
  border-radius: 30px;
  transition: all 0.3s ease;
}

#pagination li a:hover {
  background-color: #d32f2f;
  color: #fff;
}

/* Active Page */
#pagination li.active a {
  background-color: #d32f2f;
  color: white;
  font-weight: bold;
}

/* Disabled Pagination */
#pagination li.disabled a {
  color: #ccc;
  pointer-events: none;
  border-color: #ddd;
}

/* Responsive Design */
@media (max-width: 600px) {
  #pagination {
    flex-wrap: wrap;
  }

  #pagination li {
    margin-bottom: 5px;
  }
}
@media (max-width: 1024px) {
  .prop-img-container {
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
  }

  .prop-img {
    position: relative !important;
    width: 100% !important;
    max-width: 600px !important; /* Prevents stretching */
    text-align: center !important;
    margin-bottom: 20px !important;
    
  }

  .prop-img img {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
  }

  /* Text container positioned at the bottom */
  .prop-img-text {
    position: absolute !important;
    bottom: 0 !important; /* Move text to bottom */
    left: 0 !important;
    width: 100% !important;
    text-align: left !important;
    padding: 15px !important;
    background: rgba(0, 0, 0, 0.6) !important; /* Background for readability */
    border-radius: 0 0 10px 10px !important;
  }

  /* Title and Button in same row */
  .prop-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .prop-title h3 {
    font-size: 18px !important;
    color: white !important;
    margin: 0 !important;
    flex-grow: 1 !important;
  }

  /* Explore button aligned to right */
  .prop-explore-btn {
    display: flex !important;
    justify-content: flex-end !important;
  }

  .prop-explore-btn button {
    padding: 8px 16px !important;
    font-size: 14px !important;
    border-radius: 20px !important;
    background-color: red !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    transition: 0.3s ease-in-out !important;
  }

  .prop-explore-btn button:hover {
    background-color: #ff4d4d !important;
  }

  /* Paragraph text below title and button */
  .prop-img-text p {
    margin-top: 8px !important;
    color: #dcdcdc !important;
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .prop-img-text {
    padding: 10px !important;
  }

  .prop-title h3 {
    font-size: 16px !important;
  }

  .prop-explore-btn button {
    padding: 6px 12px !important;
    font-size: 12px !important;
    border-radius: 15px !important;
  }
}
/* Default styles (for larger screens) */
/* For tablets and small laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .contact-info .accordion-body {
    text-align: left;
  }
  .form-container {
    text-align: left;
  }
  .map-content {
    text-align: left;
  }
  .form-re {
    text-align: left;
  }
  .contact-link {
    margin-bottom: 10px;
  }
  .define-head {
    text-align: left;
  }
  .define-head h2 {
    font-size: 28px;
  }
}

/* For tablets and large mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .contact-info .accordion-body {
    text-align: left !important;
  }
  .form-container {
    text-align: left;
  }
  .map-content {
    text-align: left;
  }
  .form-re {
    text-align: left;
  }
  .define-head {
    text-align: left;
  }
  .define-head h2 {
    font-size: 28px;
  }
}

/* For mobile devices (max-width: 576px) */
@media (max-width: 576px) {
  .accordion-body {
    text-align: left;
  }
  .contact-info {
    text-align: left;
  }
  .form-container {
    text-align: left;
  }
  .map-content {
    text-align: left;
  }
  .form-re {
    text-align: left;
  }
  .define-head {
    text-align: left;
  }
  .define-head h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 1366px) {
  .find-home .container {
    margin-top: 150px;
  }
}
/* For small mobile devices (max-width: 400px) */
@media (max-width: 400px) {
  .contact-info .accordion-body {
    text-align: left;
  }
  .form-container {
    text-align: left;
  }
  .map-content {
    text-align: left;
  }
  .form-re {
    text-align: left;
  }
  .define-head {
    text-align: left;
  }
  .define-head h2 {
    font-size: 28px;
  }
}

.recent-blogs {
  padding: 60px 0;
}

h3.text-uppercase {
  letter-spacing: 1px;
  font-weight: bold;
}

.blog-tile {
  border: none;
}

.blog-thumb {
  position: relative;
  width: 100%;
  height: 350px; /* Fixed height for all images */
  overflow: hidden;
  border-radius: 12px;
}

.blog-thumb a {
  display: block;
  height: 100%;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
  border-radius: 12px;
}

.blog-thumb:hover img {
  transform: scale(1.05);
}

/*************CALL BACK FORM**********/
.cb-section {
  background-image: url("../images/dvd.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0;
  color: white;
  margin-bottom: 7px;
}

.cb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 11, 29, 0.7);
}

.cb-form-wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.cb-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.cb-input {
  height: 50px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.cb-submit-btn {
  height: 50px;
  background-color: #0d6efd;
  color: white;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  padding: 0 30px;
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 20px auto 0;
}

.cb-label {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.accordion-header {
  background-color: #f4b700;
  color: #000 !important;
}
.accordion-button collapsed {
  color: #000;
}
.accordion-button:not(.collapsed) {
  background-color: #f4b700; /* Maintain red background when open */
  color: #000;
}

.custom-accordion .accordion-button {
  background-color: #f4b700;
  color: rgb(30, 30, 30);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: red;
  color: rgb(0, 0, 0);
}

/*************ENQUIRY FORM***********/
.ub-enquiry-button {
  position: fixed;
  right: 16px;
  top: 30%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background-color: red;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  z-index: 999;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.ub-enquiry-button:hover {
  background-color: #0277bd;
}

.ub-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.ub-popup-form {
  display: flex;
  width: 90%;
  max-width: 750px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.ub-sidebar {
  background-color: #e6d133;
  color: #000;
  padding: 30px 20px;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ub-stat-item {
  margin: 20px 0;
  text-align: center;
}

.ub-stat-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.ub-social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.ub-social-icon {
  background-color: white;
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  text-decoration: none;
  font-size: 18px;
}

.ub-form-content {
  background-color: white;
  padding: 30px;
  width: 60%;
}

.ub-company-logo {
  text-align: center;
  margin-bottom: 5px;
}

.ub-company-logo img {
  height: 100px;
}

.ub-tagline {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-size: 14px;
}

.ub-form-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.ub-form-group {
  margin-bottom: 15px;
}

.ub-form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.ub-form-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: white;
}

.ub-submit-btn {
  background-color: #e6d133;
  color: #000;
  border: none;
  padding: 12px 20px;
  width: 100%;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.ub-submit-btn:hover {
  background-color: #0277bd;
}

.ub-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  z-index: 1001;
}

.ub-close-btn:hover {
  color: #000;
}

@media (max-width: 768px) {
  .ub-popup-form {
    flex-direction: column;
    max-width: 400px;
  }

  .ub-sidebar {
    display: none;
  }

  .ub-form-content {
    width: 100%;
  }
}

/**************INSTRAGRAM-TESTIMONIAL8888***************/
.tes-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  position: relative;
  display: inline-block;
  color: #000000;
}

.section-title h2::after {
  content: "";
  height: 3px;
  width: 60%;
  background: #e74c3c;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 33.3333%;
  padding: 10px;
  transition: transform 0.5s ease;
}

.testimonial-slide.middle {
  transform: scale(1.05);
}

.testimonial-content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
}

.iframe-container {
  position: relative;
  padding-bottom: 125%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.iframe-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  top: 0;
  left: 0;
}

.testimonial-author {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.testimonial-position {
  font-size: 14px;
  color: #000000;
  justify-content: center;
  text-align: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.slider-arrow.left {
  left: -20px;
}

.slider-arrow.right {
  right: -20px;
}

@media (max-width: 768px) {
  .testimonial-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 500px) {
  .testimonial-slide {
    flex: 0 0 100%;
  }

  .slider-arrow {
    font-size: 24px;
    padding: 6px;
  }

  .slider-arrow.left {
    left: 0;
  }
  .slider-arrow.right {
    right: 0;
  }
}

/**********************/

.cube {
  width: 30px;
  height: 40px;
  border-radius: 20px;
  background:transparent;
  border: 2px solid rgb(0, 0, 0);
  position: relative;
  overflow: hidden;
  color: red;
  font-size: 20px;
  position: fixed;
  bottom: 95px;
  right: 35px;
  cursor: pointer;
  background-color: yellow;
}
.barr {
  width: 5px;
  height: 10px;
  background: #000000;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  opacity: 1;
  animation: fall 2s linear infinite;
  border-radius: 5px;
  margin-top: 5px;
}

@keyframes fall {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: calc(100% - 20px); /* 100% container height - bar height */
    opacity: 0;
  }
}

/* Center at bottom for mobile screens */
@media (max-width: 768px) {
  .scroll-toggle-btn {
    right: 50%;
    transform: translateX(50%);
  }
  .cube{
    bottom: 46px;
    left: 300px;
  }
}

.accordion-body {
  font-size: 19px;
}

.accordion-button {
  font-size: 19px!important;
}

/**/
.accordion-body {
  font-size: 19px;
  color: #000;
}

/* Main Section */
.review-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  min-height: 386px; /* <--- added minimum height */
}

/* Fix height issue only inside review carousel */
#reviewCarousel .carousel-item {
  height: auto;
}

/* Review Card */
.review-card {
  border-radius: 12px;
  padding: 20px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  max-width: 600px;
}

/* Quote symbol */
.review-quote {
  font-size: 45px;
  color: #d3d3d3;
  margin-bottom: 10px;
}

/* Text */
.review-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #ccc;
}

/* Author */
.review-author {
  margin-top: 10px;
}

.review-author-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.review-author-role {
  font-size: 0.9rem;
  color: #999;
}

/* Controls (Arrows) */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 70% 70%;
  background-color: transparent;
}

/* Indicators (dots) */
.carousel-indicators {
  margin-top: 20px;
  margin-bottom: 0 !important;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 0.5;
  border: none;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-indicators .active {
  opacity: 1;
}

.faq-section{
  margin-top: 30px;
}




/**********************COMMERCIAL .PHP*******************/
.visual-showcase {
  height: 76vh;
  width: 100%;
  background-image: url("../images/ab3.jpg");
  background-size: cover;
  background-position: center left;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-top: 80px;
}

.visual-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(224, 218, 218, 0.6); */
  z-index: 1;
}

.showcase-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.media-heading h2 {
  font-size: 78px;
  font-weight: 700;
  color: white;
}

.media-heading p {
  font-size: 18px;
  color: white;
  max-width: 800px;
}

@media (max-width: 768px) {
  .visual-showcase {
    height: 72vh !important;
  }
  .media-heading h2 {
    font-size: 34px;
    text-align: left;
  }
  .media-heading p {
    font-size: 14px;
    text-align: left;
  }
}





.project-tabs {
    text-align: center;
    margin-bottom: 30px;
  }
  .tab-btn {
    padding: 10px 25px;
    margin: 0 10px;
    background: #eee;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 5px;
  }
  .tab-btn.active {
    background: #ff0000;
    color: #fff;
  }
  .project-content {
    transition: all 0.3s ease;
  }

  @media (max-width: 768px) {
  .project-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    margin: 0 0 15px 0; /* bottom space only */
    width: 80%; /* optional: makes buttons consistent and centered */
    max-width: 300px;
  }
}




/***********FLOOR PLAN***************/
 /* Scope only to gallery to prevent affecting other sections */
    .bootstrap-gallery * {
    box-sizing: border-box;
  }

  .gallery-figure {
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
    border: 1px solid #ccc;
    margin: 0;
    padding: 0;
  }

  .gallery-figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    cursor: zoom-in;
    transition: all 0.3s ease;
    display: block;
  }

  /* Fullscreen Zoom */
  .gallery-toggle {
    display: none;
  }

  /*.gallery-toggle:checked + .gallery-figure {*/
  /*  position: fixed;*/
  /*  top: 0;*/
  /*  left: 0;*/
  /*  width: 100vw;*/
  /*  height: 100vh;*/
  /*  z-index: 1050;*/
  /*  background-color: rgba(0, 0, 0, 0.9);*/
  /*  display: flex;*/
  /*  align-items: center;*/
  /*  justify-content: center;*/
  /*  border: none;*/
  /*  margin: 0;*/
  /*  padding: 0;*/
  /*}*/

  /*.gallery-toggle:checked + .gallery-figure img {*/
  /*  object-fit: contain;*/
  /*  max-width: 100%;*/
  /*  max-height: 100%;*/
  /*  cursor: zoom-out;*/
  /*}*/



    /******FLOOR-PLAN-END***********/

    /* aminity-section */
    
.aminity-x p{
   color:#fff;
   font-weight:bold;
   font-size: 20px;
}
.aminity-x h2{
  font-size: 32px;
  font-weight:bold;
}

    
    .custom-icon-box {
      min-height: 240px !important;
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 35px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease-in-out;
    }

    .custom-icon-box:hover {
      transform: translateY(-8px);
    }

    .custom-icon-box i {
      font-size: 40px;
      color: red;
      margin-bottom: 20px;
    }

    .custom-icon-box h5 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #000;
    }

    .custom-icon-box p {
      font-size: 16px;
      color: #000;
    }

    .custom-container {
      padding-top: 50px;
      padding-bottom: 50px;
    }


    /*****************specification **********/
    .specification{
      background-color: rgba(255, 0, 0, 0.2);
      color: #fff;
      padding-bottom: 20px;
    }
    
    .spec-box {
      background-color: #121212;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
      margin-top: 40px;
    }

    .spec-title {
      font-size: 28px;
      font-style: italic;
      text-align: center;
      margin-top: 30px;
      padding-top: 30px;
    }

    .spec-heading {
      font-weight: bold;
      margin-bottom: 20px;
      font-size: 24px;
    }

    .spec-subheading {
      font-size: 18px;
      margin-bottom: 15px;
    }

    .spec-list {
      padding-left: 20px;
    }

    .spec-list li {
      margin-bottom: 10px;
    }