:root {
    --primary-color: #fed605;
    --secondary-color: #222779;
    --blue-color: #134985;
    --white-color: #fff;
    --light-white: #f5eeeeb6;
    --black-color: #15161c;
    --background-color: #;
    --button-background: #fed605;
}

/* Common Styles for All Floating Icons */
.floating-icon {
    position: fixed;
    right: 20px;
    background-color: #28a745;
    color: white;
    font-size: 25px;
    height: 60px !important;
    width: 60px !important;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Individual Positions */
.call-icon {
    bottom: 250px;
}

.whatsapp-icon {
    bottom: 190px;
    background-color: #25D366;
}

.email-icon {
    bottom: 130px;
    background-color: #007bff;
}

.floating-icon:hover {
    opacity: 0.8;
}



/* About us Sectiobn Start */

/* MAIN SECTION STYLING */
.about-us-section {
    padding: 30px 0;
    background-color: var(--background-color);
    overflow: hidden;
}


.about-left-col {
    position: relative;
    animation: slideInLeft 1s ease-out;
}

.about-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image-container img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

/* --- LEFT COLUMN --- */
.about-left-col {
    position: relative;
    /* Required for absolute positioning of stats-box */
    padding: 20px;
    /* Add some padding to prevent stats-box from overflowing */
}

.multi-image-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Left column is smaller than the right */
    grid-template-rows: 1fr 1fr;
    /* Two equal rows */
    gap: 20px;
    height: 500px;
    /* Adjust the height of the container as needed */
    grid-template-areas:
        "top side"
        "bottom side";
}

.image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.top-image {
    grid-area: top;
}

.bottom-image {
    grid-area: bottom;
}

.side-image {
    grid-area: side;
}

/* --- STATS BOX STYLING --- */
.stats-box {
    /* Copy your existing stats-box styles here */
    background-color: #fed605;
    /* Example color, use your variable */
    color: #15161c;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 10px 25px rgba(254, 214, 5, 0.3);

    /* Positioning */
    position: absolute;
    bottom: 0px;
    /* Position it at the bottom of the column */
    left: 0px;
    /* Position it to the left */
    z-index: 2;
    transition: transform 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-10px);
}

.stats-box h2 {
    font-size: 48px;
    font-weight: 700;
}

.stats-box p {
    font-weight: 500;
    margin-bottom: 10px;
}

.stats-box .slashes {
    letter-spacing: -2px;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.customer-avatars {
    display: flex;
    align-items: center;
}

.customer-avatars img,
.customer-avatars .avatar-plus {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
    object-fit: cover;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.avatar-plus {
    background-color: #222779;
    /* Example secondary color */
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .about-left-col {
        padding: 0;
        /* Remove padding for smaller screens if needed */
    }

    .stats-box {
        bottom: -20px;
        /* Adjust position slightly */
        left: 20px;
    }
}

@media (max-width: 768px) {
    .multi-image-layout {
        /* Stack images vertically */
        grid-template-columns: 1fr;
        grid-template-rows: 200px 300px 200px;
        /* Define row heights */
        height: auto;
        /* Auto height for vertical stacking */
        grid-template-areas:
            "top"
            "side"
            "bottom";
    }

    .stats-box {
        position: relative;
        /* Change to relative to position after images */
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: -60px;
        /* Pull it up over the last image */
        z-index: 2;
        border-radius: 0 0 12px 12px;
    }
}

.stats-box {
    background-color: var(--primary-color);
    color: var(--black-color);
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    position: absolute;
    bottom: 40px;
    left: -30px;
    /* Adjusted position */
    z-index: 2;
    box-shadow: 0 10px 25px rgba(254, 214, 5, 0.3);
    transition: transform 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-10px);
}

.stats-box h2 {
    font-size: 48px;
    font-weight: 700;
}

.stats-box p {
    font-weight: 500;
    margin-bottom: 10px;
}

.stats-box .slashes {
    letter-spacing: -2px;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.customer-avatars {
    display: flex;
    align-items: center;
}

.customer-avatars img,
.customer-avatars .avatar-plus {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--white-color);
    margin-left: -15px;
    object-fit: cover;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.avatar-plus {
    background-color: var(--secondary-color);
    color: var(--white-color);
    display: grid;
    place-items: center;
    font-size: 18px;
}


/* --- RIGHT COLUMN --- */
/* REMOVED: flex-basis. Bootstrap's .col-lg-6 handles this. */
.about-right-col {
    position: relative;
    z-index: 1;
    animation: slideInRight 1s ease-out;
}

.sub-heading {
    color: var(--blue-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-heading::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--primary-color);
}


.about-right-col h1 {
    font-size: 30px;
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-right-col .description {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* REMOVED: .mission-vision-container styles. Bootstrap's nested .row handles this. */
.mission-vision-container {
    margin-bottom: 40px;
}


.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* --- NEW: Bordered Icon Style --- */
.info-box .icon {
    width: 65px;
    /* Circle size */
    height: 65px;
    /* Circle size */
    border-radius: 50%;
    /* Makes it a circle */
    border: 2px solid var(--primary-color);
    color: var(--blue-color);
    font-size: 24px;

    /* Centering the icon inside the circle */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents the icon from shrinking */

    transition: all 0.3s ease;
}

.info-box:hover .icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(360deg);
}

/* --- END of Bordered Icon Style --- */

.info-box h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.info-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.explore-btn {
    background-color: var(--black-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.explore-btn i {
    transition: transform 0.3s ease;
}

.explore-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(34, 39, 121, 0.3);
}

.explore-btn:hover i {
    transform: translateX(5px);
}

/* --- ANIMATIONS --- */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- RESPONSIVE DESIGN --- */
/* REMOVED: Old responsive code. Bootstrap handles stacking now. */
/* You can still keep some for fine-tuning */

@media (max-width: 991px) {

    /* Adjustments for when Bootstrap columns stack */
    .about-left-col {
        padding: 0 20px;
        /* Add some padding on mobile */
    }

    .stats-box {
        left: 0;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }

    .about-right-col h1 {
        font-size: 32px;
    }

    .stats-box {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: -50px;
        border-radius: 0 0 12px 12px;
    }
}

@media (max-width: 480px) {
    .stats-box {
        padding: 20px;
    }

    .stats-box h2 {
        font-size: 36px;
    }

    .customer-avatars img,
    .customer-avatars .avatar-plus {
        width: 40px;
        height: 40px;
    }
}


/* Home Page Services Section */

.home-services-section {
    background: url('https://www.alliedmarketresearch.com/InsightsImages/banner-1-C-2024-04-04-1712216557.webp') no-repeat center center/cover;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.home-services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.view-all-button {
    background-color: var(--button-background);
    padding: 5px;
    color: var(--secondary-color) !important;
    border-radius: 4px;
}

.home-services-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
    padding: 10px;
    /* remove bg fill */
}

/* Gradient Border Effect */
.home-services-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3px;
    /* thickness of border */
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--blue-color));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.home-services-card:hover {
    transform: translateY(-8px);
}

/* Inside Card Content */
.card-image {
    background-size: cover;
    background-position: center;
    height: 300px;
    border-radius: 6px;
    background-color: #fff;
}

/* Gradient line below image */
.card-border {
    height: 4px;
    margin: 12px auto;
    width: 60%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--blue-color));
}

/* Title */
.card-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--white-color);
    margin-bottom: 12px;
}


/* call to action section start */

.cta-section {
    background-color: #fff;
}

.btn-warning {
    background-color: var(--button-background);
    border: none;
}

.btn-warning:hover {
    background-color: #e6c700;
}

.btn-primary {
    background-color: var(--blue-color);
    border: none;
}

.btn-primary:hover {
    background-color: #0f3b6b;
}

.cta-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.cta-subtitle {
    color: var(--black-color);
    font-size: 1.2rem;
}