/* Common Styles */
.text-link {
    color: var(--second-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}
.text-link:hover:after {
    width: 100%;
}
.text-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--second-color);
    transition: all 0.3s ease;
}

.flex-center{
    display:flex;
    justify-content: center;
    width:100%;
}

.section-link{
    margin-top: 30px;
}

.section-title{
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 600;
}


/* Hero Section */
.hero-section{
    background: linear-gradient(rgba(30, 31, 64, 0.8), rgba(30, 31, 64, 0.8)), url(https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80) center / cover no-repeat;
}
.hero-section > div{
    width:100%;
    max-width: 960px;
    height: calc(100vh - 120px);  
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-title{
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle{
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btn .btn{
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
    transition: all 0.3s ease;
}


.hero-btn .btn:hover{
    background-color: transparent;
    color: #fff;
}

.section-1{
    padding:100px 0;
    background-color: #f8f9fa;
}


/* Section 1 */
.section-1 > .container{
    max-width:960px;
    text-align: center;
}
.section-1 h3{
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.section-1 p{
    font-size: 1.1rem;
}


/* Section 2 */

.section-2{
    padding:100px 0;
}

.section-2 .section-title{
    color: var(--primary-color);
}

.our-services-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.our-services-features .feature-item{
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.our-services-features .feature-item:hover{
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.our-services-features .feature-item-img{
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.our-services-features .feature-item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-services-features .feature-item-text{
    padding: 30px;
}

.our-services-features .feature-item-title{
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}
.our-services-features .feature-item-content{
    line-height: 1.2;;
}

/* Section 3 */

.section-3{
    padding:100px 0;
    background-color: var(--primary-color-lighten);
    color:#fff;
    font-size:1.1rem;
}

.why-choose-us{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}
.why-choose-us .feature-item{
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding:20px;
}




/* Section 4 */

.section-4{
    padding:100px 0;
    background-color: var(--second-color);
    color:#fff;
    font-size:1.1rem;
    text-align:center;
}

.section-4 .container{
    max-width:960px;
}

.section-4 .contact-us-button{
    margin-top:30px;
} 

.section-4 .btn {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.section-4 .btn:hover {
    background-color: transparent;
    color: #fff;
}