
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.hero-section-x {
  position: relative;
}

.hero-slider-x .swiper-slide img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.hero-slider-x .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.199);
}
.hero-overlay-x {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
}

.hero-title-x {
        font-size: 4rem;
    font-display: block;
    font-weight: 700;
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 15px;
    color: white;
    /* color: rgb(255, 255, 255); */

}

.hero-text-x {
  font-size: 18px;
  color: white;
  font-weight: bold;
  /* color: white; */
}

.hero-form-x {
    background: rgba(255, 255, 255, 0.2);border: 1px solid rgba(255, 255, 255, 0.3);

backdrop-filter: blur(10px);
  /* background: #fff; */
  padding: 20px;
  border-radius: 10px;
}

.hero-input-x {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.hero-btn-x {
  width: 100%;
  padding: 10px;
  background: black;
  color: #fff;
  border: none;
  border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  /* background-color: white; */
}

.swiper-pagination-bullet {
  background: #fff;
}


@media (max-width: 992px) {
  .hero-title-x {
    font-size: 36px;
  }
.about-img{
    height: 400px;
   width: 100%;
}
  .hero-slider-x .swiper-slide img {
    height: 450px;
  }
}


@media (max-width: 576px) {
.about-img{
    height: 300px;
   width: 100%;
}
  .hero-overlay-x {
    position: static;
    transform: none;
    padding: 20px 15px;
  }

  .hero-slider-x .swiper-slide img {
    height: 200px;
  }

  .hero-title-x {
    color: black;
    font-size: 26px;
  }

  .hero-text-x {
    color: black;
    font-size: 14px;
  }

  .hero-form-x {
    margin-top: 15px;
  }
}
  
  nav {
        position: sticky;
        top: 0;
        background:  white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        /* Removed border bottom */
        /* Removed box-shadow to eliminate any borderline effect */
        /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
        z-index: 1000;
    }

    nav .brand {
        color: #fdb714;
        font-weight: 900;
        font-size: 1.8rem;
        letter-spacing: 1.5px;
        user-select: none;
    }

    nav ul.menu {
        display: flex;
        gap: 1.4rem;
        list-style: none;
    }

    nav ul.menu li a {
        color: black;
        font-weight: 600;
        font-size: 1rem;
        padding: 6px 10px;
        border-radius: 4px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    nav ul.menu li a:hover,
    nav ul.menu li a:focus {
        background:black;
        color: white;
        outline: none;
    }

    .hamburger {
        display: none;
        font-size: 2rem;
        cursor: pointer;
        color: #ffffff;
        user-select: none;
    }

    @media (max-width: 768px) {
        .about-img{
    height: 300px;
   width: 100%;
}
        nav ul.menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 60px;
            right: 0;
            background-color: white;
            width: 200px;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

          .hamburger {
        display: none;
        font-size: 2rem;
        cursor: pointer;
        color: black;
        user-select: none;
    }
        }
.gallery{
    height: 300px !important;
    width: 100%;
    border-radius: 10px;
}

        nav ul.menu.active {
            display: flex;
        }

        .hamburger {
            display: block;
        }

        nav ul.menu li {
            margin: 10px 0;
        }
    }



/* banner start from here */
.banner {

    width: 100%;
    min-height: 100vh;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


@keyframes zoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.banner {
    position: relative;
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}


.banner-content h1 {
    font-size: 4rem;
    font-display: block;
    font-weight: 700;
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-ban {
    display: inline-block;
    padding: 12px 30px;
    background: black;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn-ban:hover {
    color: white;
    background:black;
    transform: translateY(-2px);
}

.glass {
width: 300px;
height: 200px;
background: rgba(255, 255, 255, 0.2);border: 1px solid rgba(255, 255, 255, 0.3);

backdrop-filter: blur(10px);
border-radius: 15px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
display: flex;
justify-content: center;
align-items: center;
}

form{
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    padding: 30px;
}


.form-input, .form-label{
    width: 100%;
    
    padding: 5px;
}

.btn-submit{
    font-size: 19px;
        padding: 6px;

    margin-top: 10px;
    border-radius: 10px;
    width: 100%;
border: none; 
   color: white;
    background-color: black;
}

.btn-submit:hover{
        transform: translateY(-2px);
    transition: 0.3s ease;

}
.Hospital-h1{
     color: black;
    text-transform: uppercase;
        font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 1rem;
    font-display: block;
    font-weight: 700;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.Hospital-h5{
     color: black;
    text-transform: uppercase;
        font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 2rem;
  text-align: center;
    font-display: block;
    /* margin-bottom: 25px;
    margin-top: 20px; */
    /* font-weight: 700; */
    font-family:Georgia, 'Times New Roman', Times, serif;
}
.astra-h1{
    color: black;
    text-transform: uppercase;
        font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 2.5rem;
    font-display: block;
    font-weight: 700;
    text-align: center;
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .banner {
        min-height: 70vh;
        background-position: center;
    }
    .banner-content h1 {
    font-size: 2rem;
    font-display: block;
    font-weight: 700;
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 15px;
}

.astra-h1{
        font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 2rem;
    font-display: block;
    font-weight: 700;
    text-align: center;
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 15px;
}
}

@media (max-width: 480px) {
    .banner {
        min-height: 60vh;
    }
    
       .banner-content  h1 {
    font-size: 2rem;
    font-display: block;
    font-weight: 700;
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 15px;
}

.astra-h1{
        font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 2rem;
    font-display: block;
    font-weight: 700;
    text-align: center;
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 15px;
}

}


#h1{
    display: 5;
    font-size: 3rem;
}
.col6 p{
      font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;

}

.col6-img img{
    border-radius: 10px;
}

.col6hover{
    position: relative;
    overflow: hidden;
        border-radius: 10px;

}



.astrathum-ratail{

}

.fa-solid{
    font-size: 26px;
    color: black;
      animation: zoom 1s infinite alternate;

}

/* 
@keyframes zoom {
  from { transform: scale(1); }
  to { transform: scale(1.0); }
} */

.retail-h5{
    font-size: 24px;
    color: black;
            font-family:Georgia, 'Times New Roman', Times, serif;
}

.retail-p{
    font-size: 22px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.invest-p{
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.invest-card{
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-p{
    /* font-weight: bold; */
      font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 1rem;
   
    /* text-align: center; */
    margin-bottom: 15px;
}

.amanities-background{
/* background: url('https://www.hotels.com.bd/wp-content/uploads/2025/01/WhatsApp-Image-2023-07-04-at-3.11.08-PM-2-900x550.jpeg') no-repeat center/cover; */
  

    width: 100%;
    /* min-height: 600px; */
background-attachment: fixed;
    position: relative;
   

}

    /* .amanities-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(53, 0, 0, 0.315);
} */

.amenities-card{
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100px;
    width: auto;
    border: 1px solid black;
}

.amenities-card i{
  animation: zoom 1s infinite alternate;

}
.amenities-card h5{
color: black;
}

@keyframes zoom {
  from { transform: scale(1); }
  to { transform: scale(1.5); }
}
/* .highlight-card {
    background-color: #004466;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.highlight-card p {
    font-size: 14px;
    line-height: 1.6;
} */


#high {
    /* background-color: #004466; */
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card p {
    font-size: 14px;
    line-height: 1.6;
}

.highlight-card:hover {
    border: 2px solid black;
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.card-body h5{
            font-family:Georgia, 'Times New Roman', Times, serif;

}

h5{
              font-family:Georgia, 'Times New Roman', Times, serif;
  
}
.gallerydiv{
    position: relative;
    overflow: hidden;
        border-radius: 10px;

}
.gallery{
    height: 350px;
    width: 100%;
    border-radius: 10px;
}
.gallery:hover{
    transition: cubic-bezier(0.55, 0.055, 0.675, 0.19) 1s;
    transform: scale(1.5);
}

footer{
    color: white;
    margin-top: 20px;
    padding: 20px;
    background-color: black;
}

 .whatsapp-float {
      position: fixed;
      bottom: 20px;  
      right: 0px;
      /* right: 20px;    */
      width: 60px;
      height: 60px;
      background-color: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
      z-index: 1000;
      transition: transform 0.2s;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float img {
      width: 35px;
      height: 35px;
    }
.btn-realestate:hover{
color: black;
}


/* sidebar popup */
#openFormLink {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(270deg, #000000, #1b1b1a, #000000);
    background-size: 600% 600%;
    color: white;
    padding: 12px 16px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    user-select: none;
    animation: gradientAnimation 3s ease infinite;
    z-index: 1001;
}

#enquiryFormPanel {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

#enquiryFormPanel.open {
    right: 0;
}

#enquiryFormPanel header {
    padding: 1rem;
    background: black;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.closeBtn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

#enquiryForm {
    padding: 1rem;
}

#enquiryForm label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

#enquiryForm input,
#enquiryForm textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#enquiryForm button {
    margin-top: 15px;
    padding: 10px;
    background:black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


