* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.enquiry-btn {
    padding: 12px 20px;
    background: #009688;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-btn:hover {
    background: #00796b;
}


.home-slider-container *,
.home-slider-container *::before,
.home-slider-container *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Slider Container */
.home-slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #000;
    /* Prevent slider from affecting other elements */
    contain: content;
}

.home-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-slider-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.home-slider-item.active {
    opacity: 1;
    visibility: visible;
}

.home-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Content */
.home-slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.home-slider-text-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.home-slider-text-animation.active {
    opacity: 1;
    transform: translateY(0);
}

.home-slider-delay-1 {
    transition-delay: 0.3s;
}

.home-slider-delay-2 {
    transition-delay: 0.6s;
}

.home-slider-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 0.5em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-slider-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin: 0.5em 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation zones */
.home-slider-nav-zone {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    cursor: pointer;
    z-index: 3;
    background: transparent;
    transition: background-color 0.3s ease;
}

.home-slider-nav-zone:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.home-slider-nav-prev {
    left: 0;
}

.home-slider-nav-next {
    right: 0;
}

/* Overlay */
.home-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1;
}

/* Navigation Dots */
.home-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.home-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.home-slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Media Queries */
@media (max-width: 1024px) {
    .home-slider-container {
        height: 70vh;
    }

    .home-slider-content {
        width: 85%;
        padding: 18px;
    }

    .home-slider-content h2 {
        font-size: clamp(1.8rem, 4vw, 3.5rem);
    }

    .home-slider-content p {
        font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    }
}

@media (max-width: 768px) {
    .home-slider-container {
        height: 60vh;
    }

    .home-slider-content {
        width: 90%;
        padding: 15px;
    }

    .home-slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .home-slider-container {
        height: 50vh;
    }

    .home-slider-content {
        padding: 10px;
    }
}

/**************************/
    /* Styling for the SI Industries Welcome Section */
/* Scoped styles to avoid affecting other sections */
.nice-welcome-section {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
    background: #ffffff;
    max-width: 100%;
    margin: 0 auto;
}

.nice-welcome-image {
    flex: 1;
    position: relative;
    max-width: 50%;
}

.nice-welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.nice-welcome-image img:hover {
    transform: scale(1.02);
}

.nice-experience-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #0B4619; /* Dark green from logo */
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(11, 70, 25, 0.2);
}

.nice-years {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.nice-exp-text {
    display: block;
    font-size: 1rem;
    margin-top: 5px;
}

.nice-welcome-content {
    flex: 1;
    max-width: 50%;
    padding: 30px;
}

.nice-welcome-title {
    font-size: 2.5rem;
    color: #0B4619; /* Dark green from logo */
    font-family: 'Arial', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.nice-welcome-title span {
    font-weight: bold;
    color: #0B4619;
    border-bottom: 3px solid #8FBE55; /* Light green from logo */
}

.nice-welcome-subtitle {
    font-size: 1.4rem;
    color: #333333;
    font-style: italic;
    margin-bottom: 25px;
}

.nice-welcome-description {
    font-size: 1.1rem;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 30px;
}

.nice-welcome-points {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.nice-welcome-points li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #0B4619;
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #8FBE55; /* Light green from logo */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nice-welcome-points li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(11, 70, 25, 0.1);
}

.nice-welcome-points li::before {
    content: "✔";
    color: #8FBE55; /* Light green from logo */
    margin-right: 15px;
    font-size: 1.4rem;
    font-weight: bold;
}

.nice-discover-more {
    display: inline-block;
    padding: 12px 30px;
    background: #0B4619; /* Dark green from logo */
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #0B4619;
}

.nice-discover-more:hover {
    background: #ffffff;
    color: #0B4619;
    box-shadow: 0 4px 12px rgba(11, 70, 25, 0.2);
}

/* Responsive Styles - Maintaining the same breakpoints */
@media (max-width: 1024px) {
    .nice-welcome-section {
        padding: 40px 30px;
        gap: 30px;
    }

    .nice-welcome-title {
        font-size: 2.2rem;
    }

    .nice-welcome-subtitle {
        font-size: 1.2rem;
    }

    .nice-experience-box {
        padding: 15px;
    }

    .nice-years {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nice-welcome-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .nice-welcome-image,
    .nice-welcome-content {
        max-width: 100%;
    }

    .nice-experience-box {
        bottom: -10px;
        right: -10px;
        padding: 12px;
    }

    .nice-welcome-title {
        font-size: 2rem;
    }

    .nice-welcome-points li {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .nice-welcome-section {
        padding: 20px 15px;
    }

    .nice-welcome-title {
        font-size: 1.8rem;
    }

    .nice-welcome-subtitle {
        font-size: 1.1rem;
    }

    .nice-welcome-description {
        font-size: 1rem;
    }

    .nice-experience-box {
        padding: 10px;
    }

    .nice-years {
        font-size: 1.8rem;
    }

    .nice-exp-text {
        font-size: 0.9rem;
    }

    .nice-discover-more {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
/***********     WELCOME SECTION END    ***********/


/********   video CSS ******/
/********** VIDEO CSS END*****/


/*******************    OUR PRODUCTS *************/
.products-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, rgba(143, 190, 85, 0.1), rgba(11, 70, 25, 0.05));
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 70px;
    font-weight: bold;
    color: #0B4619;
    margin-bottom: 15px;
}

.section-header span {
    color: #8FBE55;
}

.header-underline {
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, #0B4619, #8FBE55);
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 24px;
    color: #666;
    margin-top: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: auto;
    padding: 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(11, 70, 25, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(11, 70, 25, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 70, 25, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 25px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .view-details {
    transform: translateY(0);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 24px;
    color: #0B4619;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.star {
    color: #8FBE55;
    font-size: 18px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.product-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0B4619;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more .arrow {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #8FBE55;
}

.read-more:hover .arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 56px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 15px;
    }
    
    .product-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 42px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 500px;
    }
    
    .product-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .header-underline {
        width: 100px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .product-content h3 {
        font-size: 20px;
    }
    
    .product-content p {
        font-size: 14px;
        min-height: 60px;
    }
    
    .view-details {
        font-size: 16px;
        padding: 10px 20px;
    }
}
/********************   OUR PRODUCTS END**************/

/****************** BRAND       START       ************/
.brand-section {
    padding: 60px 20px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.diagonal-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #fff 0%, #fff 50%, #f8f9fa 50%, #f8f9fa 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tagline {
    color: #4a8f3e;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1d3c25;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.brands-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-card {
    background: white;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 143, 62, 0.2);
    border-color: #4a8f3e;
}

.brand-logo-container {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card:hover .brand-logo-container {
    transform: scale(1.05);
}

.brand-name {
    font-size: 24px;
    color: #1d3c25;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.brand-category {
    font-size: 18px;
    color: #4a8f3e;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
}

.brand-description {
    text-align: center;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.brand-btn {
    background-color: #4a8f3e;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: auto;
}

.brand-btn:hover {
    background-color: #1d3c25;
    transform: scale(1.05);
}

.leaf-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234a8f3e' d='M12 2C17.5 2 22 6.5 22 12c0 5.5-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2zm0 2c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8z'/%3E%3C/svg%3E");
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover .leaf-decoration {
    opacity: 0.2;
}

/* Modal Styles */
.brand-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background-color: white;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.4s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.modal-title {
    color: #1d3c25;
    margin: 0;
    font-size: 28px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #555;
    transition: color 0.3s;
    padding: 0;
    line-height: 1;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #1d3c25;
}

.modal-body {
    padding: 30px;
}

.brand-detail-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.brand-detail-logo-container {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    flex-shrink: 0;
}

.brand-detail-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-detail-info {
    flex: 1;
}

.brand-slogan {
    font-size: 20px;
    color: #4a8f3e;
    margin-bottom: 15px;
    font-weight: 500;
}

.modal-description {
    line-height: 1.7;
    color: #444;
}

.product-section-title {
    font-size: 22px;
    color: #1d3c25;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

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

.product-name {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    color: #333;
}

/* Enhanced Responsive Styles */
@media screen and (max-width: 1024px) {
    .brands-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .brand-detail-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    /* Mobile-first approach - brands stack vertically on mobile */
    .brands-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-section {
        padding: 40px 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .brand-card {
        height: auto;
        min-height: 320px;
        padding: 25px 20px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .brand-logo-container {
        width: 100px;
        height: 100px;
    }
    
    .brand-name {
        font-size: 22px;
    }
    
    .brand-category {
        font-size: 16px;
    }
    
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-slogan {
        font-size: 18px;
    }
    
    .product-section-title {
        font-size: 20px;
    }
    
    .brand-detail-logo-container {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .brand-card {
        padding: 20px 15px;
    }
    
    .brand-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .product-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-content {
        width: 100%;
        border-radius: 10px;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .close-modal {
        font-size: 24px;
    }
    
    .brand-detail-logo-container {
        width: 80px;
        height: 80px;
    }
    
    .brand-slogan {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .product-section-title {
        font-size: 18px;
        margin: 20px 0 15px;
    }
    
    .product-item img {
        height: 130px;
    }
    
    .product-name {
        padding: 10px;
        font-size: 14px;
    }
}
/*****************  BRAND   END     ****************/

/*****************  start why choose us **/
.why-choose-us-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, rgba(11, 70, 25, 0.05), rgba(143, 190, 85, 0.1));
    text-align: center;
}

.why-choose-container {
    display: flex;
    max-width: 1400px;
    margin: 40px auto;
    gap: 40px;
}

.why-choose-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(11, 70, 25, 0.15);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(11, 70, 25, 0.9), transparent);
    padding: 30px 20px 20px;
    color: white;
    text-align: left;
}

.image-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.why-choose-content {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.reason-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(11, 70, 25, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(11, 70, 25, 0.12);
}

.reason-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #0B4619, #8FBE55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.reason-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.reason-text h4 {
    color: #0B4619;
    font-size: 18px;
    margin-bottom: 10px;
}

.reason-text p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.certifications {
    max-width: 1400px;
    margin: 60px auto 0;
    text-align: center;
}

.certifications h3 {
    color: #0B4619;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.certification-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.certification-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.certification-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(0.4);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.certification-logo:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.certification-logo span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-container {
        flex-direction: column;
    }
    
    .why-choose-image {
        max-height: 400px;
    }
    
    .why-choose-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 15px;
    }
    
    .why-choose-content {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .certification-logos {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .reason-card {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .reason-text {
        text-align: center;
    }
    
    .image-overlay h3 {
        font-size: 24px;
    }
    
    .certification-logo img {
        width: 60px;
        height: 60px;
    }
}
/* Why choose Us end */
