*{
  box-sizing: border-box;
}

body {
  padding-top: 90px;
  background-color: #f8f7f4;
  font-family: 'Poppins', sans-serif;
}
.navbar {
  padding: 12px 0;
  background-color: white;
  height: 15vh;
}
@media (max-width: 991px) {
  .navbar-collapse.show {
    background-color: #000 !important; 
    border-radius: 8px;
    padding: 15px 10px;
  }
  .navbar-collapse.show .nav-link {
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar-collapse.show .nav-link.active {
    color: #0d6efd !important;
  }
}
.navbar-brand img {
  width: 100px;
}
.navbar .nav-call-btn{
  background-color:#EAB308;
}
.nav-call-btn:hover{
  background-color:#EAB308;
}
.nav-whatsapp-btn{
  background-color:#16A34A;
  color: white;
}
.nav-whatsapp-btn:hover{
  background-color:#16A34A;
}
.navbar .nav-link {
  color: black !important;
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: 0.3s;
}

.navbar .nav-link:hover {
  color:orangered !important;
  transform: translateY(-1px);
}
.navbar .nav-link.active {
  color: #0d6efd !important; 
  font-weight: 600;
  position: relative;
}
.navbar-btn .btn {
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-btn .btn:hover {
  transform: translateY(-2px);
}

.navbar-toggler {
  border:none;
  background-color: black;
  
}
.navbar-toggler-icon {
  filter: invert(1);
}

.whatsapp-float {
  position: fixed;
  bottom: 200px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  color: white;
}

.carousel-item img{
  width: 100%;
  height: 70vh;
}
.carousel-item img {
  height: 80vh;
  object-fit: cover;
  filter: brightness(70%);
}
.carousel-caption {
  bottom: 20%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-in-out;
}

.carousel-item.active .carousel-caption {
  opacity: 1;
  transform: translateY(0);
}
.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.carousel-caption p {
  font-size: 1.2rem;
  color: #f1f1f1;
  margin-bottom: 20px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}
.btn-custom{
  font-size: 20px;
  color: white;
  font-weight: 600;
}
.btn-custom:hover{
  background-color:rgb(12, 12, 161);
  color: white;
  cursor: pointer;
}

#properties {
  background-color: #f8f9fa;
}

#properties h2 {
  color: #111;
}

.property-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s ease;
  position: relative;
}

.property-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover img {
  transform: scale(1.08);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.property-card h4 {
  color: #111;
}

.property-card p {
  line-height: 1.6;
}

.property-card .btn-primary {
  background-color:#EAB308;
  border: none;
  transition: 0.3s ease;
}
.property-card .btn-primary:hover {
  background-color:#EAB308;
  transform: translateY(-2px);
}

.property-card .btn-success {
  background-color:#16A34A;
  border: none;
  transition: 0.3s ease;
}
.property-card .btn-success:hover {
  background-color:#16A34A;
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.property-card {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  border: 1px solid black;
}

.card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.card img {
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #ddd;
}

.card:hover {
  transform: translateY(-6px);
}

.projects-overview {
  padding-top: 80px;
  padding-bottom: 80px;
}

.project-card {
  border-radius: 16px;
  background: #fff;
  border: 2px solid #e0e0e0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: #0dcaf0;
}

.project-card h4 {
  color: #111;
}

.details-link {
  color: #d62828;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.2rem;
}

.card-link:hover .details-link {
  color: #ff4500;
  text-decoration: none;
}

.land-sale-section {
  position: relative;
  color: white;
  padding: 100px 0;
}

.land-sale-section .overlay {
  position: absolute;
  inset: 0;
  background-color: #0D1324;
}

.land-sale-section .container {
  position: relative;
  z-index: 2;
}

.land-sale-section h2 {
  color:blue;
  font-weight: 700;
}

.land-sale-section p {
  line-height: 1.7;
  color: #e2e6ea;
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

footer {
  background-color: rgb(34, 32, 32);
  color: white;
  padding: 60px 0 20px;
}

footer a {
  color: #f8f9fa;
  transition: 0.3s;
}
footer .address i{
  color:orange;
}
footer a:hover {
  color:black;
}

footer img {
  width: 130px;
}

footer .footer-info {
  text-align: center;
  border-bottom: 1px dotted grey;
}

/* about page */

.about-hero {
  position: relative;
  height: 70vh;
  background: url("assets/about-banner.avif") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}

.about-hero p {
  max-width: 700px;
  margin: 0 auto 20px;
}

/* Hero Button */
.about-hero .btn {
  border-radius: 30px;
  transition: all 0.3s ease;
}
.about-hero .btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.about-section h2 {
  font-size: 2.2rem;
}

.about-section p {
  font-size: 1.05rem;
}

.about-section .btn {
  border-radius: 30px;
}
.why-choose-section {
  background: #fff;
}

.choose-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/*  contact page  */
.contact-section {
  background-color: #f8f9fa;
}

.contact-section .form-control {
  border-radius: 10px;
}

.contact-section .btn-primary {
  border-radius: 8px;
  background-color: #007bff;
  border: none;
}

.contact-section .btn-primary:hover {
  background-color: #0056b3;
}

.contact-section i {
  margin-right: 10px;
}

.contact-header {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url('assets/about-banner.avif') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  padding: 100px 0;
  overflow: hidden;
}

.contact-header h1{
  font-size: 3rem;
  font-weight: 700;
}
.contact-header p {
  font-size: 1.2rem;
  margin: 0 auto;
  font-weight: 400;
}

/* Contact Section */
.contact-section {
  margin-top: -20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  padding: 40px;
}
.contact-info i {
  font-size: 1.5rem;
  color: #007bff;
  margin-right: 10px;
}
.contact-info p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}
.form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
}
.btn-primary {
  border-radius: 10px;
  padding: 10px 25px;
  font-weight: 500;
  background-color: #007bff;
  border: none;
  transition: 0.3s;
}
.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}
.social-icons a {
  color: #007bff;
  margin-right: 15px;
  font-size: 1.5rem;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #0056b3;
  transform: scale(1.1);
}
form label{
  font-size: 18px;
  font-weight: 600;
}
.contact-info{
  font-weight:500;
}

.contact-header {
  padding: 100px 0;
  overflow: hidden;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

.animate-fade {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.animate-slide {
  animation: slideUp 1.2s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

/* saraswathi section */

.saraswati-hero {
  background-image: url('assets/sarswathi-banner-img.jpeg');
  height: 70vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  object-fit: cover;
}

.saraswati-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.saraswati-hero p {
  font-size: 1.25rem;
  color: #f5f5f5;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

.saraswati-hero .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}

.saraswati-hero .btn-outline-light:hover {
  background-color: orangered;
  color: #000;
  transform: translateY(-3px);
}
.gallery-img{
  width: 100%;
  height: 350px;
}
.glow-btn, .glow-btn-alt {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}

.glow-btn {
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  color: #fff;
  border: none;
  animation: orangeGlow 1.6s infinite alternate;
}

@keyframes orangeGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.4), 0 0 20px rgba(255, 153, 0, 0.3);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.8), 0 0 45px rgba(255, 165, 0, 0.6);
    opacity: 0.8;
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.4), 0 0 20px rgba(255, 153, 0, 0.3);
    opacity: 1;
  }
}

.glow-btn-alt {
  color: #1c8c4b;
  border: 2px solid #1c8c4b;
  background: #fff;
  animation: greenGlow 1.6s infinite alternate;
}

@keyframes greenGlow {
  0% {
    box-shadow: 0 0 6px rgba(28, 140, 75, 0.3);
    background: #fff;
    color: #1c8c4b;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 25px rgba(28, 140, 75, 0.8);
    background: #1c8c4b;
    color: #fff;
    opacity: 0.85;
  }
  100% {
    box-shadow: 0 0 6px rgba(28, 140, 75, 0.3);
    background: #fff;
    color: #1c8c4b;
    opacity: 1;
  }
}

.location-section {
  background: linear-gradient(135deg, #0a183d, #233b6e);
  position: relative;
  overflow: hidden;
}

.location-section h2 {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.highlight-box {
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.highlight-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.highlight-box i {
  animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.amenities-section-modern {
  background: #f9fafc;
  padding-top: 80px;
  padding-bottom: 80px;
}

.amenities-section-modern h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
}

.amenity-card-modern {
  border-radius: 16px;
  color: #fff;
  padding: 40px 25px;
  transition: all 0.4s ease;
  height: 100%;
  background-size: 200% 200%;
  animation: gradientMove 6s ease infinite;
}

.amenity-card-modern .icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
  display: block;
}

.amenity-card-modern h5 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.amenity-card-modern p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f8f8f8;
}

.amenity-card-modern:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.gradient-green {
  background: linear-gradient(135deg, #43cea2, #185a9d);
}
.gradient-blue {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}
.gradient-yellow {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}
.gradient-pink {
  background: linear-gradient(135deg, #f953c6, #b91d73);
}
.gradient-purple {
  background: linear-gradient(135deg, #654ea3, #eaafc8);
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@media (max-width: 768px) {
  .amenity-card-modern {
    padding: 30px 20px;
  }
  .amenity-card-modern .icon {
    font-size: 2.4rem;
  }
}

.amenities-modern-section {
  background: #fdfdfd;
  position: relative;
}
.amenities-modern-section h2 {
  letter-spacing: 1px;
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}
.amenity-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border-top: 4px solid transparent;
}
.amenity-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-top: 4px solid #ff9900;
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
}
.amenity-box p {
  font-size: 0.95rem;
  color: #666;
  margin-top: 8px;
}

.project-approvals-section {
  background: linear-gradient(135deg, #0a0a0a, #1c1f2b);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.project-approvals-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25), transparent 70%);
  filter: blur(40px);
}
.project-approvals-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.25), transparent 70%);
  filter: blur(40px);
}

.project-approvals-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.divider {
  width: 90px;
  height: 3px;
  border-radius: 3px;
  margin: 0 auto 30px;
}

.approval-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 35px 20px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.approval-glass:hover {
  transform: translateY(-8px);
  border-color: #ffcc00;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.approval-glass .icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.approval-glass h5 {
  color: #fff;
  font-weight: 600;
}

.approval-glass p {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 8px;
}

.project-approvals-section .btn-primary {
  background: linear-gradient(90deg, #ffcc00, #ff8800);
  border: none;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-approvals-section .btn-primary:hover {
  background: linear-gradient(90deg, #ffbb00, #ffaa00);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.project-approvals-section .btn-success {
  background: linear-gradient(90deg, #25d366, #128c7e);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-approvals-section .btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .project-approvals-section h2 {
    font-size: 1.8rem;
  }
  .approval-glass {
    padding: 25px 15px;
  }
  .approval-glass .icon {
    font-size: 2.4rem;
  }
}

.gallery-card {
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.video-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(80%);
}

.video-card:hover {
  transform: translateY(-5px);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: white;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.video-card:hover .play-btn {
  color: #00c6ff;
  opacity: 1;
}

.glightbox-clean .gdesc-inner {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 10px;
}





