﻿/* Set padding to keep content from hitting the edges */
/*.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
/*.dl-horizontal dt {
    white-space: normal;
}*/

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/


/* Additional styles for the homepage */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    min-height: 70vh;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 0;
    }

    .hero-section .container {
        position: relative;
        z-index: 1;
    }

.min-vh-50 {
    min-height: 50vh;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
    }

.service-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.portfolio-card {
    transition: transform 0.3s ease;
    overflow: hidden;
}

    .portfolio-card:hover {
        transform: scale(1.02);
    }

    .portfolio-card img {
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .portfolio-card:hover img {
        transform: scale(1.05);
    }

.feature-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb), 0.1);
}

.stat-counter {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: 50vh;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

    .stat-counter {
        font-size: 2rem;
    }
}

/*=========================================
About Section
=========================================*/

.about-section {
    padding: 120px 0;
    background: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 70px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-main-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

    .about-main-image img {
        width: 100%;
        display: block;
    }

.experience-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 50px rgba(74,130,193,.30);
}

    .experience-card h2 {
        color: #fff;
        font-size: 52px;
        margin-bottom: 5px;
    }

.about-content h2 {
    font-size: 48px;
    margin: 20px 0;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin: 40px 0;
}

    .about-features div {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
    }

    .about-features i {
        color: var(--primary);
        font-size: 20px;
    }

.about-buttons {
    display: flex;
    gap: 20px;
}