body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

/* Navbar styles */
.main-navbar {
    background-color: rgba(255, 255, 255, 0.7); /* Reduced opacity */
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 16px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px; /* Increased from 60px to 80px */
    width: auto;
    margin-right: 10px;
}


.logo-text .main-title {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    letter-spacing: 0.5px;
}

.logo-text .sub-title {
    font-size: 13px;
    color: #666;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 20px; /* Adds space from right edge */
}

.nav-links li a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #007bff;
}

.hamburger {
    display: none;
}


/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .logo {
        justify-content: flex-start;
        width: auto;
    }

    .hamburger {
        display: block;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: #000;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 12px;
        margin-top: 10px;
    }

    .nav-links.active {
        display: flex;
    }
}



.breadcrumb-container {
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 12px 40px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.breadcrumb-container a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-container span {
    margin: 0 6px;
    color: #555;
}

.carousel {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.carousel-images {
  display: flex;
  width: 100%;
}

.carousel-item {
  flex: 0 0 100%;
  max-width: 100%;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.carousel-controls button {
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 12px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.carousel-controls button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}



/* === Responsive Styles for Mobile Devices === */
@media (max-width: 768px) {
    .carousel-item img {
        height: 250px; /* smaller height for mobile */
    }

    .carousel-controls {
        padding: 0 10px;
    }

    .carousel-controls button {
        padding: 8px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .carousel-item img {
        height: 180px;
    }

    .carousel-controls button {
        padding: 6px;
        font-size: 16px;
    }
}


/* Info Container Section */
.info-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, #a2c2f7, #f0f7ff); /* Light blue gradient */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.15); /* Darker shadow on right */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-container:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 12px 12px 35px rgba(0, 0, 0, 0.2); /* Slightly deeper shadow on hover */
}

.info-container h2 {
    font-size: 36px; /* Larger font size */
    margin-bottom: 16px;
    font-weight: 700;
    color: #333; /* Dark gray for contrast */
    letter-spacing: 1px; /* Slight spacing for a clean look */
}

.info-container h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #007bff; /* Soft blue for subheading */
    font-weight: 500;
}

.info-container p {
    font-size: 18px;
    color: #555; /* Soft gray for the text */
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
    opacity: 0.9; /* Slight faded text for readability */
}

/* Optional: Add icon before text */
.info-container .info-icon {
    font-size: 48px;
    color: #007bff; /* Matching soft blue for icon */
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-container {
        padding: 30px;
    }

    .info-container h2 {
        font-size: 30px;
    }

    .info-container h3 {
        font-size: 22px;
    }

    .info-container p {
        font-size: 16px;
    }
}


/* Unique Footer Styling */
.unique-footer {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    font-size: 16px; /* Larger font size for general text */
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px; 
  }
  
  .footer-left, .footer-right {
    flex: 1;
    min-width: 280px; /* Larger width for both sections */
  }
  
  .footer-left h4, .footer-right h4 {
    font-size: 22px; /* Increased font size for headers */
    font-weight: 600;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 1px; /* Slightly more letter-spacing */
  }
  
  .footer-left p, .footer-right p {
    font-size: 16px; /* Increased font size for text */
    line-height: 1.8;
    margin: 8px 0;
    letter-spacing: 0.5px; /* Slightly more letter spacing */
  }
  
  .footer-left a, .footer-right a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-left a:hover, .footer-right a:hover {
    color: #0496f8;
  }
  
  .footer-right ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-right ul li {
    margin-bottom: 12px; /* Increased space between list items */
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
  }
  
  /* Remove this if you're no longer using social icons */
.social-links {
    display: none; /* Or remove this block entirely */
  }
  
  .social-icon {
    display: none; /* Hides any remaining social icon styles */
  }
  
  
  .social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .social-icon.github:hover {
    background: #333;
  }
  
  .social-icon.twitter:hover {
    background: #1DA1F2;
  }
  
  .social-icon.youtube:hover {
    background: #FF0000;
  }
  
  .social-icon.facebook:hover {
    background: #3b5998;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-left, .footer-right {
      text-align: center;
      min-width: 100%;
    }
  
    .social-links {
      margin-top: 20px;
    }
  }
  
  

/* === Contact Form Section Styling === */
.email-form-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(to right, #f8fbff, #e0f0ff);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.email-form-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #003366;
    margin-bottom: 10px;
}

.email-form-section p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
}

.email-form-section .required {
    color: #d62828;
}

.email-form label {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    color: #004080;
    font-size: 1rem;
}

.email-form input,
.email-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 8px;
    border: 1px solid #ccd6dd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.email-form input:focus,
.email-form textarea:focus {
    border-color: #0077cc;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 119, 204, 0.2);
}

.email-form textarea {
    resize: vertical;
    min-height: 120px;
}

.email-form .btn {
    display: inline-block;
    margin-top: 30px;
    background: linear-gradient(to right, #0077cc, #005fa3);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 119, 204, 0.4);
}

.email-form .btn:hover {
    background: linear-gradient(to right, #005fa3, #004080);
    transform: translateY(-2px);
}

/* === Contact Details Section === */
.contact-details {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ccd6dd;
    text-align: center;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #003366;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.contact-details a {
    color: #0077cc;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-details a:hover {
    color: #005fa3;
}

/* General Form Inputs */
.email-form input[type="text"],
.email-form input[type="email"],
.email-form input[type="file"],
.email-form select,
.email-form textarea {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: #f9f9f9;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Dropdown Styling */
.email-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23777" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    cursor: pointer;
}

/* On Focus */
.email-form input:focus,
.email-form select:focus,
.email-form textarea:focus {
    border-color: #5b9bd5;
    box-shadow: 0 0 5px rgba(91, 155, 213, 0.5);
    outline: none;
}

/* Submit Button */
.email-form .btn {
    background: linear-gradient(135deg, #007BFF, #5B9BD5);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.email-form .btn:hover {
    background: linear-gradient(135deg, #0056b3, #407fc9);
}

.custom-card {
    flex: 1 1 calc(25% - 24px); /* 4 cards per row with gap */
    max-width: calc(25% - 24px); /* ensures no overflow */
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 350px; /* <-- added fixed height */
}



.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    width: 100%;
    height: 200px; /* Adjusted image height */
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 8px;
}

.card-content {
    padding: 10px; /* Reduced padding */
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 16px; /* Reduced font size */
    font-weight: bold;
    margin-bottom: 16px; /* Reduced margin */
    color: #333;
}

.card-rating {
    font-size: 14px; /* Reduced font size */
    color: gold;
    margin-bottom: 10px; /* Reduced margin */
}

.read-more-btn {
    background-color: #007bff;
    color: white;
    padding: 8px 14px; /* Reduced padding */
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #0056b3;
}


.products-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    /* padding: 140px 140px;  */
    padding-left: 200px;
    padding-right: 200px;
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 30px;
    min-height: 500px;
}


.product-details-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    min-height: 1000px;
}

.product-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.product-content {
    flex: 2;
    padding: 20px;
}

.product-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.product-rating {
    font-size: 1.4rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.product-category {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
}


.related-products {
    display: flex; /* Ensure cards are laid out in a row */
    flex-wrap: wrap; /* Allow wrapping of cards if they overflow */
    gap: 20px; /* Space between cards */
    margin-top: 20px; /* Add space above the section */
    margin-bottom: 20px; /* Optional: space below the section */
    justify-content: start; /* Aligns the cards to the left */
}

.info-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    margin: 30px;
  }
  
  .info-wrapper .info-container {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    /* background-color: #f9f9f9; */
  }

  .info-wrapper button {
    padding: 10px 20px;
    background-color: #007BFF; /* Bootstrap blue */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
  }
  
  .info-wrapper button:hover {
    background-color: #0056b3;
  }
  
  
  @media (max-width: 768px) {
    .products-container {
        padding: 40px 20px;
        gap: 20px;
    }

    .custom-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .product-details-container {
        flex-direction: column;
        padding: 15px;
    }

    .product-image, 
    .product-content {
        flex: 1 1 100%;
        padding: 10px;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .product-rating,
    .product-description,
    .product-category {
        font-size: 1rem;
    }
}

.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #fff;
      width: 100%;
      padding: 10px 0;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 999;
      border-top: 1px solid #ccc;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links li {
      margin: 10px 0;
      text-align: center;
    }
  }
  
