/* Existing styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Georgia', serif; /* Changed font to Georgia */
    line-height: 1.6;
    color: #333; /* Very dark gray for text */
    background: linear-gradient(135deg, #f8f8f8 0%, #e0e0e0 100%); /* Very light gray to light gray gradient */
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Styles (UNCHANGED FROM ORIGINAL SNIPPET 1) */
  #siteHeader {
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  #siteHeader.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0; /* Adjusted padding */
  }
  
  .navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -1px;
    transition: all 0.3s ease;
    /* Centering the logo on mobile */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .navbar-brand:hover {
    color: #666;
    transform: translateX(-50%) scale(1.05); /* Adjust transform for centering */
  }
  
  .navbar-nav {
    display: none; /* Hide desktop menu by default */
    list-style: none;
    gap: 30px;
  }
  
  .navbar-nav a {
    color: #444;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
    text-transform: capitalize;
  }
  
  .navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ddd, #999);
    transition: width 0.3s ease;
  }
  
  .navbar-nav a:hover::after {
    width: 100%;
  }
  
  .navbar-nav a:hover {
    color: #1a1a1a;
  }
  
  /* Hamburger Menu Icon (UNCHANGED FROM ORIGINAL SNIPPET 1) */
  .hamburger-menu {
    display: block; /* Show on mobile */
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    margin-left: 10px; /* Space from left edge */
  }
  
  .hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1f2937;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger-menu span:nth-child(1) {
    top: 0;
  }
  
  .hamburger-menu.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  
  .hamburger-menu span:nth-child(2) {
    top: 8px;
  }
  
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-menu span:nth-child(3) {
    top: 16px;
  }
  
  .hamburger-menu.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
  
  /* Phone Icon (UNCHANGED FROM ORIGINAL SNIPPET 1) */
  .phone-icon {
    display: block; /* Show on mobile */
    color: #ffffff; /* Changed color to white */
    font-size: 1.5rem;
    text-decoration: none;
    margin-right: 10px; /* Space from right edge */
    z-index: 1001;
    flex-shrink: 0;
    background-color: #6c757d; /* Changed background color to a grey */
    border-radius: 50%; /* Make it round */
    padding: 8px; /* Add padding */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Set a fixed width and height for the circle */
    height: 40px;
  }
  
  /* Hide the original phone button on mobile (UNCHANGED FROM ORIGINAL SNIPPET 1) */
  .phone-button {
    display: none;
  }
  
  /* Mobile Navigation Menu (UNCHANGED FROM ORIGINAL SNIPPET 1) */
  /* Hide mobile nav by default */
  .mobile-nav-menu {
    display: none;
    background-color: white;
    position: fixed;
    top: 60px; /* adjust according to your navbar height */
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Show mobile nav when .open is added */
  .mobile-nav-menu.open {
    padding-top: 30px;
    display: block;
  }
  
  /* Style the menu links */
  .mobile-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .mobile-nav-menu ul li {
    border-bottom: 1px solid #ddd;
  }
  
  .mobile-nav-menu ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
  }
  
  /* Hero Section */
  .logo {
    height: 50px;
    width: 100px;
  }
  
  .hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #333; /* Explicitly set text color for hero section */
    z-index: 1;
  }
  
  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* Subtle dark overlay */
    z-index: 0;
  }
  
  .hero-section h1,
  .hero-section p,
  .hero-section button {
    position: relative;
    z-index: 2;
  }
  
  .hero-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 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.7" fill="%23fff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); /* Subtle light grain */
    animation: float 20s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-15px) rotate(1deg);
    }
  }
  
  .hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #222; /* Very dark gray text */
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2.5px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.2); /* Subtle light text shadow */
  }
  
  .hero-content p {
    font-size: 1.3rem;
    color: #444; /* Darker gray */
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.15); /* Subtle light text shadow */
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Section Styles */
  .section-padding {
    padding: 100px 0;
  }
  
  .section-title {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #444; /* Dark gray title */
    letter-spacing: -1.5px;
    position: relative;
    font-family: 'Georgia', serif; /* Changed font to Georgia */
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #888, #666); /* Grey gradient underline */
  }
  
  /* About Section */
  #about {
    background: linear-gradient(135deg, #e0e0e0 0%, #f8f8f8 100%); /* Light gray to very light gray */
    position: relative;
  }
  
  #about p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Services Section */
  #services {
    background: #f0f0f0; /* Light gray background */
    position: relative;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }
  
  .product-card {
    background: #ffffff; /* White background */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Softer shadow */
    transition: all 0.4s ease;
    position: relative;
  }
  
  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.05) 0%, rgba(128, 128, 128, 0.05) 100%); /* Very subtle grey gradient overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .product-card:hover::before {
    opacity: 1;
  }
  
  .product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); /* Slightly darker hover shadow */
  }
  
  .product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
  }
  
  .card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
  }
  
  .card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444; /* Dark gray title */
    margin-bottom: 15px;
    letter-spacing: -0.5px;
  }
  
  .card-content p {
    color: #555; /* Darker text */
    line-height: 1.7;
  }
  
  /* Contact Section */
  #contact {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%); /* Light gray to light gray */
  }
  
  #contact p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
  }
  
  .image-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
  }
  
  .image-row-item {
    background: rgba(255, 255, 255, 0.98); /* White with slight transparency */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Softer shadow */
    backdrop-filter: blur(10px);
  }
  
  .image-row-description p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.1rem;
  }
  
  .image-row-description strong {
    color: #444;
  }
  
  iframe {
    border-radius: 10px;
    filter: grayscale(95%) contrast(1.05); /* More grayscale and less contrast */
    transition: filter 0.3s ease;
  }
  
  iframe:hover {
    filter: grayscale(0%) contrast(1);
  }
  
  /* Footer */
  footer {
    background: linear-gradient(135deg, #444 0%, #222 100%); /* Dark gray gradient */
    color: #ffffff;
    text-align: center;
    padding: 40px 0;
  }
  
  footer p {
    margin-bottom: 10px;
    opacity: 0.9;
  }
  
  footer a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  footer a:hover {
    opacity: 0.7;
  }
  
  /* Subtle animations */
  .product-card, .image-row-item {
    animation: fadeInUp 0.6s ease-out;
  }
  
  .product-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .product-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Add scroll padding for fixed header */
  section {
    scroll-margin-top: 80px;
  }
  
  ---
  
  /* --- Why Choose Us Section Styling --- */
  .section-padding {
    padding: 100px 0;
    background: linear-gradient(135deg, #e0e0e0 0%, #f8f8f8 100%); /* Light gray to very light gray */
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #444; /* Dark gray title */
    letter-spacing: -1.5px;
    position: relative;
    font-family: 'Georgia', serif;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #888, #666); /* Grey gradient */
  }
  
  .section-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Georgia', serif;
  }
  
  /* --- Reasons Grid Container --- */
  .reasons-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default: one column */
    gap: 40px;
    margin-top: 50px;
  }
  
  /* --- Individual Reason Card Styling - matching .product-card --- */
  .reason-card {
    background: #ffffff; /* White background */
    padding: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    font-family: 'Georgia', serif;
    animation: fadeInUp 0.6s ease-out;
  }
  
  /* Hover effect - matching .product-card:hover */
  .reason-card:hover {
    transform: translateY(-10px); /* Less pronounced scale and translate */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); /* Slightly darker hover shadow */
  }
  
  /* Optional: Add the subtle overlay effect on hover if desired, like product-card */
  .reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.05) 0%, rgba(128, 128, 128, 0.05) 100%); /* Very subtle grey gradient overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .reason-card:hover::before {
    opacity: 1;
  }
  
  /* --- Reason Title (h3) Styling - aligning with .card-content h3 --- */
  .reason-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444; /* Dark gray title */
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Georgia', serif;
    position: relative;
    z-index: 2;
  }
  
  /* --- Reason Description (p) Styling - aligning with .card-content p --- */
  .reason-card p {
    font-size: 1.1rem;
    color: #555; /* Darker text */
    line-height: 1.7;
    margin-bottom: 0;
    font-family: 'Georgia', serif;
    position: relative;
    z-index: 2;
  }
  
/*-media-*/
  
  @media (max-width: 767px) {
    /* For mobile, arrange items in nav (UNCHANGED FROM ORIGINAL SNIPPET 1) */
    header nav {
      justify-content: space-between; /* Distribute space */
      padding: 10px 15px; /* Add padding to edges */
      position: relative; /* Needed for absolute positioning of logo */
    }
  
    .navbar-brand {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
  
    .navbar-nav {
      display: none; /* Hide desktop menu */
    }
  
    .hamburger-menu {
      display: block; /* Show hamburger */
      order: 1; /* Place hamburger first */
    }
  
    .phone-icon {
      display: flex; /* Show phone icon */
      order: 3; /* Place phone icon last */
      background-color: #6c757d; /* Ensure grey background on mobile */
    }
  
    .phone-button {
      display: none; /* Hide desktop phone button */
    }
  
    .logo {
      height: 40px; /* Adjust logo size for mobile */
      width: auto;
    }
  
    .products-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 2+ columns */
    }
    .image-row-grid {
      grid-template-columns: 1fr; /* Stack content vertically */
      gap: 20px;
    }
  
    .image-row-item {
      padding: 20px;
    }
  
    iframe {
      width: 100%;
      height: 220px;
      display: block;
    }
  }
  
  /* New: Extra small devices (portrait phones, 479px and below) */
  @media (max-width: 479px) {
    .products-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .image-row-grid {
      grid-template-columns: 1fr;
      gap: 15px;
      margin-top: 30px;
    }
  
    .image-row-item {
      padding: 15px;
    }
  
    .image-row-description p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 10px;
    }
  
    iframe {
      width: 100%;
      height: 200px;
      display: block;
      border-radius: 8px;
    }
  }
  
  /* Small devices (landscape phones, 480px and up) (New in Snippet 2, but adjusted to avoid overlap with 479px) */
  @media (min-width: 480px) and (max-width: 767px) {
    .products-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .image-row-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .image-row-item {
      padding: 20px;
    }
  
    iframe {
      width: 100%;
      height: 220px;
      display: block;
    }
  }
  
  
  /* Medium devices (tablets, 768px and up) */
  @media (min-width: 768px) {
    /* Header Navigation (UNCHANGED FROM ORIGINAL SNIPPET 1) */
    header nav {
      flex-direction: row; /* Horizontal navigation */
      justify-content: space-between; /* Space out items */
      padding: 15px 0;
      position: static; /* Remove absolute positioning */
    }
  
    .navbar-brand {
      position: static; /* Remove absolute positioning */
      transform: none; /* Remove transform */
    }
  
    header a.navbar-brand {
      margin-bottom: 0; /* Remove bottom margin */
    }
  
    header ul.navbar-nav {
      display: flex; /* Show desktop nav */
      flex-wrap: nowrap; /* Prevent wrapping */
      margin-top: 0; /* Remove top top margin */
    }
  
    header ul.navbar-nav li {
      margin-left: 25px; /* Restore original spacing */
      margin-right: 0; /* No right margin */
    }
  
    .hamburger-menu {
      display: none; /* Hide hamburger on desktop */
    }
  
    .mobile-nav-menu {
      display: none; /* Hide mobile menu on desktop */
    }
  
    .phone-icon {
      display: none; /* Hide phone icon on desktop explicitly */
    }
  
    .phone-button {
      display: block; /* Show desktop phone button */
      background-color: #6c757d; /* Changed background color to a grey */
      color: white; /* Changed text color to white */
      padding: 10px 20px; /* Adjust padding */
      border-radius: 5px; /* Add border radius */
      text-decoration: none; /* Remove underline */
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }
  
    .phone-button:hover {
      background-color: #5a6268; /* Darker grey on hover */
    }
  
    .logo {
      height: 50px; /* Restore desktop logo size */
      width: auto;
    }
  
    /* Hero Section */
    .hero-content h1 {
      font-size: 4rem; /* Larger font for tablets (from Snippet 2) */
    }
  
    .hero-content p {
      font-size: 1.5rem; /* Same as Snippet 2 */
    }
  
    /* Filter Section (no changes needed as these were not in Snippet 2 for 768px+) */
    .filter-buttons {
      flex-wrap: nowrap;
    }
    .filter-btn {
      padding: 15px 30px;
    }
  
    /* Product Cards */
    .products-grid {
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
  
    /* Image Row Grid */
    .image-row-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Large devices (desktops, 1024px and up) */
  @media (min-width: 1024px) {
    /* Hero Section */
    .hero-content h1 {
      font-size: 5.5rem; /* Even larger font for desktops (from Snippet 2) */
    }
  
    .hero-content p {
      font-size: 1.6rem; /* Larger font (from Snippet 2) */
    }
  
    /* Product Cards */
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
    }
  
    /* Image Row Grid */
    .image-row-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }