* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'garanond', 'didot';
      line-height: 1.6;
      color: #2c2c2c;
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Styles */
    #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;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .navbar-brand {
      font-size: 2rem;
      font-weight: bold;
      color: #1a1a1a;
      text-decoration: none;
      letter-spacing: -1px;
      transition: all 0.3s ease;
    }

    .navbar-brand:hover {
      color: #666;
      transform: scale(1.05);
    }

    .navbar-nav {
      display: flex;
      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 */
.hamburger-menu {
    display: block; /* Show on mobile by default */
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above other header content */
    transition: all 0.3s ease-in-out;
    flex-shrink: 0; /* Prevents it from shrinking if space is constrained */
    /* border: 1px solid red; /* Debugging border - remove in production */
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1f2937; /* Color of the hamburger lines */
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu span:nth-child(1) { top: 0; }
.hamburger-menu span:nth-child(2) { top: 8px; }
.hamburger-menu span:nth-child(3) { top: 16px; }

/* Animation for active (X) state */
.hamburger-menu.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

        
/* Mobile Navigation Menu */
/* Hide mobile nav by default */
.mobile-nav-menu {
    display: none;
    background-color: white;
    position: absolute;
    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;
}

/* Optional: smooth transition */
@media (max-width: 767px) {
    .navbar-nav {
        display: none; /* hide desktop menu on mobile */
    }
}


/* Hero Section */

.logo {
height: 50px;
width: 100px;
}
.hero-section {
  height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #eeeeee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.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.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -2px;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


        /* Main Content */
        .main-content {
            padding: 6rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            margin-bottom: 6rem;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #2c3e50;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #e74c3c;
        }

        /* Company Story */
        .company-story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 6rem;
        }

        .story-content h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
        }

        .story-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .story-image {
            height: 400px;
            background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        /* Stats Section */
        .stats {
            background: #f8f9fa;
            padding: 4rem 0;
            margin: 4rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
        }

        /* Founder Section */
        .founder-section {
            background: white;
            padding: 6rem 0;
        }

        .founder-content {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 4rem;
            align-items: start;
        }

        .founder-image {
            width: 300px;
            height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .founder-bio h3 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .founder-bio .title {
            font-size: 1.2rem;
            color: #e74c3c;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .founder-bio p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 1.5rem;
        }

        /* Skills Section */
        .skills-section {
            background: #f8f9fa;
            padding: 6rem 0;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .skill-category {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .skill-category:hover {
            transform: translateY(-5px);
        }

        .skill-icon {
            font-size: 3rem;
            color: #e74c3c;
            margin-bottom: 1rem;
        }

        .skill-category h4 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .skill-list {
            list-style: none;
            color: #666;
        }

        .skill-list li {
            padding: 0.3rem 0;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #e74c3c;
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin: 2rem 0;
            display: flex;
            justify-content: center;
        }

        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 45%;
            position: relative;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: auto;
            margin-left: 0;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
            margin-right: 0;
        }

        .timeline-date {
            background: #e74c3c;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 1rem;
        }

        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 6rem 0;
            text-align: center;
        }

        .cta-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

/* Contact Section */
    #contact {
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    #contact p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
      text-align: center;
      max-width: 700px;
      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.8);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      backdrop-filter: blur(10px);
    }

    .image-row-description p {
      margin-bottom: 15px;
      color: #444;
      font-size: 1rem;
    }

    .image-row-description strong {
      color: #1a1a1a;
    }

    iframe {
      border-radius: 10px;
      filter: grayscale(100%) contrast(1.2);
      transition: filter 0.3s ease;
    }

    iframe:hover {
      filter: grayscale(0%) contrast(1);
    }

/* --- Media Queries --- */


@media (max-width: 479px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 2+ columns */
    }

  .image-row-grid {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 15px;
    margin-top: 30px;
  }

  .image-row-item {
    padding: 15px;
  }

  .image-row-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  iframe {
    width: 100%;
    height: 200px;
    display: block;
    border-radius: 8px;
  }
}


/* Small devices (landscape phones, 480px and up) */
@media (min-width: 480px) {
    /* Product Cards */
    .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;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    /* Header Navigation */
    header nav {
        flex-direction: row; /* Horizontal navigation */
    }
    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 */
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 3.5rem; /* Larger font for tablets */
    }
    .hero-content p {
        font-size: 1.35rem;
    }

    /* Filter Section */
    .filter-buttons {
        flex-wrap: nowrap; /* Prevent wrapping on larger screens */
    }
    .filter-btn {
        padding: 15px 30px; /* Restore original padding for larger screens */
    }

    /* Product Cards */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* 2-3 columns */
    }

    /* Image Row Grid */
    .image-row-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for images */
    }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 4.5rem; /* Even larger font for desktops */
    }
    .hero-content p {
        font-size: 1.5rem;
    }

    /* Product Cards */
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on large desktops */
        gap: 50px; /* More gap for larger screens */
    }

    /* Image Row Grid */
    .image-row-grid {
        grid-template-columns: repeat(2, 1fr); /* 3 columns for images */
    }
}


