body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #000;
  }
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #A7926F;
    padding: 20px 40px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
  }
  
  .logo {
    height: 100px;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: auto;
    max-height: 100%;
    max-width: 190px;
    object-fit: contain;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
  }
  
  .nav-links a:hover {
    color: #fff;
  }
  
  /* Hamburger styles */
  .hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: black;
  }
  
  /* Mobile Menu (hidden by default) */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #A7926F;
    padding: 10px 0;
    list-style: none;
    text-align: center;
  }
  
  .mobile-menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    font-size: 18px;
  }
  
  /* Media Query for Mobile */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .hamburger {
      display: block;
    }
  
    .mobile-menu.show {
      display: flex;
    }
  }
  
  /* Dropdown base */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 10px 0;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .dropdown-menu li {
    padding: 0;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
  }
  
  .dropdown-menu a:hover {
    background-color: #f4f4f4;
    color: #A7926F;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  /* Mobile-specific dropdown behavior */
  @media (max-width: 768px) {
    .mobile-menu .dropdown-menu {
      display: none;
      position: static;
      box-shadow: none;
      background-color: white; /* ✅ ensure it's not the same as navbar */
      padding: 10px 0;
    }
  
    .mobile-menu .dropdown:hover .dropdown-menu,
    .mobile-menu .dropdown:focus-within .dropdown-menu {
      display: block; /* ✅ show the dropdown when touched/tapped */
    }
  
    .mobile-menu .dropdown-menu a {
      color: #000;
      padding: 10px 15px;
      text-align: left;
      background-color: white;
    }
  
    .mobile-menu .dropdown-menu a:hover {
      background-color: #f4f4f4;
      color: #A7926F;
    }
  }
  
  
  
  
  /* Section Styles */
  .section {
    padding: 60px 30px;
    border-bottom: 2px solid #A7926F;
  }
  
  h1, h2 {
    color: #000;
  }
  
  ul li {
    margin: 10px 0;
  }
  
  p {
    font-size: 1.1em;
  }
  
  /* Contact Form */
  form {
    max-width: 500px;
    margin: auto;
    background-color: #f9f9f9;
    padding: 20px;
    border: 2px solid #A7926F;
    border-radius: 8px;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    margin-bottom: 15px;
  }
  
  button {
    background-color: #A7926F;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #8a715b;
  }
  
  @media (max-width: 600px) {
    #contact h2 {
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 20px;
    }
  
    form {
      padding: 15px;
      border-radius: 6px;
      margin: 0 15px; /* adds space on left & right */
    }
  
    input, textarea {
      font-size: 1rem;
      padding: 5px;
    }
  
    button {
      width: 100%;
      font-size: 1rem;
      padding: 12px;
    }
    
  }
  
  /* Footer */
  /* footer {
    text-align: center;
    background-color: #A7926F;
    color: #fff;
    padding: 20px;
  } */
  .site-footer {
    background-color: #A7926F;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-left {
    max-width: 300px;
  }
  
  .footer-logo {
    width: 140px;
    margin-bottom: 10px;
  }
  
  .footer-tagline {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .footer-social a {
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
    transition: color 2s;
  }
  
  .footer-social a:hover {
    color: #A7926F;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 6px;
  }
  
  .footer-links ul li a {
    color: #dcdcdc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links ul li a:hover {
    color: #A7926F;
  }
  
  .footer-contact p {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .footer-contact i {
    margin-right: 6px;
    color: #A7926F;
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff22;
    text-align: center;
    margin-top: 30px;
    padding-top: 10px;
    font-size: 14px;
  }
  
  /* Floating Banner */
  .floating-banner {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .toggle-arrow {
    background-color: #000;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px 0 0 8px;
    font-size: 18px;
    text-align: center;
  }
  
  .banner-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .banner-content.show {
    max-height: 150px;
  }
  
  .banner-button {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-decoration: none;
    border-radius: 8px 0 0 8px;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 13px;
  }
  
  .banner-button.contact-btn {
    background-color: #e53935;
  }
  
  .banner-button.whatsapp-btn {
    background-color: #25D366;
  }
  
  .banner-button img {
    width: 24px;
    height: 24px;
  }
  
  /* Fade-in animation */
  /* .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid #ddd;
  }
  
  .section-spacing:last-of-type {
    border-bottom: none;
  }
  
  .section-spacing h1,
  .section-spacing h2 {
    margin-bottom: 20px;
  }
  
  .section-spacing p,
  .section-spacing ul {
    line-height: 1.8;
  } */
  
  /* Slide and fade from left */
  .fade-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 2s ease-out, transform 2s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .home-section {
    position: relative;
    background: url('images/bg-home.jpg') no-repeat center center/cover;
    color: #fff; /* White text for better contrast */
    z-index: 1;
    overflow: hidden;
  }
  
  /* Optional: Add a dark overlay */
  .home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px); /* This applies the blur */
    background-color: rgba(0, 0, 0, 0.4); /* Slight dark overlay */
    z-index: -1;
  }
  
  /* Make sure content stays on top */
  .home-section h1,
  .home-section p {
    position: relative;
    z-index: 2;
  }
  
  /* Background styling for the home section */
  .home-section {
    position: relative;
    background: url('images/bg-home.jpg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    padding: 0;
    text-align: center;
  }
  .home-section h1 {
    color: #fff; /* Force white text */
    font-size: 3rem; /* Optional: bigger title */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Optional: helps visibility */
  }
  
  
  /* Blurred overlay effect */
  .home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }
  
  /* Centered content box */
  .home-content-box {
    background-color: #A7926F;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    z-index: 1;
    position: relative;
  }
  
  .home-content-box h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #fff;
  }
  
  .home-content-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fff;
  }
  
  /* Fade-in from left animation */
  @keyframes fadeInFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .fade-in-left {
    opacity: 0;
    animation: fadeInFromLeft 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  
  .about-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* allows stacking only on small screens */
  }
  
  
  
  .about-image {
    flex: 1 1 45%;
    display: flex;
    align-items: center;       /* vertically center */
    justify-content: center;   /* horizontally center */
  }
  
  
  .about-image img {
    height: 500px;             /* make it taller */
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  
  .about-text {
    flex: 1 1 45%;
    background-color: #A7926F; /* same as navbar */
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 1.1em;
    line-height: 1.8;
  }
  
  
  .fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 2s ease-out, transform 2s ease-out;
  }
  
  .fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  #services {
    text-align: center;
    background-color: #fff;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #000204; 
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  
  .service-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 2s ease, box-shadow 2s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }
  
  .service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 0.95rem;
    color: #333;
  }
  
  @media (max-width: 768px) {
    #services {
      padding: 0 !important;
      margin: 0 auto !important;
      width: 100% !important;
      box-sizing: border-box;
    }
  
    .services-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 !important;
      margin: 0 auto !important;
      width: 100%;
    }
  
    .service-card {
      max-width: 320px;
      width: 100%;
      margin: 0 auto 20px;
      box-sizing: border-box;
    }
  }
  
  
  
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 0 10px;
    }
  
    .about-image {
      width: 100%;
      display: flex;
      justify-content: center;
    }
  
    .about-image img {
      height: auto;
      width: 100%;
      max-height: 200px;
      object-fit: cover;
      border-radius: 8px;
    }
  
    .about-text {
      width: 100%;                   /* Use full available width */
      max-width: 100%;               /* No restriction */
      padding: 16px 12px;            /* Even inner padding */
      font-size: 0.85rem;
      line-height: 1.4;
      /* text-align: justify; */
      /* box-sizing: border-box; */
      /* margin: 0 auto; */
    }
  
    .about-title {
      font-size: 1.6rem;
      text-align: center;
      margin-bottom: 12px;
    }
  }
  
  
  
  
  
  /* Why choose us */
  .why-choose-section {
    background: #f4f7fb;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000407;
    border-bottom: 4px solid #A7926F;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
  
  .circle-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    justify-items: center;
  }
  
  .circle-stat h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000203;
    margin-top: 15px;
  }
  .progress-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#A7926F 0deg, #e0d6c8 0deg); /* #e0d6c8 is light beige */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 2s ease;
  }
  
  .circle-value {
    font-size: 22px;
    font-weight: 700;
    color: #000205;
    position: absolute;
  }
  
  @media (max-width: 768px) {
    .why-choose-section {
      padding: 40px 10px;
    }
  
    .about-box {
      font-size: 0.9rem;
      line-height: 1.4;
      max-width: 100%;
      padding: 15px;
      margin: 0 auto 30px;
    }
  
    .circle-stats-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
  
    .progress-circle {
      width: 90px;
      height: 90px;
    }
  
    .circle-value {
      font-size: 18px;
    }
  
    .circle-stat h4 {
      font-size: 14px;
      margin-top: 10px;
    }
  
    .circle-stats-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .circle-stat {
      width: 120px; /* Make all same width */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
  }
  
  /* .progress-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#A7926F 0deg, #A7926F 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .circle-value {
    font-size: 22px;
    font-weight: 700;
    color: #000205;
    position: absolute;
  } */
  
  .about-box {
    background-color: #A7926F;
    border: 2px solid #A7926F;
    border-radius: 12px;
    padding: 25px;
    max-width: 900px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
  }
  
  
  @media (max-width: 768px) {
    .home-content-box {
      padding: 20px;
      max-width: 90%;
      margin: 20px auto;
    }
  
    .home-content-box h1 {
      font-size: 1.8rem;
    }
  
    .home-content-box p {
      font-size: 1rem;
      line-height: 1.5;
    }
  
    .home-section {
      height: auto;
      padding: 80px 15px;
    }
  }
  
  