﻿/*=============== BANNER / SLIDER ===============*/
header .nav__data .nav__logo .logo-img,
.nav__data .nav__logo .logo-img,
.nav__logo .logo-img,
.logo-img {
    max-width: none !important;
    max-height: none !important;
    height: 64px !important; /* desired size: change 64px to 55/70 as needed */
    width: 160px !important;
    display: block !important;
    object-fit: contain !important;
    vertical-align: middle !important;
    transform: none !important;
}
/*=============== BANNER / SLIDER ===============*/
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: #fff;
}

/* Slides container */
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Each slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-size: cover;
    background-position: center;
}

    .slide.active {
        opacity: 1;
        z-index: 2;
    }

/* Dark overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* Banner content */
.banner-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 3;
    max-width: 600px;
    padding: 1rem;
    text-align: left;
}

    .banner-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .banner-content p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .banner-content .btn {
        background: #2196f3;
        padding: 0.75rem 1.75rem;
        border-radius: 6px;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }

        .banner-content .btn:hover {
            background: #1976d2;
        }

/* Dots navigation */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

    .dot.active {
        background: #2196f3;
        transform: scale(1.3);
        box-shadow: 0 0 8px rgba(33,150,243,0.8);
    }

/* Responsive */
@media screen and (max-width: 1152px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .banner-content .btn {
        padding: 0.6rem 1.5rem;
    }
}

@media screen and (max-width: 1118px) {
    .banner-content h1 {
        font-size: 2.2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 600px) {
    .banner-content {
        bottom: 30px;
        left: 20px;
        max-width: 90%;
    }

        .banner-content h1 {
            font-size: 1.6rem;
        }

        .banner-content p {
            font-size: 0.85rem;
        }

        .banner-content .btn {
            padding: 0.5rem 1.25rem;
            font-size: 0.9rem;
        }

    .dot {
        width: 18px;
        height: 18px;
        gap: 16px;
    }
}

.dropdown__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keeps heading aligned to left exactly like your screenshot */
}

.dropdown__icon {
    margin-bottom: 15px; /* space between icon and heading */
}

.dropdown__title {
    margin-bottom: 12px; /* normal spacing */
}

.dropdown__list {
    padding-left: 0; /* prevents pushing text forward */
    margin-left: 0; /* important! */
}

    .dropdown__list li {
        list-style: none;
        margin-left: 0; /* ensures items align under heading */
    }

@media screen and (max-width: 300px) {
    .banner-content h1 {
        font-size: 1.2rem;
    }

    .banner-content p {
        font-size: 0.7rem;
    }

    .banner-content .btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .dot {
        width: 14px;
        height: 14px;
    }
}

/*=============== WHO WE ARE SECTION ===============*/
.who-we-are-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #f0f8ff, #e0f2ff);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .who-we-are-section h2 {
        font-size: 2rem;
        font-weight: var(--font-semi-bold);
        color: var(--title-color);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .who-we-are-section .who-description {
        font-size: var(--normal-font-size);
        color: var(--text-color);
        max-width: 800px;
        margin: 0 auto 3rem auto;
        line-height: 1.6;
    }

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.who-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .who-item i {
        font-size: 2rem;
        color: var(--first-color);
        margin-bottom: 1rem;
        transition: transform 0.3s, color 0.3s;
    }

    .who-item h3 {
        font-size: var(--normal-font-size);
        font-weight: var(--font-medium);
        color: var(--title-color);
    }

    .who-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

        .who-item:hover i {
            transform: scale(1.2);
            color: var(--first-color);
        }

/*=============== MEET THE EXPERTS SECTION ===============*/
.experts-section {
    position: relative;
    padding: 6rem 2rem;
    background: url('images/experts-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.experts-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 28, 61, 0.75);
    z-index: 1;
}

.experts-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

    .experts-content h2 {
        font-size: 2.2rem;
        font-weight: var(--font-semi-bold);
        margin-bottom: 3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        color: #fff;
    }

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expert-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, background 0.3s;
}

    .expert-item i {
        font-size: 2.5rem;
        color: var(--first-color-light);
        margin-bottom: 1rem;
        display: block;
    }

    .expert-item h3 {
        font-size: 1.2rem;
        font-weight: var(--font-medium);
        color: #fff;
    }

    .expert-item:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.15);
    }

/*=============== RESPONSIVE QUERIES ===============*/
@media screen and (max-width: 1152px) {
    .who-we-are-section h2 {
        font-size: 1.85rem;
    }

    .experts-content h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 1118px) {
    .who-we-are-section h2 {
        font-size: 1.7rem;
    }

    .experts-content h2 {
        font-size: 1.85rem;
    }

    .who-item {
        padding: 1.7rem 1.2rem;
    }

    .expert-item {
        padding: 1.7rem 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .who-we-are-section h2 {
        font-size: 1.6rem;
    }

    .experts-content h2 {
        font-size: 1.7rem;
    }

    .who-item {
        padding: 1.5rem 1rem;
    }

        .who-item h3 {
            font-size: var(--small-font-size);
        }

    .who-description {
        font-size: var(--small-font-size);
        padding: 0 1rem;
    }

    .expert-item {
        padding: 1.5rem 1rem;
    }
}

@media screen and (max-width: 300px) {
    .who-we-are-section h2 {
        font-size: 1.3rem;
    }

    .experts-content h2 {
        font-size: 1.4rem;
    }

    .who-item {
        padding: 1.2rem 0.8rem;
    }

        .who-item h3 {
            font-size: 0.85rem;
        }

    .who-description {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }

    .expert-item {
        padding: 1.2rem 0.8rem;
    }

        .expert-item h3 {
            font-size: 1rem;
        }
}

/*=============== OUR SOLUTIONS / SERVICES SECTION ===============*/
.solutions-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f7faff, #eef3ff);
    text-align: center;
}

    .solutions-section h2 {
        font-size: 2rem;
        font-weight: var(--font-semi-bold);
        margin-bottom: 3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        color: var(--title-color);
    }

/* Grid layout */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-item {
    display: flex;
    justify-content: center;
}

.solution-box {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--title-color);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

    .solution-box i {
        font-size: 2.5rem;
        color: var(--first-color);
        transition: transform 0.3s, color 0.3s;
    }

    .solution-box h3 {
        font-size: 1.1rem;
        font-weight: var(--font-medium);
    }

    .solution-box p {
        font-size: var(--small-font-size);
        line-height: 1.5;
        color: var(--text-color);
    }

    .solution-box a.solution-link {
        margin-top: 0.75rem;
        text-decoration: none;
        color: #2196f3;
        font-weight: var(--font-medium);
        transition: color 0.3s;
    }

        .solution-box a.solution-link:hover {
            color: #1976d2;
        }

    .solution-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

        .solution-box:hover i {
            transform: scale(1.2);
            color: var(--first-color);
        }

/*=============== RESPONSIVE QUERIES ===============*/
@media screen and (max-width: 1152px) {
    .solutions-section h2 {
        font-size: 1.85rem;
    }

    .solution-box h3 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1118px) {
    .solutions-section h2 {
        font-size: 1.7rem;
    }

    .solution-box h3 {
        font-size: 0.98rem;
    }

    .solution-box p {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 768px) {
    .solutions-section h2 {
        font-size: 1.6rem;
    }

    .solutions-grid {
        gap: 1.5rem;
    }

    .solution-box {
        padding: 1.5rem 1rem;
    }

        .solution-box h3 {
            font-size: 0.95rem;
        }

        .solution-box p {
            font-size: 0.8rem;
        }
}

@media screen and (max-width: 300px) {
    .solutions-section h2 {
        font-size: 1.3rem;
    }

    .solution-box {
        padding: 1.2rem 0.8rem;
    }

        .solution-box h3 {
            font-size: 0.85rem;
        }

        .solution-box p {
            font-size: 0.7rem;
        }
}

/*=============== INDUSTRIES WE SERVE SECTION ===============*/
.industries-section {
    position: relative;
    padding: 6rem 2rem;
    background: url('images/industries-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.industries-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 32, 74, 0.75);
    z-index: 1;
}

.industries-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

    .industries-content h2 {
        font-size: 2rem;
        font-weight: var(--font-semi-bold);
        margin-bottom: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        color: #fff;
    }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.industry-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, background 0.3s;
    text-align: center;
}

    .industry-item i {
        font-size: 2.5rem;
        color: var(--first-color-light);
        margin-bottom: 1rem;
    }

    .industry-item h3 {
        font-size: 1.2rem;
        font-weight: var(--font-medium);
        color: #fff;
    }

    .industry-item:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.18);
    }

/*=============== ADVERTISEMENT SECTION ===============*/
.advertisement-section {
    padding: 80px 2rem;
    background: #f8f9fc;
}

.ad-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.ad-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.ad-slide {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transition: top 0.8s ease-in-out, opacity 0.8s ease-in-out;
    opacity: 0;
}

    .ad-slide.active {
        top: 0;
        opacity: 1;
    }

    .ad-slide h2 {
        font-size: 28px;
        margin-bottom: 10px;
        color: #222;
    }

    .ad-slide p {
        font-size: 16px;
        color: #555;
        margin-bottom: 20px;
    }

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0078ff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

    .cta-btn:hover {
        background: #005fcc;
    }

/* VIDEO SLIDER */
.ad-videos {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.video-slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.video-slide {
    min-width: 100%;
    transition: opacity 0.8s ease-in-out;
}

    .video-slide iframe {
        width: 100%;
        height: 280px;
        border-radius: 10px;
    }

/*================ GENERAL SECTIONS ================*/
.sap-section {
    padding: 80px 2rem;
    text-align: center;
}

    .sap-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #003366;
        margin-bottom: 20px;
    }

    .sap-section p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.7;
        max-width: 850px;
        margin: 0 auto 30px auto;
    }

.alt-bg {
    background-color: #f8fafc;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #0077cc;
    color: #fff;
}

    .btn-primary:hover {
        background: #005fa3;
    }

.btn-secondary {
    background: #00aa88;
    color: #fff;
    margin-left: 15px;
}

    .btn-secondary:hover {
        background: #008f73;
    }

/*================ RESPONSIVE QUERIES =================*/
@media screen and (max-width: 1152px) {
    .industries-content h2,
    .ad-slide h2 {
        font-size: 1.85rem;
    }

    .industry-item h3,
    .ad-slide p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1118px) {
    .industries-content h2,
    .ad-slide h2 {
        font-size: 1.7rem;
    }

    .industry-item h3,
    .ad-slide p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .industries-grid,
    .ad-container {
        flex-direction: column;
        display: flex;
        gap: 20px;
    }

    .industries-content h2,
    .ad-slide h2 {
        font-size: 1.6rem;
    }

    .industry-item,
    .ad-content,
    .ad-videos {
        padding: 1.5rem;
        min-height: auto;
    }

        .industry-item h3,
        .ad-slide p {
            font-size: 0.9rem;
        }

    .video-slide iframe {
        height: 220px;
    }
}

@media screen and (max-width: 300px) {
    .industries-content h2,
    .ad-slide h2 {
        font-size: 1.3rem;
    }

    .industry-item,
    .ad-content,
    .ad-videos {
        padding: 1rem;
    }

        .industry-item h3,
        .ad-slide p {
            font-size: 0.75rem;
        }

    .cta-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .video-slide iframe {
        height: 180px;
    }
}
/*=============== OUR SERVICES SECTION ===============*/
.services-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f7faff, #eef3ff);
    text-align: center;
}

    .services-section h2 {
        font-size: 2rem;
        font-weight: var(--font-semi-bold);
        margin-bottom: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        color: var(--title-color);
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: var(--title-color);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

    .service-item i {
        font-size: 2.5rem;
        color: var(--first-color);
    }

    .service-item h3 {
        font-size: 1.1rem;
        font-weight: var(--font-medium);
    }

    .service-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

/*=============== RESPONSIVE MEDIA QUERIES ===============*/

/* Small mobile screens */
@media screen and (max-width: 300px) {
    .services-section h2 {
        font-size: 1.4rem;
    }

    .service-item {
        padding: 1rem;
    }

        .service-item i {
            font-size: 2rem;
        }

        .service-item h3 {
            font-size: 0.95rem;
        }
}

/* Medium screens */
@media screen and (max-width: 1152px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-item h3 {
        font-size: 1rem;
    }
}

/* Slightly smaller desktops/tablets */
@media screen and (max-width: 1185px) {
    .services-section h2 {
        font-size: 1.8rem;
    }

    .service-item h3 {
        font-size: 1.05rem;
    }
}

/*=============== TESTIMONIAL SLIDER ===============*/
.testimonial {
    background-color: #f9f9f9; /* Light grey for cards */
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-banner {
    background: linear-gradient(135deg, #f0f5ff, #e8f0ff);
    padding: 5rem 1.5rem;
    text-align: center;
}

.testimonial-header h2 {
    font-size: 2rem;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    margin-bottom: 1rem;
}

.testimonial-header h3 {
    font-size: 1.25rem;
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin: 0.5rem 0;
}

.testimonial-container {
    max-width: 900px;
    margin: 3rem auto 0;
    overflow: hidden;
    height: 300px;
    position: relative;
}

.testimonial-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .testimonial:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.client-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--first-color);
}

.client-info {
    text-align: left;
}

    .client-info .testimonial-text {
        font-size: var(--normal-font-size);
        font-style: italic;
        color: var(--text-color);
        margin-bottom: 0.75rem;
    }

    .client-info .client-name {
        font-weight: var(--font-semi-bold);
        color: var(--title-color);
    }

    .client-info .client-designation {
        font-size: var(--small-font-size);
        color: var(--text-color);
    }

/*=============== RESPONSIVE MEDIA QUERIES ===============*/

/* Very small mobile screens */
@media screen and (max-width: 300px) {
    .testimonial {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .client-logo img {
        width: 50px;
        height: 50px;
    }

    .client-info .testimonial-text {
        font-size: 0.8rem;
    }

    .client-info .client-name {
        font-size: 0.9rem;
    }

    .client-info .client-designation {
        font-size: 0.75rem;
    }

    .testimonial-container {
        height: auto;
    }
}

/* Medium screens (tablets, smaller desktops) */
@media screen and (max-width: 1152px) {
    .testimonial-container {
        height: 280px;
    }

    .testimonial-header h2 {
        font-size: 1.8rem;
    }

    .testimonial-header h3 {
        font-size: 1.1rem;
    }

    .client-logo img {
        width: 60px;
        height: 60px;
    }

    .client-info .testimonial-text {
        font-size: 0.95rem;
    }

    .client-info .client-name {
        font-size: 1rem;
    }

    .client-info .client-designation {
        font-size: 0.85rem;
    }
}

/* Slightly larger desktops */
@media screen and (max-width: 1185px) {
    .testimonial-container {
        height: 290px;
    }

    .testimonial-header h2 {
        font-size: 1.9rem;
    }

    .testimonial-header h3 {
        font-size: 1.15rem;
    }
}

/*=============== WHY CHOOSE LEXERON SECTION ===============*/
.why-choose-section {
    padding: 5rem 1.5rem;
    background: #f5f6f8; /* corrected light-grey */
    text-align: center;
    position: relative;
    overflow: hidden;
}

    /* Background floating icons */
    .why-choose-section::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -50px;
        width: 150%;
        height: 150%;
        background: url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');
        opacity: 0.03; /* very subtle */
        background-repeat: repeat;
        z-index: 0;
        animation: floatPattern 30s linear infinite;
    }

@keyframes floatPattern {
    0% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(50px,50px);
    }

    100% {
        transform: translate(0,0);
    }
}

/* Section title */
.why-choose-section h2 {
    font-size: 2rem;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

/* Cards container */
.choose-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    position: relative;
    z-index: 1;
}

/* Individual card */
.choose-item .choose-box {
    background: linear-gradient(145deg, #ffffff, #f7f9ff);
    border-radius: 50px;
    padding: 1rem 2rem;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

    /* Card icons */
    .choose-item .choose-box i {
        font-size: 2rem;
        color: var(--first-color);
        flex-shrink: 0;
        transition: transform 0.3s, color 0.3s;
    }

    /* Card text */
    .choose-item .choose-box h3 {
        font-size: var(--normal-font-size);
        font-weight: var(--font-medium);
        color: var(--title-color);
        margin: 0;
    }

    /* Hover effect */
    .choose-item .choose-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        background: linear-gradient(145deg, #e6f0ff, #ffffff);
    }

        .choose-item .choose-box:hover i {
            transform: scale(1.2);
            color: var(--first-color);
        }

/*=============== RESPONSIVE MEDIA QUERIES ===============*/

/* Very small screens */
@media screen and (max-width: 300px) {
    .choose-grid {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .choose-item .choose-box {
        min-width: 95%;
        padding: 0.75rem 1rem;
        justify-content: flex-start;
    }

    .why-choose-section h2 {
        font-size: 1.2rem;
        gap: 0.3rem;
    }

    .choose-item .choose-box h3 {
        font-size: 0.85rem;
    }

    .choose-item .choose-box i {
        font-size: 1.5rem;
    }
}

/* Medium screens */
@media screen and (max-width: 1152px) {
    .choose-item .choose-box {
        min-width: 45%;
        padding: 1rem 1.5rem;
    }

    .why-choose-section h2 {
        font-size: 1.75rem;
        gap: 0.5rem;
    }

    .choose-item .choose-box h3 {
        font-size: 1rem;
    }

    .choose-item .choose-box i {
        font-size: 1.8rem;
    }
}

/* Slightly larger desktops */
@media screen and (max-width: 1185px) {
    .choose-item .choose-box {
        min-width: 42%;
        padding: 1rem 1.5rem;
    }

    .why-choose-section h2 {
        font-size: 1.85rem;
    }
}
