*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0), rgba(0,0,0,0)), url(images/banner.jpg);
    position: relative;
    z-index: 1;

}

/* Enable smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Style for the WhatsApp Icon */
#whatsapp-icon {
  position: fixed; /* Position it fixed to stay in place when scrolling */
  bottom: 20px; /* Distance from the bottom */
  right: 20px; /* Distance from the right */
  z-index: 1000; /* Make sure it's above other content */
  background-color: transparent; /* No background */
  border-radius: 50%; /* Round icon */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow for better visibility */
  padding: 10px; /* Space around the icon */
}

/* WhatsApp icon image styling */
#whatsapp-icon img {
  width: 60px; /* Set a fixed size for the icon */
  height: 60px;
  object-fit: cover;
}


.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0), rgba(0,0,0,0)), url(images/banner.jpg);
    background-position: center;
    background-size: cover;
    transition: opacity 1s ease-in-out; /* Fade transition only for the background */
    opacity: 1; /* Initially visible */
    z-index: 0;
}
nav, .text-box, .lead-form{
    position: relative;
    z-index: 1;
}


nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 4px;
    background: #ed0d6c;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

.nav-links .fa-close{
  display: none;
}

.fa-open{
  display: none;
}

.phone-no {
    display: inline-block;        /* Makes the link behave like a block-level element */
    padding: 10px 20px;           /* Adds padding to the button */
    background-color: #007bff;    /* Set the background color of the button */
    color: white;                 /* Set the text color */
    text-align: center;           /* Centers the text inside the button */
    border-radius: 5px;           /* Optional: Adds rounded corners */
    text-decoration: none;        /* Removes the underline */
    font-size: 16px;              /* Sets the font size */
    font-weight: bold;            /* Makes the text bold */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Adds a slight shadow for depth */
    transition: background-color 0.3s ease;  /* Smooth transition for hover effect */
}

.phone-no:hover {
    background-color: transparent;    /* Changes the button's background color on hover */
}

.phone-no:active {
    background-color: #0056b3;    /* Changes color when the button is clicked */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);  /* Slight shadow change when clicked */
}


.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: left;
}
.text-box h1{
    font-size: 55px;
}
.highlight {
    color: #ed0d6c;  /* This is a pink color; you can change it to your desired color */
    font-weight: bold; /* Optional: you can make the selected text bold */
    font-style: italic;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #093b61;
    background: #093b61;
    transition: 1s;
}

/* Ensure mobile responsiveness */
@media(max-width:700px) {
  .header {
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0), rgba(0,0,0,0)), url(images/banner.jpg);
    position: relative;
    z-index: 1;
  }

  .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0), rgba(0,0,0,0)), url(images/banner.jpg);
    background-position: center;
    background-size: cover;
    transition: opacity 1s ease-in-out; /* Fade transition only for the background */
    opacity: 1; /* Initially visible */
    z-index: 0;
  }

  .text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: left;
    padding-bottom: 200px;
    z-index: 0;
   }
.text-box h1{
    font-size: 32px;
    text-align: center;
}
.highlight {
    color: #ed0d6c;  /* This is a pink color; you can change it to your desired color */
    font-weight: bold; /* Optional: you can make the selected text bold */
    font-style: italic;
}

  .text-box p{
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 12px;
    color: #fff;
  }

    .hero-btn{
      display: none;
    }

   /* This is going to be for lead form display on mobile scree */

    .lead-form {
      position: absolute;
      align-self: center;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      max-width: 250px;
      width: 80%;
      margin-top: 180px;
      z-index: 0;
    }
.lead-form h2 {
    color: #093b61;
    margin-bottom: 20px;
    font-size: 16px;
}

.lead-form form {
    display: flex;
    flex-direction: column;
}

.lead-form input,
.lead-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.lead-form button {
    padding: 12px;
    background: #093b61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.lead-form button:hover {
    background: #055073;
    transition: 0.3s;
}



    .nav-links ul li{
      display: block;
    }

    .nav-links .fa-close{
      display: block;
      color: #fff;
      cursor: pointer;
    }
    
    .fa-open{
      display: block;
      color: #ed0d6c;
      size: 82px;
      cursor: pointer;
    }

    .nav-links{
      position: absolute;
      position: top;
      background: #ed0d6c;
      height: 100vh;
      width: 200px;
      top: 0;
      right: -200px;
      text-align: left;
      z-index: 5;
      transition: 1s;
    }
    .nav-links ul{
      padding: 45px 0 0 10px;
    }
    
}
/* Lead form styling */
.lead-form {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 300px;
}

.lead-form h2 {
    color: #093b61;
    margin-bottom: 20px;
    font-size: 20px;
}

.lead-form form {
    display: flex;
    flex-direction: column;
}

.lead-form input,
.lead-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.lead-form button {
    padding: 12px;
    background: #093b61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.lead-form button:hover {
    background: #055073;
    transition: 0.3s;
}

/* Section Container */
.about-cont {
    width: 80%;
    margin: 0 auto;           /* Centers the section horizontally */
    padding-top: 40px;        /* Adds padding on top */
    padding-bottom: 40px;     /* Adds padding at the bottom for spacing */
    display: flex;            /* Use Flexbox for horizontal layout */
    justify-content: space-between;  /* Space between text and image */
    align-items: center;      /* Aligns items vertically in the center */
}

/* About Text */
.about {
    flex: 1;                  /* Makes the text container take available space */
    padding-right: 20px;      /* Adds padding on the right side for spacing between text and image */
    text-align: left;         /* Aligns the text to the left */
}

/* About Image */
.about-image {
    flex: 1;                  /* Makes the image container take available space */
    padding-left: 20px;       /* Adds padding on the left side for spacing between the image and text */
}

.about-image img {
    width: 100%;              /* Ensures the image takes full width of its container */
    height: auto;             /* Keeps the aspect ratio of the image */
    border-radius: 8px;       /* Optional: Adds rounded corners to the image */
}
h1{
    font-size: 36px;
    font-weight: 600;
}
.about-cont .about-title {
    display: inline-block;  /* Makes the h1 behave like an inline element */
    position: relative;     /* Allows absolute positioning of the pseudo-element */
    padding-bottom: 20px;   /* Adds space between text and underline */
}

/* Create the half-width centered underline with ::after */
.about-cont .about-title::after {
    content: "";            /* Creates the pseudo-element */
    position: absolute;     /* Position it relative to the parent */
    bottom: 0;              /* Align it at the bottom of the text */
    left: 50%;              /* Position it in the middle */
    transform: translateX(-50%);  /* Center the underline */
    width: 40%;             /* Makes the underline half the width of the text */
    height: 6px;            /* Makes the underline thicker */
    background-color: #093b61;  /* Sets the color of the underline */
}

p{
    padding-top: 20px;
}

.gallery{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 100px;
}

.gallery .gallery-under{
    display: inline-block;  /* Makes the h1 behave like an inline element */
    position: relative;     /* Allows absolute positioning of the pseudo-element */
    padding-bottom: 20px;   /* Adds space between text and underline */
}

/* Create the half-width centered underline with ::after */
.gallery .gallery-under::after {
    content: "";            /* Creates the pseudo-element */
    position: absolute;     /* Position it relative to the parent */
    bottom: 0;              /* Align it at the bottom of the text */
    left: 50%;              /* Position it in the middle */
    transform: translateX(-50%);  /* Center the underline */
    width: 40%;             /* Makes the underline half the width of the text */
    height: 6px;            /* Makes the underline thicker */
    background-color: #093b61;  /* Sets the color of the underline */
}

.g-img{
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,auto);
    gap: 15px;
    max-width: auto;
}

.g-img img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.g-img img:hover{
    transform: scale(1.01);
    filter: brightness(1.2) contrast(0.6);
}

/* Gallery Section (Mobile View) */
@media (max-width: 700px) {

  .about-cont {
    width: 80%;
    margin: 0 auto;           /* Centers the section horizontally */
    padding-top: 40px;        /* Adds padding on top */
    padding-bottom: 40px;     /* Adds padding at the bottom for spacing */
    display: block;            /* Use Flexbox for horizontal layout */
    justify-content: space-between;  /* Space between text and image */
    align-items: center;      /* Aligns items vertically in the center */
}

/* About Text */
.about {
    flex: 1;                  /* Makes the text container take available space */
    padding-right: 20px;      /* Adds padding on the right side for spacing between text and image */
    font-size: 15px;
    text-align: left;         /* Aligns the text to the left */
}

/* About Image */
.about-image {
    flex: 1;                  /* Makes the image container take available space */
    padding-top: 10px;
    padding-left: 10px;       /* Adds padding on the left side for spacing between the image and text */
}

.about-image img {
    width: 100%;              /* Ensures the image takes full width of its container */
    height: auto;             /* Keeps the aspect ratio of the image */
    border-radius: 8px;       /* Optional: Adds rounded corners to the image */
}
h1{
    font-size: 36px;
    font-weight: 600;
}
.about-cont .about-title {
    display: inline-block;  /* Makes the h1 behave like an inline element */
    position: relative;     /* Allows absolute positioning of the pseudo-element */
    padding-bottom: 20px;   /* Adds space between text and underline */
}

/* Create the half-width centered underline with ::after */
.about-cont .about-title::after {
    content: "";            /* Creates the pseudo-element */
    position: absolute;     /* Position it relative to the parent */
    bottom: 0;              /* Align it at the bottom of the text */
    left: 20%;              /* Position it in the middle */
    transform: translateX(-50%);  /* Center the underline */
    width: 40%;             /* Makes the underline half the width of the text */
    height: 6px;            /* Makes the underline thicker */
    background-color: #093b61;  /* Sets the color of the underline */
}

p{
    padding-top: 20px;
}
  /* Adjust grid for smaller screens */
  .g-img {
    grid-template-columns: repeat(1,1fr); /* 2 columns on smaller screens */
  }
}


/* Popup Background */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* Popup Box */
.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 350px;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* Input Fields */
.popup-content input,
.popup-content textarea {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.popup-logo{
  width: 100px;
  padding: 10px;
}
/* Consent Checkbox */
.consent {
  display: flex;
  align-items: left;
  text-align: left;
  font-size: 9px;
  color: #333;
  margin: 10px 0;
  padding: 0;
}

.consent input {
  margin-right: 5px;
}

.phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
  margin: 10px auto;
}

/* Adjust the phone input field */
#phone {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Fix dropdown styling */
.iti {
  width: 85%;
}

.iti__selected-flag {
  padding-left: 10px;
}

/* Fix dropdown arrow alignment */
.iti__arrow {
  margin-left: 5px;
}

/* Submit Button */
.popup-content button {
  background: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.popup-content button:hover {
  background: #0056b3;
}
.enquiry-btns {
  display: flex;
  gap: 10px; /* Adds spacing between buttons */
  padding: 10px 50px; /* Padding from left and right */
  justify-content: center; /* Centers buttons */
}

.enquiry-btns button {
  flex: 1; /* Ensures equal width */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  font-size: 16px; /* Adjust font size for readability */
  border: none;
  background-color: #000;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  max-width: 350px; /* Limits button width on large screens */
}

.enquiry-btns button img {
  width: 20px; /* Adjust icon size */
  height: auto;
  margin-right: 8px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.enquiry-btns button, 
.open-popup-btn {
  animation: pulse 1.5s infinite ease-in-out;
}


/* Mobile responsiveness */
@media (max-width: 600px) {
  .enquiry-btns {
    flex-direction: column; /* Stack buttons vertically */
    align-items: center;
  }

  .enquiry-btns button {
    width: 100%; /* Make buttons full width */
    max-width: 300px; /* Prevents buttons from being too wide */
  }
}

/* Enquire Now Button */
.open-popup-btn {
  padding: 10px 15px;
  background: #D4AF37;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  margin: 20px auto;
  max-width: 200px; /* Limits width on large screens */
}

.open-popup-btn:hover {
  background: #55c0c6;
}

.popup h2{
  color: #000;
}

.redcol{
  color: rgb(255, 0, 0);
  font-weight: bold;
}
.amenities{
    width: 90%;
    border-radius: 8px;
    background-color: #093b61;
    background: opacity 0.5;
    color: #fff;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 40px;
}

.amenities .amenities-under{
    display: inline-block;  /* Makes the h1 behave like an inline element */
    position: relative;     /* Allows absolute positioning of the pseudo-element */
    padding-bottom: 20px;   /* Adds space between text and underline */
}

/* Create the half-width centered underline with ::after */
.amenities .amenities-under::after {
    content: "";            /* Creates the pseudo-element */
    position: absolute;     /* Position it relative to the parent */
    bottom: 0;              /* Align it at the bottom of the text */
    left: 50%;              /* Position it in the middle */
    transform: translateX(-50%);  /* Center the underline */
    width: 40%;             /* Makes the underline half the width of the text */
    height: 6px;            /* Makes the underline thicker */
    background-color: #fff;  /* Sets the color of the underline */
}

.amenities-container {
    display: grid;
    padding-top: 40px;
    grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
    gap: 20px; /* Space between items */
    justify-items: center;
  }
  
  .amenity {
    text-align: center;
  }
  
  .amenity-icon {
    width: 50px; /* Set a size for icons */
    height: 50px;
    margin-bottom: 10px;
  }
  
  h3 {
    font-size: 18px;
    margin: 0;
  }
  
  @media (max-width: 700px) {
    /* Adjust grid for smaller screens */
    .amenities-container {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
  }
  
  /* Floor Plans Section */
.floor-plans {
  width: 90%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 100px;
}

/* Section Heading */
.floor-plans .fp-under {
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}

/* Heading Underline */
.floor-plans .fp-under::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 6px;
  background-color: #7b5b3a;
}

/* Grid Layout */
.floor-plans-container {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 images per row */
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

/* Image Container */
.fp-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Image Styling (Initially Blurred) */
.fp-image-container img {
  width: 100%;
  height: 300px; /* Consistent size */
  object-fit: cover;
  display: block;
  filter: blur(3px); /* Initial Blur Effect */
  transition: filter 0.5s ease-in-out;
}

/* Image Text (Always Visible, Above Overlay) */
.image-text {
  position: absolute;
  bottom: 10px; /* Adjust position */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  white-space: nowrap;
  z-index: 2; /* Ensure it's above overlay */
}

/* Overlay (Hidden Initially, Slides Up on Hover) */
.overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom 0.5s ease-in-out;
  z-index: 1; /* Place below image-text */
}

/* Enquire Now Button */
.enquire-btn {
  background: #55c0c6;
  color: #000;
  padding: 10px 20px;
  border: none;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Hover Effects */
.fp-image-container:hover img {
  filter: blur(0px); /* Remove Blur on Hover */
}

.fp-image-container:hover .overlay {
  bottom: 0; /* Slide Overlay Up */
}

.fp-image-container:hover .enquire-btn {
  opacity: 1; /* Show Button */
}

/* Responsive Design */
@media (max-width: 768px) {
  .floor-plans-container {
      grid-template-columns: repeat(2, 1fr); /* 2 images per row */
  }
}

@media (max-width: 480px) {
  .floor-plans-container {
      grid-template-columns: repeat(1, 1fr); /* 1 image per row */
  }
}

.virtual-tour {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.virtual-tour .section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.video-container iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
  .virtual-tour .section-title {
    font-size: 28px;
  }

  .video-container iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .virtual-tour .section-title {
    font-size: 24px;
  }

  .video-container {
    padding: 10px;
  }

  .video-container iframe {
    height: 200px;
  }
}


.kcw-highlights {
  padding: 40px 20px;
  background-color: #f9f9f9; /* Soft background color */
  text-align: center;
  border-radius: 15px; /* Slight rounding of section edges */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.kcw-highlights h2 {
  font-size: 30px;
  color: #4b3f72; /* A soft, yet rich color for the heading */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 25px;
  font-weight: bold;
  letter-spacing: 1px; /* Slight spacing between letters */
}

.highlights-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive columns */
  gap: 20px;
  text-align: left;
}

.highlights-list li {
  padding: 20px;
  background-color: #ffffff; /* White background for each item */
  border-radius: 10px;
  border: 2px solid #f1f1f1; /* Soft border color */
  font-size: 16px;
  color: #4b3f72; /* Harmonizing with the heading color */
  font-family: 'Arial', sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow for list items */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlights-list li:hover {
  transform: translateY(-5px); /* Slightly lift the item on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Enhance shadow on hover */
}

.highlights-list li:before {
  content: "•"; /* Bullet point */
  font-size: 20px;
  color: #4b3f72; /* Same color as the text */
  margin-right: 15px;
  vertical-align: middle;
}

@media (max-width: 700px) {
  .highlights-list {
    grid-template-columns: 1fr 1fr; /* 2 columns on medium screens */
  }
}

@media (max-width: 480px) {
  .highlights-list {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
}



  .cta-section {
  position: relative;
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 50px;
  overflow: hidden;
  z-index: 1;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f2027cc, #203a43cc, #2c5364cc), 
              url(images/under.jpg) no-repeat center center / cover;
  opacity: 0.7;
  z-index: -1;
}

.cta-container {
  position: relative;
  z-index: 2;
}

  
  .cta-container {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
 
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
      transform: scale(1.08);
      box-shadow: 0 0 0 12px rgba(255, 193, 7, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
  }
  
  .cta-button {
    background-color: #ffc107;
    color: black;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    animation: pulse 2.5s infinite;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e0a800;
  }
  
  .deal-offer {
    display: flex;
    flex-direction: column; /* Stack the elements vertically */
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between the image and the button */
    padding: 60px 20px;
    color: #000;
  }
  
  .deal-image {
    width: 100%;
    max-width: 1000px; /* Set a max width for larger screens */
    text-align: center;
    display: flex; /* Use flexbox to center the image */
    justify-content: center; /* Center the image horizontally */
  }
  
  .deal-image img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Maintain the aspect ratio and cover the space */
  }
  
  .deal-container {
    text-align: center; /* Center the button */
  }
  
  .Offer-btn {
    background-color: #ffc107;
    color: black;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
  }
  
  .Offer-btn:hover {
    background-color: #e0a800;
  }
  
  /* Media Queries for Mobile-Friendly Design */
  @media (max-width: 768px) {
    .deal-offer {
      padding: 40px 15px;
    }
    
    .deal-image img {
      width: 100%; /* Ensure image takes up full width on small screens */
      height: auto;
    }
  
    .Offer-btn {
      font-size: 1rem; /* Slightly smaller button on mobile */
      padding: 12px 25px; /* Adjust button size for smaller screens */
    }
  }
  
  
  

  
  
  .contact-us {
    display: flex;
    background: linear-gradient( to right,rgba(0, 0, 0),rgba(0, 0, 0, 0)),url(images/banner.jpg) center no-repeat;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 20px;
    background-color: #f4f4f4;
    flex-wrap: wrap;
  }
  
  .contact-details {
    padding: 30px;
    width: 100%;
    height: 325px;
    max-width: 35%; /* Limits the width for a nice centered design */
    margin-right: 20px;
    text-align: left;
  }
  
  .map-container {
    padding: 30px;
    width: 55%;
    text-align: center;
  }
  
  h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .contact-details p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .map-container iframe {
    border-radius: 8px;
    border: 2px;
    width: 100%;
    height: 250px;
    max-width: 600px;
  }
  
  @media (max-width: 700px) {
    .contact-us {
      display: flex;
      background: linear-gradient( to right,rgba(0, 0, 0),rgba(0, 0, 0, 0)),url(images/banner.jpg) center no-repeat;
      justify-content: space-between;
      align-items: flex-start;
      padding: 40px 20px;
      background-color: #f4f4f4;
      flex-wrap: wrap;
    }
    
    .contact-details {
      padding: 30px;
      width: 100%;
      font-size: small;
      height: 325px;
      max-width: 100%; /* Limits the width for a nice centered design */
      margin-right: 20px;
      text-align: left;
    }
    
    .map-container {
      padding: 30px;
      width: 100%;
      text-align: center;
    }
    
    h2 {
      font-size: 28px;
      color: #fff;
      margin-bottom: 20px;
    }
    
    .contact-details p {
      font-size: 16px;
      color: #fff;
      margin-bottom: 10px;
    }
    
    .map-container iframe {
      border-radius: 8px;
      border: 2px;
      width: 100%;
      height: 250px;
      max-width: 600px;
    }
  }
  
  .footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 14px;
  }
  
  .footer p {
    margin: 0;
  }

  .footer a{
    color: #ed0d6c;
  }
  .footer a:hover{
    color: #fff;
  }
  