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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FAFAFA;
}

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

/* Top Strip */
.top-strip {
    background: #5D4037;
    color: #FFFFFF;
    text-align: center;
    padding: 0.2rem 0;
    font-size: 0.8rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #FFFFFF, #FFF8DC);
    padding: 0.01rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    margin: 5px auto;
    display: block;
    background:rgb(91, 3, 3);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-weight: 900;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    display: block;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.3rem;
}

.nav-link:hover {
    color: #8B4513;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFF8DC;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 1rem;
}

.dropdown-link:hover {
    background: #FFFFFF;
    color: #8B4513;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('agrbatti.png') center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #FFFFFF;
    z-index: 1;
    position: relative;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    color: #FFFFFF;
    z-index: 2;
    position: relative;
    padding-left: 3rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #FFD700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 600;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: left;
    justify-content: left;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide .hero-content {
    position: relative;
    z-index: 2;
    padding-left: 3rem;
    max-width: 600px;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 100;
    transition: background 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Menu Toggle Buttons */
.menu-toggle, .menu-close {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000000;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle:hover, .menu-close:hover {
    color: #8B4513;
}

.cta-button {
    display: inline-block;
    background: #FFD700;
    color: #8B4513;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Content Grid Section */
.h2{
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 2rem;
    font-family: Arial, Helvetica, sans-serif;
}
.content-grid {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8DC, #FAEBD7);
    position: relative;
}

.grid-2x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
}

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

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.grid-item h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.grid-item p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Certificates Section */
.certificates {
    padding: 40px 0;
    background: linear-gradient(135deg, #5D4037, #8D6E63);
    color: #FFFFFF;
    text-align: center;
}

.certificates h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    font-weight: bold;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.certificate-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    

}

.certificate-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.certificate-item h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.certificate-item p {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF, #FFF8DC);
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.product-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #8B4513;
}

.product-card p {
    padding: 0 1rem 1rem;
    color: #666;
    line-height: 1.6;
}

.product-link {
    display: inline-block;
    background: #D2691E;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.product-link:hover {
    background: #8B4513;
}

/* Footer */
footer {
    background: black;
    color: black;
    text-align: center;
    padding: 2rem 0;
}

/* Page Hero */
.page-hero {
    background: url('dhoop\ stick.png') center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000;

}

.page-hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
    text-align: left;
    text-decoration: solid;
}

.page-hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* Product Details */
.product-details {
    background:linear-gradient(135deg, #606044d5, #8c6e47)
                url('Gemini_Generated_Image_nf55t7nf55t7nf55.png') center/cover;
}

.product-showcase {
    margin-top: 3rem;
}

.data-card {
    display: flex;
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-images .main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    margin-bottom: 1rem;
}

.image-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns:250px;
    overflow-x: auto;
    gap: 0.5rem;
}

.image-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.product-info h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 2rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D2691E;
    font-weight: bold;
    font-size: 1.2rem;
}

.product-highlights {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem;
    /* display:inline-block; */
}

.highlight-item {
    background:#dbdcbe78;
    padding: 6rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(114, 68, 35, 19%);
    text-align: left;
}

.highlight-item h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Product Categories */
.product-categories {
    margin-top: 4rem;
}

.product-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 3rem;
}

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

.category-card {
    background: whitesmoke;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
}

.category-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    color: #666;
    line-height: 1.6;
}

/* Product Card Grid */
.product-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card-grid .product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card-grid .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
}

.product-card-grid .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-grid .product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-grid .product-info h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-card-grid .product-details {
    margin-bottom: 1.5rem;
}

.product-card-grid .product-details p {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.enquiry-btn {
    background: #D2691E;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}

.enquiry-btn:hover {
    background: #8B4513;
    transform: translateY(-2px);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Certification Page Styles */
.cert-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cert-icon h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.cert-content {
    margin-bottom: 1.5rem;
}

.cert-content h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cert-content p {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cert-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.cert-details span {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.cert-details strong {
    color: #FFD700;
}

/* Cert Benefits Section */
.cert-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8DC, #FAEBD7);
}

.cert-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.benefit-item h3 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.benefit-item p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: #8B4513;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form Styles */
.enquiry-form {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    max-width: 900px;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B4513;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

/* Footer Styles */
.footer-image {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Certificate Slider Section */
.certificate-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #5D4037, #8D6E63);
    color: #FFFFFF;
}

.certificate-slider-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    font-weight: bold;
}

.certificate-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.certificate-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.certificate-card {
    min-width: 350px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.certificate-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: relative;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certificate-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #FFFFFF;
    padding: 20px;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

.certificate-info {
    padding: 20px;
}

.certificate-info h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.certificate-info p {
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.5;
}

.certificate-slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cert-slider-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 2px solid #FFD700;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cert-slider-btn:hover {
    background: #FFD700;
    color: #5D4037;
    transform: translateY(-2px);
}

/* Responsive 3-Card Layout */
.responsive-card-section {
    padding: 4rem 0;
    background: #F5F5DC;
}

.featured-card-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
}

.featured-card {
    flex: 0 0 calc(7.69% - 1rem);
    min-width: 280px;
    max-width: 300px;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsive-card-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.responsive-card {
    flex: 0 0 calc(10% - 1.8rem);
    min-width: 200px;
    max-width: 220px;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}

.responsive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
}

.card-image-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.responsive-card h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.responsive-card .enquiry-btn {
    background: #FF8C00;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.responsive-card .enquiry-btn:hover {
    background: #FF6600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Mobile Responsive for 3-Card Layout */
@media (max-width: 768px) {
    .responsive-card-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .responsive-card {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .responsive-card-section {
        padding: 2rem 0;
    }
    
    .responsive-card {
        padding: 1.5rem;
    }
    
    .responsive-card h3 {
        font-size: 1.3rem;
    }
}
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 10px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.3rem;
        width: 100%;
        text-align: center;
    }
    
    /* .logo img {
        width: 1000px;
        height: 80px;
        margin: 0 auto;
        float: none;
    } */
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #FFF8DC;
        margin-top: 0.3rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .page-hero-content h2 {
        font-size: 2rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        
    }
    
    .grid-2x4 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .certificate-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .page-hero-content h2 {
        font-size: 1.8rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
}