/* General Reset */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* Navbar Styling */
.navbar {
  transition: all 0.3s ease-in-out;
}

.navbar .nav-link {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.nav-item:hover {
  background-color: transparent; 
  padding: 0; 
  border-radius: 0; 
}

.nav-link {
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  position: relative; 
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: #7FB33C; /* Green underline */
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%; 
}

.nav-link:hover {
  color: #7FB33C; 
}

.contact-us {
    text-decoration: none;
    background:#7FB33C;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.contact-us:hover {
   background: linear-gradient(135deg,#92df2f, #6c8a45);

    color: #fff;
}

.phone-icon {
  margin-right: 3px;    
  color:white;
  animation: ring 1s infinite ease-in-out; /* Apply animation */
}
/* Keyframes for ringing effect */
@keyframes ring {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(5deg); }
  60% { transform: rotate(-5deg); }
  70%, 100% { transform: rotate(0deg); }
}
/*nav-ends*/


/*banner*/
.banner {
  background-image: url("../images/godrej-sigma3-banner.jpg");
    background-size: cover;
    background-position:top;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
    position: relative;
}

/*bANNER-end*/






/*about-us*/

/* Headings & Text */
.about-content h2 {
  font-weight: 300;
  color: #7FB33C;
}
.about-content p {
  line-height: 1.6;
}
.icon-card{
    background-color: #7FB33C;
}
.icon-text{
    background-color:#e4e3e2;
}
.icon-color{
    color:#7FB33C;
}


/* Location Section Styling */
.location-section{
    background-color: #e4e3e2;
}
.location-text {
  background: #7FB33C; /* Eldeco Green */
  color: #fff;
  border-radius: 1rem 0 0 1rem; /* Rounded Left Corners */
}

/* Map Styling */
iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* Icons */
.location-icons {
  color: #7FB33C;
}

/* List Items */
.location-text ul li {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-text ul li:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Carousel Styling */
.carousel-item img {
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.carousel-item img:hover {
  transform: scale(1.05);
}

/* Custom Nav Buttons */
.custom-nav {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.custom-btn {
  background:rgba(127, 179, 60, 0.8);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.custom-btn:hover {
  background:linear-gradient(135deg,#92df2f, #6c8a45);
  transform: scale(1.1);
}
.custom-btn i {
  color: #fff;
  font-size: 20px;
}

/**/


.card {
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #f8fff9; /* light greenish background */
  border:1px dashed #7FB33C;
}

.card:hover {
  color: white;
  background-color: #7FB33C;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon img {
  border: 2px dashed #7FB33C; /* circle border like your image */
  padding: 15px;
  background-color: #ffffff; /* optional white circle behind icon */
}


.project-content{
  background-color: #eee9e9;
}

.project-content 
    .row {
  margin-left: 0;
  margin-right: 0;
}
.carousel-item img {
  height: 400px; /* Change from 90vh for half-column */
  object-fit: cover;
}

.heading-color{
    color: #7FB33C;
  
}

/*gallery-section*/
.gallery-section {
    background-color: #e4e3e2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* ✅ Set a fixed height */
.gallery-item img {
  width: 100%;
  height: 250px; /* adjust height as needed */
  object-fit: cover; /* crop nicely */
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(127, 179, 60, 0.4); /* green overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}
/*gallery-end*/



/*floor-plan*/

.floor-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  justify-content: center; /* Center Image Horizontally */
  align-items: center; /* Center Image Vertically */
}

.floor-card img {
  width: 100%; /* Full width for better alignment */
  transition: transform 0.4s ease;
  border-radius: 10px;
}

/* White transparent overlay */
.white-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Match full image width */
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* 80% White */
  border-radius: 10px;
}

/* Center text */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color:#7FB33C;
  border-radius:20px;
}
.overlay-text a {
  text-decoration: none;
}
.overlay-text:hover{
  background-color: #000;
}
.bhk-floor{
  background-color: #7FB33C;
  color: #fff;
}

/*floor-plan-end*/



/*price-list*/
.counter-section {
  background: linear-gradient(rgba(9, 12, 5, 0.8), rgba(52, 54, 49, 0.6)),
              url("../images/price_list_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment:fixed; /* ✅ image scroll hogi */
}


.counter-card {
  position: relative;
  background: #fff;
  padding: 30px 20px;
  border-radius: 5px;
  box-shadow: 10px 10px 0px #7FB33C; /* green Shadow Effect */
  transition: transform 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-8px);
}



.counter-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.counter-card .count-1 {
  border-bottom: 2px dotted black; 
  padding-bottom: 5px;
  display: inline-block; /*  border only text  */
  font-weight: 500; 

}
.counter-card .count {
  font-size: 18px;
  font-weight: bold;
  background: #7FB33C;
  color: #fff;
  display: block;       /* ✅ Button ab next line me aayega */
  padding: 5px 20px;
  border-radius: 3px;
  text-decoration: none;
  margin-top: 10px;     /* Space between text and button */
}
.count:hover{
  background-color: #000;
}
/*price-list-end*/


/* Section Background */
.contact-section {
  background-image: url("../images/floor-plan-background-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Contact Card (White Background) */
.contact-card {
  background: #fff;
  border-radius: 5px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: auto;
}

/* Input Fields */
.form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 12px;
  box-shadow: none;
}
.form-control:focus {
  border-color: #7FB33C;
  box-shadow: 0 0 5px rgba(127, 179, 60, 0.2);
}

/* Submit Button */
.btn-submit {
  background: #7FB33C; 
  color: #fff;
  padding: 14px;
  border: 1px solid #7FB33C;
  border-radius: 5px;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.btn-submit:hover {
  background:  linear-gradient(135deg,#92df2f, #6c8a45);
  border-color: #7FB33C;
  color: #000;
}

/* Available Flats Card (White Background) */
.bhk-card {
  background: #fff; /* White like contact card */
  border-radius: 5px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Flats List Items */
.bhk-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f5e9, #d8f7d0); /* Soft Green */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  font-weight: 500;
}

/* Hover Effect (Green Gradient) */
.bhk-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg,#92df2f, #6c8a45);
  color: #fff; /* Text white on hover */
}

/* Flat Number Style */
.bhk-number {
  font-weight: bold;
  font-size: 1.3rem;
  color: #7FB33C;
  background: #e3f2fd;
  padding: 5px 15px;
  border-radius: 30px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Change number color on hover */
.bhk-item:hover .bhk-number {
  background: #fff;
  color: #7FB33C;
}

/* Heading Color */
.bhk-heading {
  color:#7FB33C;
}

    



/* Footer Section */
.footer-section {
  background:#292727;
  padding: 40px 0 20px;
  color: white;
  font-size: 14px;
}

.footer-section h5 {
  color: #fff;
  font-style:bold;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color:#7FB33C;
}

.footer-line {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin: 20px auto;
  width: 90%;
}

.footer-contact li {
  margin-bottom: 8px;
}

/* Social Icons */
.social-icons a {
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  color: #7FB33C;
  transform: scale(1.2);
}
/*footer-ends*/



/* Popup Trigger Button */
.popup-trigger {
  background: linear-gradient(135deg,#92df2f, #6c8a45);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  transition: all 0.3s ease-in-out;
}
.popup-trigger:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 25px  rgba(127, 179, 60, 0.2);
}

/* Modal Content Glass Effect */
.modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  animation: popupFade 0.4s ease-in-out;
}

/* Modal Header Gradient */
.modal-header {
  background: linear-gradient(135deg,#92df2f, #6c8a45);
  border-radius: 20px 20px 0 0;
}

/* Input Fields */
.form-control {
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  transition: border 0.3s ease;
}
.form-control:focus {
  border: 2px solid #7FB33C;
  box-shadow: 0 0 8px rgba(34, 182, 103, 0.3);
}

/* Submit Button */
.popup-button-color {
  background:  linear-gradient(135deg,#92df2f, #6c8a45);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  border: none;
}
.popup-button-color:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(127, 179, 60, 0.2);
}

/* Popup Animation */
@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
