/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* New Color Palette 
   Primary: #1a2639 (Deep Navy Blue)
   Secondary: #00a8cc (Bright Teal)
   Dark: #0c1e35 (Dark Navy)
   Light: #f5f7fa (Clean Off-white)
   Accent: #fd3a69 (Vibrant Pink)
*/

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    /* background: linear-gradient(to right, #0c1e35, #1a2639); */
    background:  #f5f7fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    /* background: rgba(10, 25, 47, 0.95);
     */
        background:  #f5f7fa;
    backdrop-filter: blur(10px);
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5f7fa;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #00a8cc;
    text-shadow: 0 0 10px rgba(0, 168, 204, 0.3);
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: #00a8cc;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00a8cc;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #00a8cc;
}

.nav-link.active::after {
    width: 100%;
    background-color: #00a8cc;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}


.hanging-card {
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hanger-line {
  width: 2px;
  height: 30px;
  background-color: #555;
  margin-bottom: -10px;
  z-index: 1;
}

.hanging-body {
   background-color: #00a8cc;
    color: #f5f7fa;
    border: none;
  padding: 25px 15px;
  text-align: center;
   box-shadow: 0 4px 15px rgba(0, 168, 204, 0.4);
  border-radius: 10px;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
  /* border: 2px solid #800020; */
  width: 100%;
  max-width: 140px;
   transition: all 0.3s ease;
 
  transform-origin: top center;
}

.hanging-card .icon {
  font-size: 24px;
  color: #ffff;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.hanging-body span {
  color: #ffff;
  font-weight: 600;
  font-size: 14px;
}

.hanging-card:hover .hanging-body {
  transform: rotateZ(-3deg) scale(1.05);
  background-color: #fd3a69;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 58, 105, 0.5);
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.hanging-card:hover .icon,
.hanging-card:hover span {
  color: #fff;
}


.highlight-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
color: #1a2639;
}


.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-10px);
  border-color: #fd3a69;
  box-shadow: 0 12px 28px rgba(128, 0, 32, 0.1);
}

.highlight-number {
  font-size: 24px;
  font-weight: bold;
  color: #00a8cc;
  background: #f2e9ec;
  padding: 8px 16px;
  border-radius: 20px;
  position: absolute;
  top: -15px;
  left: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.highlight-card p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #2c2c2c;
  line-height: 1.7;
  letter-spacing: 0.3px;
}



/* Ensure same image height and object-fit for all amenity images */
#amenities .card-img-top {
  height: 200px; /* You can adjust this to 220px or 180px depending on your design */
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Optional hover effect */
#amenities .card-img-top:hover {
  transform: scale(1.03);
}


.price-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  border: 1px solid #eee;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.price-slide .price {
  font-size: 24px;
  font-weight: 700;
  color: #8a1c2e;
}





/* Hero Section */

/*  */
.hero {
  padding-top: 80px;
  margin-top: 2rem;
  width: 100%;
  position: relative;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Optional: Limit height on very small devices */
@media (max-width: 576px) {
  .hero-banner-img {
    max-height: 70vh;
  }
}

.hero-content {
    max-width: 800px;
    color: #f5f7fa;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    background: linear-gradient(to right, #f5f7fa, #00a8cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-button {
    background-color: #00a8cc;
    color: #f5f7fa;
    border: none;
       padding: 0.4rem 1rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    background-color: #fd3a69;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 58, 105, 0.5);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.floor-sample-section {
  padding: 80px 0;
  /* background: linear-gradient(to bottom, #5c0a0a, #8b0000); */
    background:  #f5f7fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
 color: #1a2639;
  position: relative;
}

.card-box {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #000;
}

.card-box:hover {
  transform: translateY(-8px);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.image-wrapper img {
  transition: transform 0.4s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-wrapper.fixed-size {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* or 3/2 depending on your layout */
  overflow: hidden;
  border-radius: 10px;
}

.image-wrapper.fixed-size img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 1.2rem;
  transition: 0.3s ease;
  opacity: 0;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
}

.overlay i {
  font-size: 2rem;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .overlay {
    font-size: 1rem;
  }

  .overlay i {
    font-size: 1.5rem;
  }
}


/* Section Styles */
.section {
    min-height: calc(100vh - 80px); /* Navbar height is approximately 80px */
    padding: 6rem 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.section:nth-child(odd) {
    background-color: #f5f7fa;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background-color: #eef2f7;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(0, 168, 204, 0.1), rgba(253, 58, 105, 0.1));
    top: -150px;
    right: -150px;
    z-index: 0;
}

.section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(0, 168, 204, 0.1), rgba(253, 58, 105, 0.1));
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a2639;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 800;
}

.section-divider {
    height: 6px;
    width: 120px;
    background: linear-gradient(to right, #00a8cc, #fd3a69);
    margin: 0.8rem auto 4rem;
    border-radius: 3px;
}


#contact {
  background-color: #f9f9f9;
  padding: 60px 20px;
  animation: fadeInUp 0.8s ease;
}





.form-description {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.callback-form {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  font-size: 14px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #e53935;
}

.submit-btn {
  padding: 13px 30px;
  font-size: 16px;
  font-weight: bold;
  background-color: #e53935;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #c62828;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .callback-form {
    flex-direction: column;
    align-items: stretch;
  }

  .submit-btn {
    width: 100%;
  }
}

/* Overall About Section */
.about-section {
  background-color: #fdfdfd;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Container with Flex */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Image on Left */
.about-image {
  flex: 1 1 45%;
  animation: slideInLeft 1s ease forwards;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Content on Right */
.about-content {
  flex: 1 1 50%;
  animation: slideInRight 1s ease forwards;
}

.section-title {
  font-size: 32px;
  color: #1a2639;
  margin-bottom: 10px;
  font-weight: 700;
}



.about-content p {
  color: #444;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 20px;
}

.about-content strong {
  color: #00a8cc;
}

.about-content em {
  font-style: italic;
  color: #333;
}

.btn-cta {
  background-color: #00a8cc;
    color: #f5f7fa;
    border: none;
       padding: 0.4rem 1rem;
    font-size: 1.1rem;
    border-radius: 30px;
  padding: 12px 24px;
  /* border-radius: 5px; */
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background-color: #c2185b;
}

/* Animations */
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image, .about-content {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 26px;
  }

  .about-content p {
    font-size: 15px;
  }

  .btn-cta {
    padding: 10px 20px;
  }
}


/* Footer Styles */
.site-footer {
background-color: #0c1e35;
    color: #f5f7fa;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
  border-radius:15px 15px 0px 0px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
      margin-bottom: 20px;

  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.tagline {
  color: #aaa;
  font-size: 14px;
  margin-top: 5px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  border-bottom: 2px solid #00a8cc;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00a8cc;
}

.footer-col p {
  font-size: 14px;
  color: #ccc;
  margin: 8px 0;
}

.footer-col i {
  margin-right: 8px;
  color: #00a8cc;
}

.qr-wrapper {
  display: flex;
  gap: 10px;
}

.qr-wrapper img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 4px;
}

/* Bottom Text */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .qr-wrapper {
    justify-content: center;
  }
}


/* Animations */
@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Additional styles for mobile menu */
body.no-scroll {
    overflow: hidden;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        /* background: rgba(10, 25, 47, 0.98); */
        background-color: #fff;
        backdrop-filter: blur(10px);
        width: 250px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
        gap: 0;
        padding: 2rem 0;
        max-height: 350px;
        border-radius: 0 0 10px 0;
        overflow-y: auto;
    }    .nav-item {
        margin: 0.8rem 0;
    }

    .nav-menu.active {
        left: 0;
        border-left: 3px solid #00a8cc;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 1rem 4%;
    }

    .logo a {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Additional padding for sections to account for fixed navbar */
#about, #services, #portfolio, #contact {
    padding-top: 100px; /* Navbar height + some extra space */
}
