﻿/* This CSS is SPECIFIC to the About Us page */

/* Global Overrides/Enhancements (ensure these don't conflict with site.css if you have one) */
body {
    font-family: 'Poppins', sans-serif;
    color: #343a40; /* Darker text for readability */
    background-color: #f8f9fa; /* Light background */
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

html {
    scroll-behavior: smooth;
}

/* Adjust section padding for better visual balance */
section {
    padding: 80px 0;
    position: relative; /* For animations */
    z-index: 1; /* Ensure content is above any potential background elements */
}

    section[id] {
        scroll-margin-top: 80px; /* Adjust based on fixed navbar height */
    }

/* General Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700; /* Bolder headings */
    color: #212529; /* Dark for good contrast on light backgrounds */
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem; /* Slightly larger main section headings */
    margin-bottom: 25px;
}

.lead {
    font-size: 1.3rem;
    color: #5a6268; /* Standard lead text color */
    line-height: 1.8;
}

/* Buttons (Consistent with Home page) */
.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

    .btn-primary:hover {
        background: linear-gradient(45deg, #0056b3, #003f80);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    }

/* --- Hero/Breadcrumb Section --- */
.hero-section {
    /* Using your suggested image and a darker, less opaque overlay to show it more */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 50, 100, 0.5));
    background-size: cover;
    color: #fff;
    padding: 100px 0; /* More vertical padding */
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Optional: Add some bottom radius for a softer edge */
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

    .hero-section h1 {
        font-size: 4.2rem; /* Larger, more impactful heading */
        font-weight: 800; /* Extra bold */
        color: #fff; /* Keep white for strong contrast */
        animation: fadeInDown 1s ease-out;
    }

    .hero-section p {
        font-size: 1.8rem; /* Larger subtitle */
        color: #e0f2ff; /* Lighter blue for readability */
        animation: fadeInUp 1.2s ease-out;
        margin-top: 15px;
        max-width: 800px; /* Constrain width for better readability */
        margin-left: auto;
        margin-right: auto;
    }

/* --- About Company Section --- */
#about-company {
    padding: 100px 0; /* More space */
    background-color: #fff; /* Ensure a clean white background */
}

    #about-company img {
        border-radius: 20px; /* More rounded corners */
        /* Enhanced shadow for more depth and to make the image pop */
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother animation */
        object-fit: cover; /* Ensure image covers its area well */
        width: 100%; /* Make image responsive */
        height: 450px; /* Fixed height for consistency, adjust as needed */
    }

        #about-company img:hover {
            transform: translateY(-8px) scale(1.02); /* More noticeable lift and grow */
        }

    #about-company h2 {
        font-size: 3rem;
        /* Using the primary blue directly for consistency */
        color: #007bff;
        margin-bottom: 25px;
    }

    #about-company h3 {
        font-size: 1.8rem; /* Larger sub-heading */
        color: #343a40; /* Dark text for readability */
        margin-bottom: 30px;
    }

    #about-company p {
        font-size: 1.15rem; /* Slightly larger text */
        line-height: 1.9;
        margin-bottom: 18px;
        color: #495057; /* Standard body text color */
    }

    #about-company ul {
        list-style: none;
        padding-left: 0;
        margin-top: 30px;
    }

        #about-company ul li {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 12px;
            position: relative;
            padding-left: 35px; /* More space for checkmark */
            color: #495057; /* Standard text color for list items */
        }

            #about-company ul li::before {
                /* Using your accent teal color for consistency with the site's branding */
                content: '✔'; /* Changed to a simpler checkmark for consistency */
                font-family: 'Font Awesome 5 Free'; /* Assuming Font Awesome is used or similar */
                font-weight: 900; /* For solid icon */
                color: #00b386; /* Your FE accent color */
                font-size: 1.2rem; /* Slightly smaller for better alignment */
                position: absolute;
                left: 0;
                top: 0; /* Align to top of line */
                line-height: inherit; /* Inherit line-height to maintain vertical alignment */
            }

/* --- Vision & Mission Section --- */
.vision-mission-section {
    /* Using a softer, mid-tone blue gradient, distinct from the hero and other sections */
    background: linear-gradient(135deg, #4da6ff, #007bff); /* Lighter blue to primary blue */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.2); /* More prominent inner shadow */
}

    .vision-mission-section h2 {
        font-size: 3.5rem; /* Larger heading */
        color: #fff;
        margin-bottom: 40px;
        animation: fadeIn 1.2s ease-out;
    }

    .vision-mission-section .lead {
        font-size: 1.5rem; /* Larger lead text */
        color: #ebf5ff; /* Lighter blue for better contrast against the new gradient */
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto 20px;
        animation: fadeInUp 1.4s ease-out;
    }

        .vision-mission-section .lead strong {
            color: #fff; /* Keep strong text white */
            font-weight: 700;
        }

/* --- Technologies We Use Section --- */
#technologies {
    padding: 100px 0;
    background-color: #f0f4f8; /* Very light blue/grey background to differentiate */
}

    #technologies h2 {
        font-size: 3rem;
        margin-bottom: 60px;
        color: #007bff; /* Primary blue for the heading */
    }

.tech-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px; /* Taller containers */
    padding: 15px;
    background-color: #fff; /* White background for logos */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Deeper shadow */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden; /* To handle image scaling within rounded corners */
    border: 1px solid #e0e6ec; /* Subtle light border */
}

    .tech-logo-container:hover {
        transform: translateY(-12px) scale(1.04); /* More dynamic lift and grow */
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
        border: 2px solid #00b386; /* Highlight border with FE accent color on hover */
    }

    .tech-logo-container img {
        max-height: 80px; /* Larger logos within container */
        max-width: 100%;
        object-fit: contain;
        /* Using a more visible drop shadow for the logos */
        filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
        transition: transform 0.4s ease;
    }

    .tech-logo-container:hover img {
        transform: scale(1.1); /* Zoom effect on logo itself */
    }

/* --- Company Stats Section --- */
.stats-section {
    /* Using a dark, subtle grey/blue for a professional, weighty feel */
    background: linear-gradient(135deg, #2c3e50, #1c2a3a); /* Deep charcoal to very dark blue */
    color: #fff;
    padding: 100px 0;
}

    .stats-section h2 {
        font-size: 3.2rem;
        margin-bottom: 60px;
        color: #fff; /* Keep white for strong contrast */
    }

.stat-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly less opaque, softer glow */
    padding: 40px 25px; /* More padding */
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
}

    .stat-item:hover {
        background-color: rgba(255, 255, 255, 0.15); /* More visible on hover */
        transform: translateY(-12px) scale(1.03); /* More dynamic lift and grow */
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45); /* Stronger shadow on hover */
        border-color: rgba(255, 255, 255, 0.25);
    }

    .stat-item h3 {
        font-size: 4.5rem; /* Much larger numbers */
        font-weight: 800; /* Extra bold numbers */
        /* Changed to a more subtle, yet still distinct, green/cyan for numbers */
        color: #00e699; /* A bright, energetic teal-green */
        margin-bottom: 15px;
        line-height: 1;
        text-shadow: 2px 2px 5px rgba(0, 230, 153, 0.3); /* Subtle glow matching the new color */
    }

    .stat-item p {
        font-size: 1.25rem; /* Larger descriptive text */
        color: #e0f2ff; /* Lighter white for contrast */
        margin-bottom: 0;
    }

/* --- Animation Keyframes --- (No major changes needed here, adjusted translateY slightly) */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px); /* Start further up */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px); /* Start further down */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-Triggered Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(60px); /* Start even further down */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out; /* Slower and smoother */
}

    .fade-in-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* --- Responsive Adjustments --- (Minor adjustments for consistency and image height) */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }

    .hero-section p {
        font-size: 1.5rem;
    }

    #about-company img {
        height: 400px; /* Adjust height for larger screens */
    }

    #about-company h2, #technologies h2, .stats-section h2 {
        font-size: 2.8rem;
    }

    .stat-item h3 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 80px 0;
    }

        .hero-section h1 {
            font-size: 3rem;
        }

        .hero-section p {
            font-size: 1.3rem;
        }

    #about-company img {
        height: 350px; /* Adjust height for medium screens */
    }

    #about-company h2, #technologies h2, .stats-section h2 {
        font-size: 2.5rem;
    }

    #about-company h3 {
        font-size: 1.6rem;
    }

    .tech-logo-container {
        height: 100px;
        padding: 10px;
    }

        .tech-logo-container img {
            max-height: 70px;
        }

    .stat-item h3 {
        font-size: 3.5rem;
    }

    .stat-item p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    #about-company img {
        margin-bottom: 40px;
        height: 300px; /* Adjust height for tablets */
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    #about-company h2, #technologies h2, .stats-section h2 {
        font-size: 2.2rem;
    }

    #about-company h3 {
        font-size: 1.4rem;
    }

    .vision-mission-section .lead {
        font-size: 1.2rem;
    }

    .tech-logo-container {
        height: 80px;
    }

        .tech-logo-container img {
            max-height: 60px;
        }

    .stat-item {
        padding: 30px 15px;
    }

        .stat-item h3 {
            font-size: 3rem;
        }

        .stat-item p {
            font-size: 1rem;
        }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    #about-company img {
        height: 250px; /* Adjust height for mobile */
    }

    #about-company h2, #technologies h2, .stats-section h2 {
        font-size: 1.8rem;
    }

    .tech-logo-container {
        height: 70px;
    }

        .tech-logo-container img {
            max-height: 50px;
        }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}
/* --- About Company Section (Reimagined Design) --- */
#about-company {
    padding: 100px 0; /* More space */
    background-color: #fff; /* Ensure a clean white background */
    position: relative; /* Needed for background elements */
    overflow: hidden; /* Hide any overflowing shapes */
}

    #about-company .section-title {
        position: relative;
        display: inline-block; /* Allows text-align center on wrapper, but keeps underline to text width */
        font-size: 3rem;
        margin-bottom: 30px; /* Space below heading */
    }

        /* Optional: Add an underline effect to "ABOUT US" */
        #about-company .section-title::after {
            content: '';
            display: block;
            width: 80px; /* Length of the underline */
            height: 4px;
            background-color: #00b386; /* Your accent color for the underline */
            margin: 10px auto 0; /* Center the underline */
            border-radius: 2px;
        }

.about-image-wrapper {
    position: relative;
    padding: 20px; /* Space for the overlay shape */
}

    .about-image-wrapper img {
        border-radius: 20px; /* More rounded corners */
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); /* Enhanced shadow for more depth */
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother animation */
        object-fit: cover; /* Ensure image covers its area well */
        width: 100%; /* Make image responsive */
        height: 450px; /* Fixed height for consistency, adjust as needed */
        position: relative; /* Z-index for image over shape */
        z-index: 2;
    }

        .about-image-wrapper img:hover {
            transform: translateY(-8px) scale(1.02); /* More noticeable lift and grow */
        }

.image-overlay-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.2), rgba(0, 179, 134, 0.3)); /* Primary blue to accent teal */
    border-radius: 25px; /* Slightly more rounded than image */
    transform: rotate(-5deg); /* Slight rotation for dynamic look */
    z-index: 1; /* Behind the image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Animation for subtle floating effect on image */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(-5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }

    100% {
        transform: translateY(0px) rotate(-5deg);
    }
}

.animate-img-float {
    animation: float 3s ease-in-out infinite; /* Apply floating animation */
}

    /* Override for floating animation on hover if desired (optional) */
    .animate-img-float:hover {
        animation-play-state: paused; /* Pause floating on hover */
        transform: translateY(-8px) scale(1.02) rotate(-5deg) !important; /* Keep the hover effect with rotation */
    }


/* Styles for the "Why Choose Us" highlighted block */
.why-choose-us {
    background-color: #f8f9fa; /* Lighter background for the block */
    border: 1px solid #e2e6ea; /* Subtle border */
    position: relative;
    overflow: hidden; /* For any internal decorative elements */
}

    .why-choose-us::before {
        content: '';
        position: absolute;
        top: -30px;
        left: -30px;
        width: 100px;
        height: 100px;
        background-color: rgba(0, 123, 255, 0.05); /* Very light blue circle */
        border-radius: 50%;
        z-index: 0;
    }

    .why-choose-us::after {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        background-color: rgba(0, 179, 134, 0.05); /* Very light accent teal circle */
        border-radius: 50%;
        z-index: 0;
    }

    .why-choose-us .fw-bold { /* Ensure heading inside why-choose-us is bold and primary color */
        color: #007bff;
        position: relative;
        z-index: 1;
    }

    .why-choose-us .why-list {
        margin-top: 15px;
        position: relative;
        z-index: 1; /* Ensure list content is above pseudo-elements */
    }

        .why-choose-us .why-list li {
            font-size: 1.05rem; /* Slightly smaller list items for compactness */
            line-height: 1.6;
            margin-bottom: 10px;
            color: #495057;
            display: flex; /* For better icon alignment */
            align-items: flex-start;
        }

            .why-choose-us .why-list li i {
                font-size: 1.1em; /* Adjust icon size relative to text */
                margin-top: 2px; /* Fine-tune vertical alignment */
                color: #00b386; /* Accent color for checkmarks */
            }

/* Adjust general paragraph styles for better consistency */
.text-secondary {
    color: #495057 !important; /* Using a slightly darker gray for main body text */
}

.display-6 {
    font-size: 2.5rem; /* Ensure this is appropriate for your desired size */
}

/* Remaining CSS for other sections (Hero, Vision/Mission, Technologies, Stats) from previous iteration should remain as is. */
/* Just ensure the below responsive adjustments are correctly merged */

@media (max-width: 1200px) {
    #about-company img {
        height: 400px; /* Adjust height for larger screens */
    }
}

@media (max-width: 992px) {
    #about-company img {
        height: 350px; /* Adjust height for medium screens */
    }

    .display-6 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    #about-company img {
        margin-bottom: 40px;
        height: 300px; /* Adjust height for tablets */
    }

    .about-image-wrapper {
        padding: 10px; /* Reduce padding on smaller screens */
    }

    .image-overlay-shape {
        transform: rotate(-3deg); /* Less rotation on smaller screens */
    }

    .display-6 {
        font-size: 2rem;
    }
    /* Reset order on small screens if desired, or keep swapped */
    .col-md-6.order-md-2 {
        order: 2;
    }

    .col-md-6.order-md-1 {
        order: 1;
    }
}

@media (max-width: 576px) {
    #about-company img {
        height: 250px; /* Adjust height for mobile */
    }

    .display-6 {
        font-size: 1.8rem;
    }
}/* --- About Company Section (Reimagined Design) --- */
#about-company {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

    #about-company .section-title {
        position: relative;
        display: inline-block;
        font-size: 3rem;
        margin-bottom: 30px;
    }

        #about-company .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #00b386; /* Accent color for the underline */
            margin: 10px auto 0;
            border-radius: 2px;
        }

.about-image-wrapper {
    position: relative;
    padding: 20px;
    display: inline-block; /* To contain floated elements if any, and for vertical centering */
}

    .about-image-wrapper img {
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        object-fit: cover;
        width: 100%;
        height: 450px;
        position: relative;
        z-index: 2;
    }

        .about-image-wrapper img:hover {
            transform: translateY(-8px) scale(1.02);
        }

.image-overlay-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.2), rgba(0, 179, 134, 0.3));
    border-radius: 25px;
    transform: rotate(-5deg);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Animation for subtle floating effect on image */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    100% {
        transform: translateY(0px) rotate(-5deg);
    }
}

.animate-img-float {
    animation: float 3s ease-in-out infinite;
}

    .animate-img-float:hover {
        animation-play-state: paused;
        transform: translateY(-8px) scale(1.02) rotate(-5deg) !important;
    }


/* --- Why Choose Us Section --- */
.why-choose-section {
    /* Using a distinct, darker background to make it pop */
    background: linear-gradient(135deg, #007bff, #0056b3); /* Primary blue gradient */
    color: #fff; /* Default text color for this section */
    padding: 100px 0; /* More padding */
    position: relative;
    overflow: hidden;
}

    .why-choose-section::before { /* Large diagonal stripe/shape */
        content: '';
        position: absolute;
        top: 0;
        left: -10%;
        width: 120%;
        height: 100%;
        background: linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
        transform: skewY(-5deg); /* Slight diagonal tilt */
        z-index: 0;
    }

    .why-choose-section::after { /* Smaller accent shape */
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background-color: rgba(0, 179, 134, 0.2); /* Accent teal, semi-transparent */
        border-radius: 50%;
        z-index: 0;
        box-shadow: 0 0 30px rgba(0, 179, 134, 0.5);
    }


    .why-choose-section h2 {
        font-size: 3.5rem; /* Larger heading */
        color: #fff; /* White heading */
        margin-bottom: 40px;
        position: relative; /* Ensure it's above pseudo-elements */
        z-index: 1;
    }

.why-choose-block {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle white overlay on the blue background */
    backdrop-filter: blur(5px); /* Optional: Frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); /* Stronger shadow for depth */
    position: relative;
    z-index: 1; /* Ensure this block is above the background shapes */
}


    .why-choose-section .why-list {
        margin-top: 15px;
        position: relative;
        z-index: 1;
    }

        .why-choose-section .why-list li {
            font-size: 1.15rem; /* Slightly larger list items for readability */
            line-height: 1.7;
            margin-bottom: 15px; /* More space between list items */
            color: #e0f2ff; /* Lighter white for readability on dark background */
            display: flex;
            align-items: flex-start;
        }

            .why-choose-section .why-list li i {
                font-size: 1.2em; /* Larger icon size */
                margin-top: 3px;
                color: #00e699; /* Bright energetic teal-green from stats section */
                flex-shrink: 0; /* Prevent icon from shrinking */
            }
            .why-choose-section .why-list li strong {
                color: #fff; /* Bold text in list items remains white */
            }

    .why-choose-section .lead {
        font-size: 1.4rem; /* Larger lead text */
        color: #cceeff; /* Lighter blue for better contrast */
        max-width: 900px;
        margin: 30px auto 0; /* More top margin */
        position: relative;
        z-index: 1;
    }

        .why-choose-section .lead strong {
            color: #fff; /* Ensure strong text is white */
            font-weight: 700;
        }

/* Global Adjustments */
.text-secondary {
    color: #495057 !important; /* Consistent dark gray for main body text */
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    #about-company img {
        height: 400px;
    }
    .why-choose-section h2 {
        font-size: 3rem;
    }
    .why-choose-section .lead {
        font-size: 1.3rem;
    }
    .why-choose-section .why-list li {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    #about-company img {
        height: 350px;
    }
    #about-company .col-md-8 { /* Adjust column for image on smaller screens */
        max-width: 80%; /* Or set a fixed width if desired */
        margin: 0 auto;
    }
    .why-choose-section h2 {
        font-size: 2.8rem;
    }
    .why-choose-section .why-list li {
        font-size: 1.05rem;
    }
    .why-choose-block {
        padding: 30px; /* Reduce padding on block */
    }
}

@media (max-width: 768px) {
    #about-company img {
        height: 300px;
        margin-bottom: 40px; /* Ensure space below image on mobile */
    }
    #about-company .col-md-8 { /* Ensure image is centered */
        max-width: 100%;
    }
    .image-overlay-shape {
        transform: rotate(-3deg);
    }
    .why-choose-section {
        padding: 80px 0; /* Adjust padding */
    }
    .why-choose-section h2 {
        font-size: 2.5rem;
    }
    .why-choose-section .why-list li {
        font-size: 1rem;
    }
    .why-choose-section .lead {
        font-size: 1.2rem;
    }
    .why-choose-block {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    #about-company img {
        height: 250px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    #about-company h2, #technologies h2, .stats-section h2 {
        font-size: 1.8rem;
    }
    .why-choose-section h2 {
        font-size: 2rem;
    }
    .why-choose-section .why-list li {
        font-size: 0.95rem; /* Smaller font for small screens */
    }
    .why-choose-section .lead {
        font-size: 1rem;
    }
}
/* --- Why Choose Us Section (Reimagined Design) --- */
.why-choose-section {
    /* More dynamic gradient background */
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden; /* Ensure background elements don't spill */
    z-index: 0; /* Ensure content is above background effects */
}

    /* Background pattern/shapes for visual interest */
    .why-choose-section::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background-color: rgba(255, 255, 255, 0.08); /* Light, subtle circle */
        border-radius: 50%;
        animation: rotate360 20s linear infinite;
        z-index: -1;
    }

    .why-choose-section::after {
        content: '';
        position: absolute;
        bottom: -150px;
        right: -150px;
        width: 400px;
        height: 400px;
        background-color: rgba(0, 179, 134, 0.15); /* Accent teal, more prominent */
        border-radius: 50%;
        animation: rotateInverse 25s linear infinite;
        z-index: -1;
    }

.section-heading {
    font-size: 3.5rem;
    color: #fff; /* White for heading on this dark background */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.why-item {
    background-color: #fff; /* White background for each feature box */
    color: #343a40; /* Dark text on white background */
    transition: all 0.4s ease-in-out;
    border: 1px solid #e9ecef; /* Subtle border */
    position: relative;
    z-index: 1; /* Ensure items are above section background elements */
}

    .why-item:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
        border-color: #007bff; /* Highlight border with primary color */
    }

    .why-item .icon-wrapper {
        display: inline-flex; /* Use flexbox to center icon */
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        background-color: #e0f2ff; /* Very light blue background for icon */
        border-radius: 50%;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
        transition: all 0.3s ease;
    }

    .why-item:hover .icon-wrapper {
        background-color: #007bff; /* Primary blue on hover */
        transform: translateY(-5px);
    }

    .why-item .icon-wrapper i {
        color: #007bff; /* Primary blue icon color */
        transition: all 0.3s ease;
    }

    .why-item:hover .icon-wrapper i {
        color: #fff; /* White icon on hover */
    }

    .why-item h4 {
        color: #212529; /* Dark heading color for feature */
        font-size: 1.5rem;
    }

    .why-item p {
        color: #6c757d; /* Muted text for description */
        font-size: 1rem;
        line-height: 1.6;
    }

/* Call to action button styling (reusing btn-primary, adding animation) */
.animate-scale-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .animate-scale-hover:hover {
        transform: scale(1.05) translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    }

/* Keyframes for background rotation */
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateInverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Ensure existing responsive adjustments are merged correctly for other sections */
/* General responsive adjustments */
@media (max-width: 992px) {
    .section-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .why-item h4 {
        font-size: 1.3rem;
    }

    .why-item p {
        font-size: 0.95rem;
    }

    .why-choose-section .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 2rem;
    }

    .why-item {
        padding: 30px;
    }

        .why-item .icon-wrapper {
            width: 60px;
            height: 60px;
        }

            .why-item .icon-wrapper i {
                font-size: 1.8rem !important; /* Adjust if fs-2 is too big */
            }
}