
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    :root {
      --primary-color: #2c3e50;
      --accent-gold: #d4a574;
      --accent-rose: #f4e4e6;
      --text-dark: #2c2c2c;
      --text-light: #f9f6f1;
      --gradient-overlay: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(212, 165, 116, 0.6));
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('picture/6.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
  }

/* Overlay Navbar */
.hero nav {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  padding: 15px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero nav ul {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero nav li {
  margin: 0;
  padding: 0;
}

.hero nav a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.hero nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.hero nav a:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.1);
}

.hero nav a:hover::before {
  width: 80%;
}

  /* Centered Hero Text */
  .hero .content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 1.2s ease-out 0.3s both;
  }

  .hero .content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    line-height: 1.2;
  }

  .hero .content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .hero .content .cta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    border: 2px solid transparent;
  }
  
  .hero .content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
    background: transparent;
    border-color: var(--accent-gold);
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

    /* --- Sections --- */
    section {
      padding: 80px 40px;
      background: linear-gradient(135deg, var(--accent-rose) 0%, #ffffff 100%);
      color: var(--text-dark);
      font-family: 'Poppins', sans-serif;
      position: relative;
      overflow: hidden;
    }
    
    section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-opacity=".1"/><stop offset="100%" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
      opacity: 0.1;
    }
    
    section:nth-child(even) {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }
    
    section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      z-index: 1;
    }
    
    section h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-gold), var(--primary-color));
      border-radius: 2px;
    }
    /* --- Services Cards --- */
    .card {
      position: relative;
      padding: 50px 30px;
      color: #fff;
      border-radius: 20px;
      text-align: center;
      background-size: cover;
      background-position: center;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      transition: all 0.4s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(212, 165, 116, 0.5));
      border-radius: 20px;
      transition: all 0.4s ease;
    }
    
    .card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .card:hover::before {
      background: linear-gradient(135deg, rgba(44, 62, 80, 0.5), rgba(212, 165, 116, 0.7));
    }
    
    .card h3, .card p {
      position: relative;
      z-index: 2;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }
    
    .card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    
    .card:hover h3,
    .card:hover p {
      transform: translateY(0);
    }
    /* Gallery images */
    .gallery img {
      width: 100%;
      height: 400px;
      border-radius: 15px;
      object-fit: cover;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }
    /* Forms */
    form {
      max-width: 500px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
      background: rgba(255, 255, 255, 0.9);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    form input, form textarea {
      padding: 18px 20px;
      font-size: 16px;
      border: 2px solid #e1e5e9;
      border-radius: 15px;
      font-family: 'Poppins', sans-serif;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.8);
    }
    
    form input:focus, form textarea:focus {
      outline: none;
      border-color: var(--accent-gold);
      box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
      transform: translateY(-2px);
    }
    
    form button {
      background: linear-gradient(135deg, var(--accent-gold), var(--primary-color));
      color: white;
      border: none;
      cursor: pointer;
      padding: 18px 30px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 15px;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
      box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    }
    
    form button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    }
    #enquiry{ 
      text-align: center; 
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    #enquiry::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
      opacity: 0.1;
    }
    
    #enquiry h2 {
      color: white;
    }
    
    #enquiry h2::after {
      background: rgba(255, 255, 255, 0.5);
    }
    
    #enquiry h4 {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 400;
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto 3rem;
    }
    
    #enquiry  #successMessage {
     display:none; 
    color: #2e7d32; 
    margin-top: 30px; 
    font-size: 1.2rem; 
    font-weight: 600; 
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9); 
    padding: 20px 30px; 
    border-radius: 15px; 
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
    border: 1px solid rgba(46, 125, 50, 0.2);
    animation: fadeInScale 0.5s ease-out;
    }
    
    @keyframes fadeInScale {
      from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }
    
    #contact {
      text-align: center;
      background: linear-gradient(135deg, #f8f9fa 0%, var(--accent-rose) 100%);
      position: relative;
    }
    
    #contact a {
      color: var(--primary-color);
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }
    
    #contact a:hover {
      color: var(--accent-gold);
      transform: translateY(-2px);
    }
    
    #contact p {
      font-size: 1.1rem;
      margin: 1.5rem 0;
      font-family: 'Poppins', sans-serif;
    }
    .social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  font-size: 24px;
  padding: 15px;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  color: white;
  background: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
}

footer {
  background: linear-gradient(135deg, var(--primary-color), #1a252f);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(212,165,116,0.1)"/></svg>');
  opacity: 0.2;
}

footer p {
  margin: 10px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
}

    /* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.portfolio-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.portfolio-grid img:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* About Section */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-photo {
  flex: 1;
  min-width: 350px;
  max-width: 400px;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(44, 62, 80, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-photo:hover::before {
  opacity: 1;
}

.about-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.about-text {
  flex: 2;
  min-width: 400px;
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
}

.about-text h2 {
  margin-top: 0;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #555;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 1rem; /* Adds breathing room on small screens */
  }

  .about-photo,
  .about-text {
    min-width: 100%;
    max-width: 100%;
  }

  .about-text {
    text-align: center;
    font-size: 1rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}


  /* Smooth Scroll */
  html {
    scroll-behavior: smooth;
  }
  
  /* Loading animations */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Swiper Navigation Buttons */
  .swiper-button-next,
  .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color) !important;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: var(--accent-gold);
    color: white !important;
    transform: scale(1.1);
  }
  
  .swiper-pagination-bullet {
    background: var(--accent-gold) !important;
    opacity: 0.5;
    transition: all 0.3s ease;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
  }

  .photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.photo-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.photo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.2), rgba(212, 165, 116, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.photo-item:hover::before {
  opacity: 1;
}

.photo-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.photo-item:hover img {
  transform: scale(1.1);
}

    /* Hide toggle button on desktop */
.menu-toggle {
  display: none;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hero nav {
    top: 20px;
    left: 20px;
    right: 20px;
    transform: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 10px 20px;
  }

  .hero nav ul {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 15px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
  }

  .hero nav ul.show {
    display: flex;
  }
  .hero nav a {
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
  }

  .menu-toggle {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 18px;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
  }
  
  section {
    padding: 60px 20px;
  }
  
  .hero .content h1 {
    font-size: 2.5rem;
  }
  
  .hero .content p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
