/* Premium About Section */
.premium-about-section {
    background: #ffffff;
    padding: 15px 0;
}

.about-img-wrap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.about-img-wrap:hover img {
    transform: translateY(-6px);
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

.about-title .highlight {
    color: #1A8F43;
}

.about-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #4e4e4e;
}

/* Features */
.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
}

.feature-icon {
    font-size: 32px;
    background: #f1f1f1;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h5 {
    font-weight: 700;
    margin: 0;
}

.feature-item p {
    margin: 0;
    color: #6b6b6b;
    font-size: 14px;
}

/* Premium Button */
.premium-btn {
    background: linear-gradient(135deg, #e63928, #ff7a00);
    padding: 15px 38px;
    font-size: 18px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.4);
    color: #fff;
}


/*mission and vision home page *

/* Premium Mission & Vision Section */
.premium-mv-section {
    background: #ffffff;
    padding: 30px 0;
}

.mv-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

.mv-title .highlight {
    color: #1A8F43;
}

.mv-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #4e4e4e;
}

/* Mission Vision Box */
.mv-box {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: #f8f8f8;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.mv-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    font-size: 38px;
    width: 60px;
    height: 60px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.mv-box h4 {
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 700;
}

.mv-box p {
    margin: 0;
    color: #6b6b6b;
    font-size: 15px;
}

/* Mission Vision Image */
.mv-img-wrap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.mv-img-wrap:hover img {
    transform: translateY(-6px);
}



.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.animate-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation (delay applied dynamically using JS) */
.stagger {
    transition-delay: var(--delay, 0s);
}


/* End of mission and vision home page */

/* Start of why choose us section */
.modern-section .choose-card {
    padding: 25px;
    border-radius: 12px;
    background: #fff;
    transition: 0.3s;
}

.modern-section .choose-card:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.modern-section .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 26px;
    color: #0a7cff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    color: #6c757d;
}

.gradient-box {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    padding: 25px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    transition: all 0.35s ease;
}

.gradient-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}

.gradient-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    margin: 0 auto 12px;
    backdrop-filter: blur(4px);
}


/** product seciton **/

.product-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f8f8f8;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.12);
}

.product-title {
    font-size: 17px;
    font-weight: 600;
    margin: 8px 0;
}

.product-pricing {
    margin-top: 6px;
}

.mrp {
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #008000;
}

/* Discount Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff0000, #ffdd00);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.enquiry-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #ff0000, #ffdd00);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.enquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.browse-all-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff0000, #ffdd00);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.browse-all-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}



/* End of product seciton */

/* Start of gallery section */

.premium-gallery .gallery-card {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
    padding-bottom: 18px;
}

.premium-gallery .gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.gallery-image {
    height: 270px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.12);
}

.gallery-title {
    margin-top: 15px;
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 700;
    color: #2b8ac4;
}

.gallery-link-text {
    font-size: 14px;
    color: #ff0000;
    font-weight: 600;
}

.mv-box {
    display: flex;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    align-items: flex-start;
}

.mv-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.mv-icon {
    width: 105px;
    height: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff0000, #ffdd00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.mv-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.mv-box p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* End of gallery section */

/* Start of founder message */

.founder-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    text-align: center;
    transition: 0.35s ease;
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.18);
}

.founder-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffdd00;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-name {
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px;
}

.founder-role {
    font-size: 15px;
    font-weight: 600;
    color: rgb(6, 137, 131);
    margin-bottom: 15px;
}

.founder-message {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-top: 10px;
}

