/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* Luxe-inspired neutral color */
  text-align: center;
  height: 40vh;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.hero span {
  color: #d4a373; /* Luxe-inspired gold accent */
}

.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 10px;
  max-width: 600px;
  line-height: 1.6;
}

/* Meet Designer Section */
.meet-designer-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-image: url('assets/img/bg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: #fff;
  padding: 20px;
}

/* Container: Align Left and Right Sections */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center-align for smaller screens */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px; /* Add space between image and form */
}

/* Left Content: Background and Tagline */
.hero-image {
  flex: 1;
  height: 400px; /* Default height for larger devices */
  background-size: cover;
  background-position: center;
}

/* Designer Form */
.designer-form {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  margin: auto;
}

.designer-form span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 5px;
  color: #d4a373; /* Luxe-inspired gold accent */
}

.designer-form form {
  display: flex;
  flex-direction: column;
}

.designer-form label {
  margin-top: 10px;
  font-weight: 500;
  text-align: left;
}

.designer-form input,
.designer-form select {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.terms-container {
  text-align: left;
  margin: 10px 0;
  font-size: 0.9rem;
}

.designer-form button {
  padding: 10px;
  width: 100%;
  background-color: #d4a373;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.designer-form button:hover {
  background-color: #b78a5a;
}

/* Responsive Design for Small and Extra Small Devices */
@media (max-width: 768px) {
  .meet-designer-section {
    flex-direction: column;
    height: auto;
  }

  /* Ensure the image occupies only the top section */
  .hero-image {
    width: 100%;
    height: 300px; /* Adjust the image height for small devices */
    background-size: cover;
  }

  /* Place the form below the image */
  .designer-form {
    width: 100%;
    padding: 20px;
    margin-top: 20px; /* Push form down below the image */
  }
}


@media (max-width: 480px) {
  .hero-image {
    height: 250px; /* Smaller height for extra small devices */
  }

  .designer-form {
    padding: 15px;
    margin-top: 0; /* Reduce extra spacing */
  }

  .designer-form span {
    font-size: 1.5rem; /* Slightly smaller font for extra small devices */
  }

  .designer-form input,
  .designer-form select {
    font-size: 0.9rem; /* Smaller input font size for smaller screens */
  }

  .designer-form button {
    font-size: 0.9rem; /* Smaller button font size for extra small devices */
    padding: 8px; /* Reduced padding for smaller screens */
  }
}


.services-container h1 {
  margin-top: 50px;
}
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
  overflow-x: hidden;
}

/* Navigation Bar Styling */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0b2e24;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* Logo Styling */
.nav-logo img {
  width: 140px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-item {
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

/* Bars Icon for Mobile */
.bars {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #0b2e24;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    width: 200px;
    border-radius: 8px;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .bars {
    display: block;
  }

  .nav-link {
    font-size: 16px;
    margin: 5px 0;
  }
}




/* WhatsApp Floating Button Styling */
.whatsapp_wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.whatsapp_wrapper:hover {
  background-color: #20c05a;
}

.haptik-icon-container {
  color: white;
  font-size: 28px;
}

/* Media Queries for responsiveness */

/* For small devices (max-width: 768px) */
@media (max-width: 768px) {
  .whatsapp_wrapper {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .haptik-icon-container {
    font-size: 24px;
  }
}

/* For extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .whatsapp_wrapper {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }

  .haptik-icon-container {
    font-size: 20px;
  }
}

/* Flexbox layout for bio image and text */
.bio-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: -11rem;
  overflow: hidden;
  padding: 1rem;
}

.bio-image {
  flex: 1;
  padding-right: 1rem;
  animation: fadeInLeft 1.5s ease;
  padding-top: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bio-image img {
  width: 100%;
  max-width: 270px;
  height: auto;
  border-radius: 200px;
  border: 4px solid #082567;
  border-style: inset;
  margin-top: 70px;
  animation: bounceEffect 2s infinite;
}

.bio-text {
  flex: 2;
  animation: fadeInRight 1.5s ease;
  text-align: justify;
}

.bio-text h1 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: black;
  padding-top: 153px;
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
}

.bio-text p {
  font-size: 20px;
  line-height: 1.6;
  color: black;
  animation: textSlideUp 1.5s ease;
  text-justify: auto;
}

/* Media Queries for bio section adjustments */

/* For tablets and smaller screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .bio-container {
    flex-direction: column;
    align-items: center;
    margin-top: -5rem;
  }

  .bio-image {
    padding-top: 50px;
    padding-right: 0;
  }

  .bio-image img {
    max-width: 220px;
    margin-top: 50px;
  }

  .bio-text {
    text-align: justify;
    padding-top: 20px;
  }

  .bio-text h1 {
    font-size: 30px;
    padding-top: 0;
  }

  .bio-text p {
    font-size: 18px;
  }
}

/* For extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .bio-container {
    margin-top: 0;
    padding: 1rem;
  }

  .bio-image img {
    max-width: 150px;
  }

  .bio-text h1 {
    font-size: 24px;
  }

  .bio-text p {
    font-size: 16px;
  }
}

/* Keyframes for animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceEffect {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes textSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Section Styling */
.luxury-why-choose {
  background-color: #fff; /* White background */
  color: #000; /* Black text */
  padding: 60px 20px;
  text-align: center;
}

.luxury-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.luxury-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.luxury-highlight-text {
  color: #d4af37; /* Gold color */
  font-style: italic;
}

.luxury-feature-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

.luxury-feature-card {
  background-color: #fff; /* White card background */
  border: 2px solid #d4af37; /* Gold border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.luxury-feature-card h3 {
  font-size: 1.5rem;
  color: #000; /* Gold color */
  margin-bottom: 15px;
}

.luxury-feature-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333; /* Darker text color for readability */
}

/* Responsive Design */
@media (max-width: 1200px) {
  .luxury-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .luxury-feature-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .luxury-feature-cards-container {
    grid-template-columns: 1fr;
  }

  .luxury-section-title {
    font-size: 1.5rem;
  }

  .luxury-feature-card {
    padding: 20px;
  }
}



/* Portfolio Section */
.portfolio {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#portfolio .container {
  display: block;
}

.section-title,
.section-subtitle {
  display: block;
  width: 100%;
  text-align: center;
}

.process-heading {
  text-align: center;
}

.section-title {
  font-size: 3rem;
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #777;
  margin-bottom: 20px;
  font-style: italic;
}

/* Filter Button Styles */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.filter-btn {
  background-color: #f1f1f1;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.filter-btn:hover {
  background-color: #d4a000;
  color: white;
}

.filter-btn.active {
  background-color: #d4a000;
  color: white;
}

/* Portfolio Item Styles */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.portfolio-item:hover {
  transform: scale(1.02) translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.portfolio-info {
  padding: 10px;
  text-align: center;
}

.portfolio-info h3 {
  font-size: 1.2rem;
  font-weight: bold;
}

.portfolio-info p {
  font-size: 1rem;
  color: #555;
}

/* Media Queries */

/* For tablets and smaller screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .service-item {
    width: 220px; /* Adjust width for tablets */
  }

  .two {
    font-size: 1.4rem; /* Adjust heading size */
  }

  .how-it-works-section h1 {
    font-size: 1.8rem; /* Adjust heading size */
  }

  .steps-container {
    gap: 15px;
  }
}

/* For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .service-item {
    width: 180px; /* Adjust width for mobile */
  }

  .service-item img {
    max-width: 100%;
  }

  .services {
    gap: 15px; /* Reduce gap between items */
  }

  .two {
    font-size: 1.3rem; /* Adjust heading size for mobile */
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step {
    max-width: 100%;
  }

  .how-it-works-section h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.5rem; /* Adjust portfolio title size */
  }

  .section-subtitle {
    font-size: 1.2rem; /* Adjust portfolio subtitle size */
  }
}

/* For extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .service-item {
    width: 150px; /* Further reduce width for smaller screens */
  }

  .service-item img {
    max-width: 100%; /* Keep image at full width on small screens */
  }

  .two {
    font-size: 1.2rem; /* Adjust heading size */
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step {
    max-width: 100%;
  }

  .how-it-works-section h1 {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  align-items: center; /* Center align the buttons */
  gap: 15px; /* Add spacing between buttons */
  width: 50%; /* Optional: full width for alignment */
  margin: 0 auto; /* Centering on all screens */
}

/* Portfolio Filters - Larger Screens */
@media (min-width: 768px) {
  .portfolio-filters {
    flex-direction: row; /* Align buttons horizontally on larger screens */
    justify-content: center; /* Center buttons horizontally */
    width: 80%; /* Adjust width for better responsiveness */
  }
}

/* Filter Buttons */
.filter-btn {
  padding: 10px 30px;
  border: 2px solid #d4a000;
  background-color: transparent;
  color: #d4a000; /* Gold text */
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #d4a000; /* Gold background on hover */
  color: #ffffff; /* White text on hover */
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(300px, 1fr)
  ); /* Automatically adjusts columns */
  gap: 30px;
  margin-top: 30px;
  margin: 0 auto; /* Center grid on the page */
  padding: 0 10px;
}

/* Portfolio Item */
.portfolio-item {
  position: relative;
  overflow: hidden;
  color: #d4a000;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
  color: #d4a000;
}

/* Portfolio Info */
.portfolio-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #ebe8e0;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-top: 1px solid #faf9f6; /* Subtle gold border */
}

/* Change color of portfolio info titles */
.portfolio-info h3 a {
  color: #d4a000; /* Replace with your desired color */
  text-decoration: none;
}

.portfolio-info h3 a:hover {
  color: #d4a000; /* Replace with a hover color */
  text-decoration: underline;
}

.portfolio-item:hover .portfolio-info {
  opacity: 1;
  background: rgba(15, 12, 12, 0.85); /* Enhanced dark background */
}

.portfolio-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f3f0e8; /* Gold for titles */
  margin-bottom: 10px;
}

.data-title {
  color: #d4a000;
}

.portfolio-info p {
  font-size: 1rem;
  color: #efeadb;
}

/* Large Banner Image Styling */
.portfolio-banner {
  width: 100%;
  height: 400px; /* Adjust height as needed */
  overflow: hidden;
  position: relative;
  margin-bottom: 40px; /* Adds space below the banner */
}

.portfolio-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the space proportionally */
  filter: brightness(80%) contrast(1.1); /* Slight darkening for text overlay if needed */
}

/* Media Queries for Responsiveness */

/* For tablets and smaller screens */
@media (max-width: 1024px) {
  .portfolio {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .portfolio-filters {
    width: 80%;
    margin: 0 auto;
  }

  .portfolio-grid {
    margin-left: 40px;
    margin-right: 40px;
  }

  .portfolio-item {
    margin-bottom: 20px;
  }
}

/* For smaller devices (phones, etc.) */
@media (max-width: 768px) {
  .portfolio {
    padding: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .portfolio-filters {
    width: 100%;
    margin: 0;
  }

  .portfolio-grid {
    margin-left: 10px;
    margin-right: 10px;
  }

  .portfolio-item {
    margin-bottom: 15px;
  }

  .filter-btn {
    padding: 8px 20px;
    font-size: 1rem;
  }
}

/* For very small devices (mobile phones) */
@media (max-width: 480px) {
  .portfolio {
    padding: 10px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .portfolio-filters {
    width: 100%;
    margin: 0;
  }

  .portfolio-grid {
    margin-left: 10px;
    margin-right: 10px;
    grid-template-columns: 1fr; /* Single column grid */
  }

  .portfolio-item {
    margin-bottom: 10px;
  }

  .filter-btn {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
}

/* Global Styles */
body {
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}

/* Luxury Journey Section */
.luxury-journey {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 70px;
  max-width: 900px;
  margin: 0 auto;
  gap: 30px;
}

/* Left Content */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.left-content {
  max-width: 400px;
  border-left: 5px solid #d4a000;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  margin-top: 100px;
  margin-right: 100px;
}

.why-choose-title {
  font-size: 25px;
  line-height: 1.5;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.why-choose-title .highlight {
  color: #d4a000;
  font-weight: bold;
  display: inline-block;
  margin: 0;
}




/* WhatsApp Floating Button Styling */
.whatsapp_wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.whatsapp_wrapper:hover {
  background-color: #20c05a;
}

.haptik-icon-container {
  color: white;
  font-size: 28px;
}

/* Media Queries for responsiveness */

/* For small devices (max-width: 768px) */
@media (max-width: 768px) {
  .whatsapp_wrapper {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .haptik-icon-container {
    font-size: 24px;
  }
}

/* For extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .whatsapp_wrapper {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }

  .haptik-icon-container {
    font-size: 20px;
  }
}

/* Flexbox layout for bio image and text */
.bio-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: -11rem;
  overflow: hidden;
  padding: 1rem;
}

.bio-image {
  flex: 1;
  padding-right: 1rem;
  animation: fadeInLeft 1.5s ease;
  padding-top: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bio-image img {
  width: 100%;
  max-width: 270px;
  height: auto;
  border-radius: 200px;
  border: 4px solid #082567;
  border-style: inset;
  margin-top: 70px;
  animation: bounceEffect 2s infinite;
}

.bio-text {
  flex: 2;
  animation: fadeInRight 1.5s ease;
  text-align: justify;
}

.bio-text h1 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: black;
  padding-top: 153px;
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
}

.bio-text p {
  font-size: 20px;
  line-height: 1.6;
  color: black;
  animation: textSlideUp 1.5s ease;
  text-justify: auto;
}

/* Media Queries for bio section adjustments */

/* For tablets and smaller screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .bio-container {
    flex-direction: column;
    align-items: center;
    margin-top: -5rem;
  }

  .bio-image {
    padding-top: 50px;
    padding-right: 0;
  }

  .bio-image img {
    max-width: 220px;
    margin-top: 50px;
  }

  .bio-text {
    text-align: justify;
    padding-top: 20px;
  }

  .bio-text h1 {
    font-size: 30px;
    padding-top: 0;
  }

  .bio-text p {
    font-size: 18px;
  }
}

/* For extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .bio-container {
    margin-top: 0;
    padding: 1rem;
  }

  .bio-image img {
    max-width: 150px;
  }

  .bio-text h1 {
    font-size: 24px;
  }

  .bio-text p {
    font-size: 16px;
  }
}

/* Keyframes for animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceEffect {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes textSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

/* Services Section */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 10px;
}

/* Service Item Styles */
.service-item {
  text-align: center;
  width: 250px; /* Default width */
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
}

.service-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto 10px;
}

/* Decrease text size */
.service-item p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Keyframes for Sliding Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */

/* For tablets and smaller devices (767px and below) */
@media (max-width: 767px) {
  .two {
    font-size: 1.8rem; /* Adjusting the title font size */
  }

  .services {
    justify-content: center;
    padding: 0 20px;
  }

  .service-item {
    width: 100%; /* Take up full width on small devices */
    margin: 10px 0; /* Spacing between cards */
  }

  .service-item p {
    font-size: 1rem; /* Adjusting text size */
  }
}

/* How It Works Section */
.how-it-works-section {
  padding: 50px 20px;
}

.how-it-works-section h1 {
  margin-top: 50px;
}

.section-divider {
  width: 50px;
  height: 3px;
  background-color: #030302;
  margin: 10px auto 30px auto;
  border: none;
}

/* Steps Container */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 10px 0;
  align-items: center;
}

/* Step Cards */
.step {
  flex: 1 1 250px; /* Ensures cards are responsive with a minimum size of 250px */
  max-width: 300px; /* Limits the maximum size of cards */
  height: 350px; /* Fixed height for consistency */
  text-align: center;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; /* Includes padding and border in height */
}

.step:hover {
  transform: translateY(-5px);
}

.step img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 50%;
}

.step p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #212529;
  margin-top: 10px;
  text-align: center;
  word-wrap: break-word;
}

/* Arrow Styling */
.arrow {
  font-size: 2rem;
  color: #d4a373; /* Luxe-inspired gold accent */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Media Queries for Responsiveness */

/* For tablets and below (1024px and below) */
@media (max-width: 1024px) {
  .how-it-works-section h1 {
    font-size: 1.75rem;
  }

  .steps-container {
    justify-content: space-between;
  }

  .step {
    flex: 1 1 200px; /* Reduces the minimum size for tablets */
    max-width: 220px;
    height: 300px; /* Adjusted height for smaller screens */
  }

  .step img {
    width: 100px;
    height: 100px;
  }
}

/* For small screens (768px and below) */
@media (max-width: 768px) {
  .how-it-works-section h1 {
    font-size: 1.5rem;
  }

  .steps-container {
    justify-content: center;
  }

  .step {
    flex: 1 1 45%; /* Ensures 2 cards per row */
    max-width: 45%;
    height: 280px;
  }

  .step img {
    width: 90px;
    height: 90px;
  }

  .arrow {
    display: none; /* Hide arrows on small screens */
  }
}

/* For extra small screens (480px and below) */
@media (max-width: 480px) {
  .how-it-works-section h1 {
    font-size: 1.25rem;
  }

  .steps-container {
    display: flex;
    flex-wrap: wrap; /* Ensures items wrap to the next row */
    justify-content: space-between; /* Evenly spaces the items */
    gap: 10px; /* Adds spacing between the cards */
  }

  .step {
    flex: 1 1 calc(33.33% - 10px); /* 3 cards per row with a gap */
    max-width: calc(
      33.33% - 10px
    ); /* Prevents cards from exceeding their width */
    height: auto; /* Ensures cards adjust their height automatically */
    box-sizing: border-box; /* Includes padding and border in width/height */
    padding: 10px; /* Adds padding inside each card */
  }

  .step img {
    width: 100%; /* Image takes full width of the card */
    height: auto; /* Maintains aspect ratio */
    margin-bottom: 10px; /* Adds spacing below the image */
  }

  .step p {
    font-size: 0.9rem; /* Slightly smaller font for text */
    text-align: center; /* Centers the text */
  }

  /* Hide arrows on very small screens */
  .arrow {
    display: none;
  }
}

/* Portfolio Section */
.portfolio {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#portfolio .container {
  display: block;
}

.section-title,
.section-subtitle {
  display: block;
  width: 100%;
  text-align: center;
}

.process-heading {
  text-align: center;
}

.section-title {
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
  font-size: 3rem;
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
  font-size: 1.3rem;
  color: #777;
  margin-bottom: 20px;
  font-style: italic;
}

/* Filter Button Styles */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.filter-btn {
  background-color: #f1f1f1;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.filter-btn:hover {
  background-color: #d4a000;
  color: white;
}

.filter-btn.active {
  background-color: #d4a000;
  color: white;
}

/* Portfolio Item Styles */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.portfolio-item:hover {
  transform: scale(1.02) translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.portfolio-info {
  padding: 10px;
  text-align: center;
}

.portfolio-info h3 {
  font-size: 1.2rem;
  font-weight: bold;
}

.portfolio-info p {
  font-size: 1rem;
  color: #555;
}

/* Media Queries */

/* For tablets and smaller screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .service-item {
    width: 220px; /* Adjust width for tablets */
  }

  .two {
    font-size: 1.4rem; /* Adjust heading size */
  }

  .how-it-works-section h1 {
    font-size: 1.8rem; /* Adjust heading size */
  }

  .steps-container {
    gap: 15px;
  }
}

/* For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .service-item {
    width: 180px; /* Adjust width for mobile */
  }

  .service-item img {
    max-width: 100%;
  }

  .services {
    gap: 15px; /* Reduce gap between items */
  }

  .two {
    font-size: 1.3rem; /* Adjust heading size for mobile */
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step {
    max-width: 100%;
  }

  .how-it-works-section h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.5rem; /* Adjust portfolio title size */
  }

  .section-subtitle {
    font-size: 1.2rem; /* Adjust portfolio subtitle size */
  }
}

/* For extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .service-item {
    width: 150px; /* Further reduce width for smaller screens */
  }

  .service-item img {
    max-width: 100%; /* Keep image at full width on small screens */
  }

  .two {
    font-size: 1.2rem; /* Adjust heading size */
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step {
    max-width: 100%;
  }

  .how-it-works-section h1 {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  align-items: center; /* Center align the buttons */
  gap: 15px; /* Add spacing between buttons */
  width: 50%; /* Optional: full width for alignment */
  margin: 0 auto; /* Centering on all screens */
}

/* Portfolio Filters - Larger Screens */
@media (min-width: 768px) {
  .portfolio-filters {
    flex-direction: row; /* Align buttons horizontally on larger screens */
    justify-content: center; /* Center buttons horizontally */
    width: 80%; /* Adjust width for better responsiveness */
  }
}

/* Filter Buttons */
.filter-btn {
  padding: 10px 30px;
  border: 2px solid #d4a000;
  background-color: transparent;
  color: #d4a000; /* Gold text */
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #d4a000; /* Gold background on hover */
  color: #ffffff; /* White text on hover */
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(300px, 1fr)
  ); /* Automatically adjusts columns */
  gap: 30px;
  margin-top: 30px;
  margin: 0 auto; /* Center grid on the page */
  padding: 0 10px;
}

/* Portfolio Item */
.portfolio-item {
  position: relative;
  overflow: hidden;
  color: #d4a000;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
  color: #d4a000;
}

/* Portfolio Info */
.portfolio-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #ebe8e0;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-top: 1px solid #faf9f6; /* Subtle gold border */
}

/* Change color of portfolio info titles */
.portfolio-info h3 a {
  color: #d4a000; /* Replace with your desired color */
  text-decoration: none;
}

.portfolio-info h3 a:hover {
  color: #d4a000; /* Replace with a hover color */
  text-decoration: underline;
}

.portfolio-item:hover .portfolio-info {
  opacity: 1;
  background: rgba(15, 12, 12, 0.85); /* Enhanced dark background */
}

.portfolio-info h3 {
  font-size: 1.8rem;
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
  font-weight: 700;
  color: #f3f0e8; /* Gold for titles */
  margin-bottom: 10px;
}

.data-title {
  color: #d4a000;
}

.portfolio-info p {
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
  font-size: 1rem;
  color: #efeadb;
}

/* Large Banner Image Styling */
.portfolio-banner {
  width: 100%;
  height: 400px; /* Adjust height as needed */
  overflow: hidden;
  position: relative;
  margin-bottom: 40px; /* Adds space below the banner */
}

.portfolio-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the space proportionally */
  filter: brightness(80%) contrast(1.1); /* Slight darkening for text overlay if needed */
}

/* Media Queries for Responsiveness */

/* For tablets and smaller screens */
@media (max-width: 1024px) {
  .portfolio {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .portfolio-filters {
    width: 80%;
    margin: 0 auto;
  }

  .portfolio-grid {
    margin-left: 40px;
    margin-right: 40px;
  }

  .portfolio-item {
    margin-bottom: 20px;
  }
}

/* For smaller devices (phones, etc.) */
@media (max-width: 768px) {
  .portfolio {
    padding: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .portfolio-filters {
    width: 100%;
    margin: 0;
  }

  .portfolio-grid {
    margin-left: 10px;
    margin-right: 10px;
  }

  .portfolio-item {
    margin-bottom: 15px;
  }

  .filter-btn {
    padding: 8px 20px;
    font-size: 1rem;
  }
}

/* For very small devices (mobile phones) */
@media (max-width: 480px) {
  .portfolio {
    padding: 10px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .portfolio-filters {
    width: 100%;
    margin: 0;
  }

  .portfolio-grid {
    margin-left: 10px;
    margin-right: 10px;
    grid-template-columns: 1fr; /* Single column grid */
  }

  .portfolio-item {
    margin-bottom: 10px;
  }

  .filter-btn {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
}

/* Why Choose Us Section */
/* Why Choose Us Section */
.luxury-journey {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: #f8f9fa;
}

.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.text-container {
  text-align: center;
  margin-bottom: 30px; /* Add space between heading and cards */
  flex: 1;
  width: 100%;
}

.why-choose-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px; /* Add more space between title and cards */
}

/* Sticky heading for larger screens */
@media (min-width: 1025px) {
  .text-container {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 20px; /* Distance from the top of the screen */
    z-index: 10;
    background-color: #f8f9fa;
    padding: 20px 0;
  }
}

/* Heading adjustment for mobile-first */
.text-container h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight {
  color: #d9534f;
}

.step-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  flex: 2;
}

/* Step Cards */
.step-card {
  flex: 1 1 450px; /* Further increased the minimum size of cards */
  max-width: 1000px; /* Further increased max-width of cards */
  max-height: 200px; /* Adjusted height for better proportions */
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card h3 {
  font-size: 1.3rem; /* Increased font size */
  font-weight: 600;
  color: #d9534f;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 1rem;
  font-weight: 400;
  color: #212529;
  line-height: 1.5;
}

/* Responsive Design */

/* For tablets and below (1024px and below) */
@media (max-width: 1024px) {
  .why-choose-title {
    font-size: 1.75rem;
  }

  .step-container {
    justify-content: center;
  }

  .step-card {
    flex: 1 1 300px; /* Increased minimum size for tablets */
    max-width: 350px; /* Increased max-width for larger cards */
    height: 250px; /* Adjusted height for better proportions */
  }
}

/* For small screens (768px and below) */
@media (max-width: 768px) {
  .why-choose-title {
    font-size: 1.5rem;
  }

  .step-container {
    justify-content: center;
  }

  .step-card {
    flex: 1 1 90%; /* Stack the cards vertically on smaller screens */
    max-width: 90%;
    height: 280px; /* Increased height for better proportions on small screens */
  }

  .text-container h1 {
    font-size: 1.5rem; /* Ensure the title is visible on smaller screens */
  }
}

/* For extra small screens (480px and below) */
@media (max-width: 480px) {
  .why-choose-title {
    font-size: 1.25rem;
    margin-bottom: 20px; /* Space between title and cards */
    text-align: center; /* Center the title */
  }

  .step-container {
    display: flex;
    flex-direction: column; /* Stack cards vertically for small screens */
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .step-card {
    flex: 1 1 100%; /* Cards take full width */
    max-width: 100%;
    height: 400px; /* Increased height for better visibility */
    padding: 20px; /* Padding for better card content spacing */
  }

  .step-card h3 {
    font-size: 1.2rem; /* Adjust heading size inside cards */
    margin-bottom: 10px;
  }

  .step-card p {
    font-size: 1rem; /* Adjust paragraph size inside cards */
    line-height: 1.4;
  }
}
.hero h1 {
  background-color: #fff;
}
.three {
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
  font-size: 20px;
  text-align: center;
  font-weight: normal;
  color: #000;
  margin-top: 50px;
}

.two {
  font-weight: normal;
  font-size: 30px;
  text-align: center;
  font-style: normal; /* or 'italic' or 'oblique' */
  margin-top: 50px;
  color: #000;
}

.six {
  font-weight: normal;
  font-size: 40px;
  text-align: center;
}
/* Overlay for the popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* Popup container */
.popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  display: flex;
  flex-wrap: wrap; /* Allow stacking on smaller screens */
  height: auto; /* Adjust height for responsiveness */
  border-radius: 10px;
}

/* Left side with image and text */
.popup-left {
  flex: 1;
  background: url('assets/pop.png') no-repeat center;
  background-size: cover;
  position: relative;
  min-height: 250px; /* Set a minimum height for smaller screens */
}

.popup-left .quote {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Right side with form */
.popup-right {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popup-right h3 {
  margin: 5px;
  font-size: 24px;
  font-weight: normal;
  color: black;
  margin-bottom: 5px;
}

.popup-right p {
  color: #181414;
  font-size: 16px;
  margin-top: 5px;
}

/* Form styling */
.popup-right input[type='text'],
.popup-right input[type='email'],
.popup-right input[type='tel'],
.popup-right select {
  width: 100%;
  margin: 15px 0;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

/* Submit button */
.popup-right button {
  width: 100%;
  padding: 15px;
  background-color: #d00000;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-right button:hover {
  background-color: #d00000;
}

/* Checkbox */
.popup-right label {
  font-size: 15px;
  color: #666;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close-btn:hover {
  color: #ff5722;
}

/* Responsive design */
@media (max-width: 768px) {
  .popup-container {
    flex-direction: column; /* Stack the sections vertically */
    width: 90%;
  }

  .popup-left {
    min-height: 200px;
    background-size: cover;
  }

  .popup-right {
    padding: 15px;
  }

  .popup-right h3 {
    font-size: 20px;
  }

  .popup-right input[type='text'],
  .popup-right input[type='email'],
  .popup-right input[type='tel'],
  .popup-right select {
    font-size: 14px;
    padding: 10px;
  }

  .popup-right button {
    font-size: 18px;
    padding: 12px;
  }

  .popup-right p {
    font-size: 14px;
  }

  .close-btn {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .popup-left .quote {
    font-size: 14px;
    bottom: 10px;
    left: 10px;
  }

  .popup-right h3 {
    font-size: 18px;
  }

  .popup-right input[type='text'],
  .popup-right input[type='email'],
  .popup-right input[type='tel'],
  .popup-right select {
    font-size: 12px;
    padding: 8px;
  }

  .popup-right button {
    font-size: 16px;
    padding: 10px;
  }
}

footer {
  background-color: #0b2e24;
  color: #ffffff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}

.footer-container div {
  flex: 1 1 100px;
}

.logo1 {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  margin-left: 0px;
}

.about-section p {
  line-height: 1.6;
  font-size: 14px;
  margin-top: 10px;
  margin-left: 30px;
  text-align: justify;
}

.servicename {
  color: #f6bd10;
  margin-bottom: 10px;
  text-align: left;
}

.lists {
  list-style: none;
  padding: 0;
  margin-bottom: 8px;
  font-size: 14px;
  text-align: left;
  margin-left: 0;
  line-height: 1.8;
}

.lists a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.lists a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.contact-section h4 {
  color: #ffd700;
  margin-bottom: 15px;
  margin-left: 0;
  text-align: left;
}

.contact-section p {
  font-size: 14px;
  margin-bottom: 8px;
  text-align: left;
  margin-left: 0;
}

.social-icons {
  margin-top: 30px;
  text-align: left;
}

.social-icons i {
  color: #ffffff;
  margin-right: 10px;
  font-size: 25px;
  cursor: pointer;
}

.social-icons a {
  color: #ffffff;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

.lastline {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .logo1 {
    margin-left: 0; /* Center the logo */
  }

  .servicename,
  .contact-section h4 {
    margin-left: 0;
    text-align: left;
  }

  .lists {
    margin-left: 0;
    text-align: left;
  }

  .social-icons {
    margin-left: 0;
    text-align: left;
  }

  .social-icons i {
    font-size: 20px;
  }

  .footer-bottom {
    padding-top: 15px;
    font-size: 12px;
  }

  .contact-section p {
    text-align: left;
    margin-left: 0;
  }

  .lists {
    margin-left: 0;
    text-align: left;
  }

  .social-icons {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .logo1 {
    max-width: 150px;
  }

  .servicename,
  .contact-section h4 {
    font-size: 16px;
  }

  .lists {
    font-size: 12px;
    text-align: left;
  }

  .social-icons i {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 10px;
  }

  .footer-container {
    padding: 10px;
  }
}

/* Why chose us  */

.three {
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
  font-size: 50px;
  text-align: center;
  font-weight: normal;
  color: #000;
  margin-top: 50px;
}

.two {
  font-weight: normal;
  font-size: 30px;
  text-align: center;
  font-style: normal; /* or 'italic' or 'oblique' */
  margin-top: 50px;
  color: #000;
}

.six {
  font-weight: normal;
  font-size: 40px;
  text-align: center;
}
/* Overlay for the popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* Popup container */
.popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  display: flex;
  flex-wrap: wrap; /* Allow stacking on smaller screens */
  height: auto; /* Adjust height for responsiveness */
  border-radius: 10px;
}

/* Left side with image and text */
.popup-left {
  flex: 1;
  background: url('assets/pop.png') no-repeat center;
  background-size: cover;
  position: relative;
  min-height: 250px; /* Set a minimum height for smaller screens */
}

.popup-left .quote {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Right side with form */
.popup-right {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popup-right h3 {
  margin: 5px;
  font-size: 24px;
  font-weight: normal;
  color: black;
  margin-bottom: 5px;
}

.popup-right p {
  color: #181414;
  font-size: 16px;
  margin-top: 5px;
}

/* Form styling */
.popup-right input[type='text'],
.popup-right input[type='email'],
.popup-right input[type='tel'],
.popup-right select {
  width: 100%;
  margin: 15px 0;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

/* Submit button */
.popup-right button {
  width: 100%;
  padding: 15px;
  background-color: #d00000;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-right button:hover {
  background-color: #d00000;
}

/* Checkbox */
.popup-right label {
  font-size: 15px;
  color: #666;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close-btn:hover {
  color: #ff5722;
}

/* Responsive design */
@media (max-width: 768px) {
  .popup-container {
    flex-direction: column; /* Stack the sections vertically */
    width: 90%;
  }

  .popup-left {
    min-height: 200px;
    background-size: cover;
  }

  .popup-right {
    padding: 15px;
  }

  .popup-right h3 {
    font-size: 20px;
  }

  .popup-right input[type='text'],
  .popup-right input[type='email'],
  .popup-right input[type='tel'],
  .popup-right select {
    font-size: 14px;
    padding: 10px;
  }

  .popup-right button {
    font-size: 18px;
    padding: 12px;
  }

  .popup-right p {
    font-size: 14px;
  }

  .close-btn {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .popup-left .quote {
    font-size: 14px;
    bottom: 10px;
    left: 10px;
  }

  .popup-right h3 {
    font-size: 18px;
  }

  .popup-right input[type='text'],
  .popup-right input[type='email'],
  .popup-right input[type='tel'],
  .popup-right select {
    font-size: 12px;
    padding: 8px;
  }

  .popup-right button {
    font-size: 16px;
    padding: 10px;
  }
}

footer {
  background-color: #0b2e24;
  color: #ffffff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-container div {
  flex: 1 1 100px;
}

.logo1 {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  margin-left: 0px;
}

.about-section p {
  line-height: 1.6;
  font-size: 14px;
  margin-top: 10px;
  margin-left: 30px;
  text-align: justify;
}

.servicename {
  color: #f6bd10;
  margin-bottom: 15px;
  margin-top: 30px;
  text-align: left;
  margin-left: 120px;
}

.contact-section h4 {
  color: #ffd700;
  margin-bottom: 15px;
  /* margin-top: -20px; */
  margin-left: 70px;
}

.lists {
  list-style: none;
  padding: 0;
  margin-bottom: 8px;
  font-size: 14px;
  text-align: left;
  margin-left: 120px;
  line-height: 1.8;
}

.lists a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.lists a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.contact-section p {
  font-size: 14px;
  margin-bottom: 8px;
  text-align: left;
  margin-left: 70px;
}

.social-icons {
  margin-top: 50px;
  margin-left: 70px;
  text-align: left;
}

.social-icons i {
  color: #ffffff;
  margin-right: 10px;
  font-size: 25px;
  cursor: pointer;
}

.social-icons a {
  color: #ffffff;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

.lastline {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .logo1 {
    margin-left: 0; /* Center the logo */
  }

  .servicename,
  .contact-section h4 {
    margin-left: 0; /* Center the section titles */
    text-align: center;
  }

  .lists {
    margin-left: 0; /* Align the list items in the center */
    text-align: center;
  }

  .social-icons {
    margin-left: 0;
    text-align: center;
  }

  .social-icons i {
    font-size: 20px; /* Adjust size of icons */
  }

  .footer-bottom {
    padding-top: 15px;
    font-size: 12px;
  }

  /* Center the contact section items */
  .contact-section p {
    text-align: center; /* Center paragraph text */
    margin-left: 0; /* Remove left margin */
  }

  .lists {
    margin-left: 0; /* Remove left margin for lists */
    text-align: center; /* Center list items */
  }

  /* Decrease the space between services and contact section */
  .servicename,
  .contact-section h4 {
    margin-top: 15px; /* Reduced margin top */
  }

  /* Reduce the margin for the contact section */
  .contact-section p {
    margin-top: 10px; /* Reduced margin top for paragraph */
  }

  .social-icons {
    margin-top: 30px; /* Reduced top margin */
  }
}

@media (max-width: 480px) {
  .logo1 {
    max-width: 150px; /* Adjust logo size for small screens */
  }

  .servicename,
  .contact-section h4 {
    font-size: 16px; /* Adjust font size for small screens */
  }

  .lists {
    font-size: 12px; /* Smaller font size for list items */
  }

  .social-icons i {
    font-size: 18px; /* Smaller social icon size */
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 10px;
  }
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
}
h1 {
  font-size: 30px;
}

.luxury-journey {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.left-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-title {
  font-size: 2.5rem;
  line-height: 1.4;
  color: #333;
}

.highlight {
  color: #e63946;
  font-weight: bold;
}

.right-content {
  flex: 2;
  height: 100vh;
  overflow-y: auto; /* Scroll only on the right content */
  position: relative;
}

.step-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card {
  position: sticky;
  top: 70px;
  margin-bottom: 20px;
  padding: 30px;
  background: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #333;
}

.step-card p {
  font-size: 1rem;
  color: #666;
}

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-image {
  width: 100%;
  display: block;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(
    0,
    0,
    0,
    0.6
  ); /* Optional: Add transparency for readability */
  padding: 10px 20px;
  border-radius: 5px; /* Optional: Rounded corners */
}

.overlay-text h3 {
  margin: 0;
  font-size: 1.5rem; /* Adjust font size */
}

.overlay-text p {
  margin: 5px 0 0;
  font-size: 1rem;
}

/* Services */
/* Parent Container */
.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px; /* Increased space between columns */
  padding: 60px;
  position: relative;
}

/* Individual Section Styling */
.section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Align text at the bottom */
  padding: 20px;
  margin-top: 10px; /* Added margin for spacing around cards */
  color: black;
  background-size: cover; /* Ensure image covers the entire section */
  background-position: center; /* Center the image */
  border-radius: 8px;
  height: 300px;
  width: 100%; /* Enforce uniform width */
  transition: transform 0.5s ease, font-size 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 0;
  aspect-ratio: 4 / 3; /* Enforce consistent aspect ratio */
  background-color: #f0f0f0; /* Fallback color for browsers before images load */
}

/* Specific Background Images */
.interior-design {
  background-image: url('aboutimg/service1.jpg');
}

.construction-solutions {
  background-image: url('aboutimg/service2.png');
}

.project-management {
  background-image: url('assets/consultation.webp');
}

.smart-realty {
  background-image: url('assets/project.jpeg');
}

/* Heading Styling */
h2 {
  font-size: 22px;
  margin: 0;
  color: black;
  opacity: 1;
  transition: opacity 0.3s ease, font-size 0.3s ease;
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  font-family: 'Roboto', sans-serif;
  text-align: center;
  background-color: white;
  opacity: 0.8;
  border-radius: 5px;
  z-index: 2;
}

/* Paragraph Styling */
.key {
  font-size: 16px;
  margin: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease, font-size 0.3s ease;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Hover Effect */
.section:hover {
  transform: scale(1.05);
}

.section:hover h2 {
  opacity: 1;
}

.section:hover .key {
  opacity: 1;
}

/* Responsive Design */

/* For tablets and smaller screens */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .section {
    height: 250px;
    aspect-ratio: 4 / 3; /* Maintain aspect ratio */
  }

  h2 {
    font-size: 18px;
  }

  .key {
    font-size: 14px;
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section {
    height: 200px;
  }

  h2 {
    font-size: 16px;
    top: 10px;
  }

  .key {
    font-size: 12px;
    bottom: 10px;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .section {
    height: 180px;
  }

  h2 {
    font-size: 14px;
    top: 10px;
  }

  .key {
    font-size: 10px;
    bottom: 10px;
  }
}