/* ==================== RESET & BASIC ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 100px; /* Navbar ke liye space (transparent hai isliye) */
}

/* ==================== NAVBAR – FULLY TRANSPARENT ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: transparent; /* Poora transparent */
    transition: all 0.4s ease;
    z-index: 1000;
}

/* Scroll pe thoda background taake links nazar aayein */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
    padding: 15px 5%;
}

/* Logo */
.navbar .logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo {
    height: 60px;
}

/* Desktop Nav Links – White text top pe */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: black;                      /* Top pe black */
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd60a;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background-color: #ffd60a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Scroll pe dark text */
.navbar.scrolled .nav-link {
    color: #333 !important;
}

.navbar.scrolled .nav-link:hover {
    color: #28a745 !important;
}

.navbar.scrolled .nav-link::after {
    background-color: #28a745;
}

/* ==================== HAMBURGER MENU ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background-color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background-color: #333;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        padding: 120px 20px 60px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: white !important;
        font-size: 1.6rem;
        margin: 25px 0;
    }

    .nav-link:hover {
        color: #ffd60a !important;
    }

    body {
        padding-top: 90px;
    }

    .navbar .logo {
        height: 60px;
    }

    .navbar.scrolled .logo {
        height: 55px;
    }
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;                    /* Full screen height */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Dark overlay for better text visibility */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

/* Hero Text */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-btn {
    background-color: #28a745;
    color: white;
    padding: 16px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(40,167,69,0.5);
}

.hero-btn:hover {
    background-color: #218838;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(40,167,69,0.7);
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    color: white;
    background-color: rgba(0,0,0,0.4);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    user-select: none;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.prev:hover, .next:hover {
    background-color: rgba(40,167,69,0.8);
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .prev, .next {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }
    
    .prev { left: 15px; }
    .next { right: 15px; }
}

/* ==================== CUTE SMALL PRODUCT CARDS ==================== */
.cute-products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cute-products h2 {
    font-size: 2.5rem;
    color: #28a745;
    font-weight: 900;
}

.cute-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.cute-card {
    width: 320px;
    max-width: 100%;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.cute-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(40,167,69,0.15);
}

.cute-card-image {
    height: 220px;
    background-color: #f0f8f0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cute-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.cute-card:hover .cute-card-image img {
    transform: scale(1.08);
}

.cute-card-body {
    padding: 25px 20px;
}

.cute-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.cute-card-body p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cute-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #28a745;
    margin-bottom: 20px;
}

.cute-inquire-btn {
    background-color: #ff69b4;
    color: white;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,105,180,0.3);
    display: inline-block;
}

.cute-inquire-btn:hover {
    background-color: #ff1493;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,105,180,0.5);
}

/* Responsive – Mobile pe perfect */
@media (max-width: 768px) {
    .cute-card {
        width: 300px;
    }
    .cute-card-image {
        height: 200px;
    }
    .cute-card-body h3 {
        font-size: 1.4rem;
    }
    .cute-price {
        font-size: 1.3rem;
    }
}

/* ==================== OUR TOP PRODUCTS HEADING ==================== */
.cute-products h2 {
    text-align: center;                    /* Perfect center */
    font-size: 2.8rem;                     /* Bara aur bold */
    font-weight: 900;
    color: #28a745;                        /* Green color */
    margin: 0 auto 60px auto;              /* Bottom space + center */
    position: relative;
    max-width: 90%;
    line-height: 1.2;
}

/* Optional: Thoda underline effect for beauty */
.cute-products h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background-color: #28a745;
    margin: 20px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(40,167,69,0.3);
}

/* Mobile pe thoda chhota */
@media (max-width: 768px) {
    .cute-products h2 {
        font-size: 2.3rem;
        margin-bottom: 50px;
    }
    .cute-products h2::after {
        width: 80px;
        height: 4px;
    }
}

/* ==================== NEW MODERN FOOTER ==================== */
.modern-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 80px 0 30px;
    border-top: 5px solid #28a745;
    margin-top: 100px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-section {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-logo-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 1.6rem;
    color: #666;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #28a745;
    transform: translateY(-5px);
}

.footer-links-section, .footer-contact-section {
    flex: 1;
    min-width: 250px;
}

.footer-links-section h4, .footer-contact-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 30px;
}

.footer-links-section ul, .footer-contact-section ul {
    list-style: none;
    padding: 0;
}

.footer-links-section li, .footer-contact-section li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links-section a {
    color: #666;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-links-section a:hover {
    color: #28a745;
}

.footer-contact-section i {
    color: #28a745;
    font-size: 1.2rem;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.footer-bottom p {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-links-section ul, .footer-contact-section ul {
        text-align: center;
    }
    .footer-links-section li, .footer-contact-section li {
        justify-content: center;
    }
}

/* ==================== WHY CHOOSE ADMAX? – CUTE SMALL 3 CARDS ==================== */
.why-choose-us {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #28a745;
    margin-bottom: 60px;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.cute-feature-card {
    background: white;
    width: 300px;
    padding: 30px 20px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
    flex: 1 1 300px;
    max-width: 320px;
}

.cute-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(40,167,69,0.2);
}

.feature-icon {
    height: 100px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-height: 100px;
    max-width: 100px;
    object-fit: contain;
    border-radius: 15px;
    padding: 10px;
    background-color: #f0fff0;
}

.cute-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.cute-feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Exactly 3 cards in one line on desktop */
@media (min-width: 992px) {
    .features-grid {
        flex-wrap: nowrap;
    }
    .cute-feature-card {
        flex: 1;
    }
}

/* Tablet pe 2, Mobile pe 1 */
@media (max-width: 991px) {
    .features-grid {
        flex-direction: column;
    }
    .cute-feature-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* ==================== STRONG CALL TO ACTION SECTION ==================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.cta-content p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    font-weight: 500;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37,211,102,0.5);
}

.call-btn {
    background-color: white;
    color: #28a745;
}

.call-btn:hover {
    background-color: #f0f0f0;
    color: #1e7e34;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
    .cta-content p {
        font-size: 1.3rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-btn {
        width: 80%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 80px 0;
    }
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* ==================== CTA BUTTONS – BILKUL BARABAR & BEAUTIFUL ==================== */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-btn {
    padding: 20px 50px;              /* Same padding – equal width */
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-width: 300px;                /* Minimum width – dono barabar */
    height: 75px;                    /* Fixed height – perfectly equal */
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    white-space: nowrap;             /* Text wrap na ho */
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37,211,102,0.5);
}

.call-btn {
    background-color: white;
    color: #28a745;
    border: 4px solid #28a745;       /* Thick green border for beauty */
}

.call-btn:hover {
    background-color: #28a745;
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(40,167,69,0.4);
}

/* Mobile pe stack aur barabar */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 30px;
    }
    .cta-btn {
        width: 85%;
        max-width: 400px;
        min-width: auto;
    }
}

/* ==================== CUTE BEAUTIFUL FAQ ==================== */
.cute-faq {
    padding: 80px 0;
    background-color: #f5fffa;
}

.faq-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
    color: #28a745;
    margin-bottom: 60px;
    position: relative;
}

.faq-title::after {
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    background-color: #28a745;
    margin: 20px auto 0;
    border-radius: 10px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(40,167,69,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-card:hover {
    box-shadow: 0 15px 35px rgba(40,167,69,0.15);
    transform: translateY(-5px);
}

.faq-header {
    padding: 25px 30px;
    background-color: #f0fdf4;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
    transition: transform 0.4s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: #f8fffb;
}

.faq-card.active .faq-body {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-body p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    .faq-header {
        padding: 20px;
    }
    .faq-header h3 {
        font-size: 1.2rem;
    }
    .faq-card.active .faq-body {
        padding: 20px;
    }
}

/* ==================== CUTE CUSTOMER REVIEWS ==================== */
.reviews-section {
    padding: 90px 0;
    background-color: #f0fdf4;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
    color: #28a745;
    margin-bottom: 70px;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.review-card {
    background: white;
    width: 360px;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(40,167,69,0.1);
    transition: all 0.4s ease;
    border: 2px solid #e8f5e8;
}

.review-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(40,167,69,0.2);
    border-color: #28a745;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.customer-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #28a745;
    margin-right: 20px;
    flex-shrink: 0;
}

.customer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-top: 5px;
}

.review-body p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

/* 3 cards on desktop, 1 on mobile */
@media (max-width: 992px) {
    .review-card {
        width: 340px;
    }
}

@media (max-width: 576px) {
    .reviews-section h2 {
        font-size: 2.3rem;
    }
    .review-card {
        width: 300px;
        padding: 30px;
    }
    .customer-photo {
        width: 60px;
        height: 60px;
    }
}

/* ==================== ABOUT US SECTION ==================== */
.about-section {
    padding: 80px 20px;
    min-height: 100vh;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    font-size: 3.8em;
    font-weight: bold;
    color: #00ff00 !important; /* Bright Green */
    background: linear-gradient(to right, #0b7a0b, #00cc00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 70px;
    font-family: 'Segoe UI', sans-serif;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

.text-content {
    flex: 1 1 450px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: left;
    line-height: 1.8;
    font-size: 1.1em;
    backdrop-filter: blur(10px);
}

.highlight-year {
    display: block;
    font-size: 4.5em;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    border-radius: 50%;
    margin: 30px auto;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 107, 53, 0.6); }
    to { box-shadow: 0 0 40px rgba(255, 107, 53, 0.9); }
}

.image-box {
    flex: 1 1 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-box:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
}

/* Unique styles */
.image-box.left {
    transform: rotate(-3deg);
    border: 10px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.image-box.right {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
    transform: rotate(3deg);
}

/* Responsive */
@media (max-width: 992px) {
    .content {
        flex-direction: column;
    }
    .image-box.left, .image-box.right {
        transform: none;
    }
    .highlight-year {
        width: 150px;
        height: 150px;
        line-height: 150px;
        font-size: 3.5em;
    }
    h1 {
        font-size: 2.8em;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-heading {
        font-size: 3em;
    }
}

/* FEEDBACK PAGE */
.feedback-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 20px;
}
.feedback-form, .feedback-display {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.feedback-form h2, .feedback-display h2 {
    text-align: center;
    color: #1a2a44;
    margin-bottom: 25px;
    font-size: 28px;
}
.feedback-form input, .feedback-form select, .feedback-form textarea {
    width: 100%;
    padding: 15px;
    margin: 12px 0;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 16px;
}
.feedback-form input:focus, .feedback-form select:focus, .feedback-form textarea:focus {
    border-color: #3498db;
    outline: none;
}
.submit-feedback {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.submit-feedback:hover { background: #219a52; }

/* DISPLAY FEEDBACK */
.feedback-item {
    background: #f8fbff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #3498db;
}
.feedback-item.sample { border-left-color: #f1c40f; }
.stars { color: #f1c40f; font-weight: bold; }
.feedback-item h4 { margin: 10px 0; color: #1a2a44; }
.feedback-item small { color: #777; }

@media (max-width: 992px) {
.feedback-container { grid-template-columns: 1fr; }
}

.stars {
    color: #f1c40f;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}
.rating-text {
    color: #e67e22;
    font-size: 16px;
    margin-left: 10px;
}
.feedback-item h4 {
    color: #1a2a44;
    font-size: 20px;
    margin: 8px 0;
}
.time {
    color: #777;
    font-style: italic;
}

.products-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3em;
    color: #27ae60;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 3px 8px rgba(231,76,60,0.4);
}

.image-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .image-box img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.inquiry-text {
    color: #777;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.inquiry-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37,211,102,0.3);
}

.inquiry-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2.5em; }
}

.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.image-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer; /* Sirf image pe pointer cursor */
}

.zoomable-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-box:hover .zoomable-img {
    transform: scale(1.1);
}

/* Button ko click block nahi hoga */
.product-info {
    padding: 20px;
    text-align: center;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(255,255,255,0.3);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #ff4444;
}

.ceo-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
}

.ceo-card {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.ceo-photo {
    width: 300px;
    height: 300px;
    border-radius: 22%;
    object-fit: cover;
    border: 8px solid #27ae60;
}

.ceo-info h3 {
    font-size: 2.2em;
    color: #1a2a44;
    margin-bottom: 10px;
}

.ceo-title {
    font-size: 1.3em;
    color: #27ae60;
    margin-bottom: 20px;
}

.ceo-bio {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.ceo-quote {
    font-size: 1.2em;
    font-style: italic;
    color: #2c3e50;
    border-left: 5px solid #27ae60;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .ceo-card {
        flex-direction: column;
        text-align: center;
    }
    .ceo-photo {
        width: 250px;
        height: 250px;
    }
}

.footer-bottom {
    text-align: center;
    padding: 40px 20px 30px;
    background: #e9ecef; /* Light gray background jaise screenshot mein */
    color: #6c757d;
    font-size: 0.95em;
}

.copyright {
    margin: 0 0 15px 0;
    font-weight: 500;
}

.powered-by {
    margin: 0;
    font-style: italic;
}

.gluck-badge {
    display: inline-block;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.05em;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        padding: 30px 15px;
    }
    .gluck-badge {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }
}