body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: #fffdf7;
    color: #333;
    scroll-behavior: smooth;
  }
  
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
  }
  
  section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    animation: fadeInUp 0.6s ease-in-out both;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ========== NAVIGATION ========== */
  header {
    background-color: #fff0e6;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
  }
  
  .nav-hidden {
    transform: translateY(-100%);
  }
  
  .logo img {
    height: 55px;
    transition: transform 0.3s ease;
  }
  
  .logo img:hover {
    transform: scale(1.1);
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #b22222;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    background: #ff7f50;
    color: #fff;
  }
  
  /* ========== HERO SECTION ========== */
  .hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  
  .hero-section video,
  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.6);
    z-index: 1;
    border: none;
  }
  
  .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-primary {
    background-color: #ff7f50;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #e85d37;
  }
  
  /* ========== GALLERY SECTION UPDATED ========== */
  .gallery-section {
    padding: 60px 20px;
    background: #fffaf3;
  }
  
  .gallery-section h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #b22222;
    margin-bottom: 10px;
  }
  
  .gallery-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #444;
  }
  
  .gallery-title {
    font-size: 2rem;
    text-align: center;
    margin: 40px auto 20px;
    color: #b22222;
  }
  
  .gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }
  
  .gallery-images img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .gallery-images img:hover {
    transform: scale(1.04);
  }
  
  /* ========== PAGE-SPECIFIC STYLES ========== */
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 20px;
  }
  
  .about-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 20px;
  }
  
  .service-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 20px;
  }
  
  .blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 20px;
  }
  
  .contact-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 40px;
    line-height: 1.8;
    text-align: center;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: auto;
  }
  
  input, textarea {
    padding: 14px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
  }
  
  button[type="submit"] {
    background-color: #b22222;
    color: white;
    padding: 12px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button[type="submit"]:hover {
    background-color: #8b0000;
  }
  
  /* ========== FOOTER ========== */
  footer {
    background: #b22222;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
  }
  
  /* ========== WHATSAPP FLOATING BUTTON ========== */
  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  .whatsapp-button i {
    font-size: 1.2rem;
  }
  