 /* Reset and Base Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     text-decoration: none;
 }

 a {
     text-decoration: none;
 }

 body {
     background-color: #f8f9fa;
     color: #333;
     line-height: 1.6;
 }

 /* Navbar Styles */
 .navbar {
     background-color: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     padding: 1rem 5%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: sticky;
     top: 0;
     z-index: 100;
 }

 .logo {
     font-size: 1.8rem;
     font-weight: 700;
     color: #01B5A9;
     text-decoration: none;
 }

 .logo span {
     color: #01B5A9;
 }

 .nav-links {
     display: flex;
     list-style: none;
 }

 .nav-links li {
     margin-left: 2rem;
     position: relative;
 }

 .nav-links>li>a {
     text-decoration: none;
     color: #2c3e50;
     font-weight: 500;
     transition: color 0.3s;
     display: flex;
     align-items: center;
 }

 .nav-links a:hover {
     color: #e74c3c;
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background-color: white;
     width: 200px;
     border-radius: 5px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 100;
 }

 .dropdown-menu li {
     margin: 0;
     padding: 0.5rem 1rem;
     border-bottom: 1px solid #eee;
 }

 .dropdown-menu li:last-child {
     border-bottom: none;
 }

 .dropdown-menu a {
     color: #2c3e50;
     display: block;
     padding: 0.5rem 0;
 }

 .nav-links li:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
 }

 .dropdown-toggle::after {
     content: '\f078';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     margin-left: 5px;
     font-size: 0.8rem;
 }

 .menu-toggle {
     display: none;
     cursor: pointer;
     font-size: 1.5rem;
 }

 /* Hero Slider Styles */
 .hero {
     height: 80vh;
     position: relative;
     overflow: hidden;
 }

 .slider {
     width: 100%;
     height: 100%;
     position: relative;
 }

 .slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease-in-out;
     background-size: cover;
     background-position: center;
 }

 .slide.active {
     opacity: 1;
 }

 .slide-content {
     position: absolute;
     bottom: 20%;
     left: 10%;
     color: white;
     background-color: rgba(0, 0, 0, 0.6);
     padding: 2rem;
     max-width: 500px;
     border-radius: 5px;
 }

 .slide-content h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .slide-content p {
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
 }

 .slider-nav {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     z-index: 10;
 }

 .slider-nav button {
     width: 12px;
     height: 12px;
     margin: 0 5px;
     border-radius: 50%;
     border: none;
     background-color: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: background-color 0.3s;
 }

 .slider-nav button.active {
     background-color: white;
 }

 /* Section Styles */
 .section {
     padding: 5rem 5%;
 }

 .section-title {
     text-align: center;
     margin-bottom: 3rem;
     font-size: 2.2rem;
     color: #2c3e50;
     position: relative;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background-color: #e74c3c;
 }

 /* Product Card Styles */
 .products-container {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 2rem;
 }

 .product-card {
     background-color: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .product-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .product-img {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }

 .product-info {
     padding: 1.5rem;
 }

 .product-title {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
     color: #2c3e50;
 }

 .price-container {
     display: flex;
     align-items: center;
     margin-bottom: 1rem;
 }

 .selling-price {
     font-size: 1.3rem;
     font-weight: 700;
     color: #e74c3c;
     margin-right: 1rem;
 }

 .mrp {
     font-size: 1rem;
     color: #7f8c8d;
     text-decoration: line-through;
 }

 /* Contact Section Styles */
 .contact {
     background-color: #2c3e50;
     color: white;
 }

 .contact .section-title {
     color: white;
 }

 .contact .section-title::after {
     background-color: #e74c3c;
 }

 .contact-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 3rem;
 }

 .contact-info h3 {
     font-size: 1.5rem;
     margin-bottom: 1.5rem;
 }

 .contact-info p {
     margin-bottom: 1rem;
 }

 .social-links {
     display: flex;
     margin-top: 2rem;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     margin-right: 1rem;
     color: white;
     text-decoration: none;
     transition: background-color 0.3s;
 }

 .social-links a:hover {
     background-color: #e74c3c;
 }

 .contact-form input,
 .contact-form textarea {
     width: 100%;
     padding: 1rem;
     margin-bottom: 1rem;
     border: none;
     border-radius: 5px;
     background-color: rgba(255, 255, 255, 0.1);
     color: white;
 }

 .contact-form input::placeholder,
 .contact-form textarea::placeholder {
     color: rgba(255, 255, 255, 0.7);
 }

 .contact-form textarea {
     height: 150px;
     resize: vertical;
 }

 .submit-btn {
     background-color: #e74c3c;
     color: white;
     border: none;
     padding: 1rem 2rem;
     border-radius: 5px;
     cursor: pointer;
     font-weight: 600;
     transition: background-color 0.3s;
 }

 .submit-btn:hover {
     background-color: #c0392b;
 }

 /* Footer Styles */
 footer {
     background-color: #1a252f;
     color: white;
     text-align: center;
     padding: 2rem;
 }

 .footer-links {
     display: flex;
     justify-content: center;
     list-style: none;
     margin-bottom: 1.5rem;
 }

 .footer-links li {
     margin: 0 1rem;
 }

 .footer-links a {
     color: white;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: #e74c3c;
 }

 .copyright {
     font-size: 0.9rem;
     color: #7f8c8d;
 }

 /* Responsive Styles */
 @media (max-width: 992px) {
     .dropdown-menu {
         position: static;
         opacity: 1;
         visibility: visible;
         width: 100%;
         box-shadow: none;
         display: none;
     }

     .nav-links li:hover .dropdown-menu {
         display: block;
     }
 }

 @media (max-width: 768px) {
     .menu-toggle {
         display: block;
     }

     .nav-links {
         position: fixed;
         top: 70px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 70px);
         background-color: white;
         flex-direction: column;
         align-items: flex-start;
         padding: 2rem 5%;
         transition: left 0.3s;
         overflow-y: auto;
     }

     .nav-links.active {
         left: 0;
     }

     .nav-links li {
         margin: 1rem 0;
         width: 100%;
     }

     .dropdown-menu {
         position: static;
         opacity: 1;
         visibility: visible;
         width: 100%;
         box-shadow: none;
         display: none;
         margin-top: 0.5rem;
         padding-left: 1rem;
     }

     .nav-links li:hover .dropdown-menu {
         display: block;
     }

     .hero {
         height: 60vh;
     }

     .slide-content {
         left: 5%;
         max-width: 90%;
         padding: 1rem;
     }

     .slide-content h2 {
         font-size: 1.8rem;
     }

     .section {
         padding: 3rem 5%;
     }
 }

 @media (max-width: 480px) {
     .hero {
         height: 50vh;
     }

     .slide-content h2 {
         font-size: 1.5rem;
     }

     .slide-content p {
         font-size: 1rem;
     }

     .section-title {
         font-size: 1.8rem;
     }
 }