﻿/* 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;
}*/
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 160px 0 120px;
    background: radial-gradient(circle at top right,#EAF3FC 0%,#F8FBFF 60%,#FFFFFF 100%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.hero-tag {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 50px;
    background: #EAF3FC;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.15;
    margin-bottom: 25px;
}

    .hero-content h1 span {
        color: var(--secondary);
    }

.hero-content p {
    font-size: 20px;
    max-width: 650px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

/* Additional styles for the homepage */
    .hero-stats div {
        background: #fff;
        border-radius: 18px;
        padding: 25px;
        text-align: center;
        box-shadow: var(--shadow-sm);
        transition: .35s;
    }

        .hero-stats div:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

    .hero-stats h3 {
        color: var(--primary);
        font-size: 34px;
        margin-bottom: 10px;
    }

.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;
    }
}

