.sectionTitle{ 
    font-size: 2rem;
    color: var(--my-subtext);
    font-weight: 400;
    margin-bottom: .5rem;
}
.sectionHeadline{
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 4.8rem;
    line-height: 1.1;
    font-weight: 500; 
    margin-bottom: 4rem;
}
 

/* Hero Section */
#heroSection{ 
    padding-top: 16rem;
    position: relative;
}   
#heroSection h1{
    font-size: 6.4rem;
    font-weight: 600;
    width: 70%;
    line-height: 1;
    margin-bottom: 2rem; 
}
 
#heroSection p{
    width: 55%;
    font-size: 2rem;
    line-height: 1.3;
    color: var(--my-subtext);
    margin-bottom: 4rem;
}
#heroSection ul.highlightList{ 
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 2rem;
} 
#heroSection ul.highlightList li{ 
    font-size: 1.4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem; 
    color: var(--my-subtext);
} 
#heroSection ul.highlightList li i{ 
    color: var(--my-accent-color);
}
#heroSection .btnDiv{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
} 
#heroSection .socialMediaList{
    display: inline-flex;
    align-items: center;
    font-size: 2rem;
    gap: 4rem;
    border: 1px solid var(--my-secondary-btn-border);
    padding: 1.5rem 2.5rem;
    border-radius: 10rem;
} 
#heroSection .socialMediaList li {
    list-style: none; 
} 
#heroSection .socialMediaList li a {
    text-decoration: none;
    font-weight: 400;
    color: var(--my-text);
}

#heroSection img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40rem;
}    


/* Services Section */  
#servicesSection{
    background: linear-gradient(180deg, var(--my-secondary-bg) 10%, var(--my-bg) 90%);
}
#servicesSection p.desc{
    font-size: 2rem;
    line-height: 1.3;
    color: var(--my-subtext);
    margin-bottom: 3rem;
} 
#servicesSection p span{ 
    color: var(--my-text);
}  
#servicesSection .marqueeCarousel{
    margin-top: 8rem;
}
#servicesSection .marqueeCarousel .item IMG{
    border-radius: 2rem; 
}



/* About Section */   
#aboutSection img.aboutImg{
    width: 100%;
    height: 100%;
    border-radius: 2rem; 
    object-fit: cover;
}  
#aboutSection .descContainer p.desc{
    font-size: 2.4rem;
    line-height: 1.3;
    color: var(--my-subtext); 
} 
#aboutSection .descContainer p span{ 
    color: var(--my-text);
}  



/* Why choose us */   
#whyChooseUsSection .highlightCard{ 
    perspective: 1000px;
    position: relative;
    height: 25rem;
    width: 100%;
}

#whyChooseUsSection .highlightCard .cardFront,
#whyChooseUsSection .highlightCard .cardBack{
    padding: 3rem;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--my-border-color);
    border-radius: 2rem;
    inset: 0;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
} 
#whyChooseUsSection .highlightCard .cardFront{
    background: var(--my-card-bg);
    color: var(--my-text);
    justify-content: center;
}
#whyChooseUsSection .highlightCard .cardBack{
    background: var(--my-text);
    color: var(--my-bg); 
    transform: rotateY(180deg);
    justify-content: end;
} 
#whyChooseUsSection .highlightCard.flipped .cardFront {
  transform: rotateY(180deg);
} 
#whyChooseUsSection .highlightCard.flipped .cardBack {
  transform: rotateY(360deg) !important;
}
 
#whyChooseUsSection .highlightCard button{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: var(--my-secondary-btn-bg);
    color: var(--my-text);
    border-radius: 100%;
    width: 3rem;
    height: 3rem;
    font-size: 1.4rem; 
} 
#whyChooseUsSection .highlightCard svg{ 
    width: 8rem;
    margin-bottom: 2rem; 
} 
#whyChooseUsSection .highlightCard label{ 
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
}
#whyChooseUsSection .highlightCard p{
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 0;
}

#whyChooseUsSection .testimonials{
    background: var(--my-secondary-btn-bg);  
    color: var(--my-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    border-radius: 2rem; 
}
#whyChooseUsSection .testimonials img{
    width: 15rem;
    margin-bottom: 3rem;
} 
#whyChooseUsSection .testimonials p{
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 3.2rem;
    width: 80%;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 4rem;
} 
#whyChooseUsSection .testimonials label.name{ 
    font-size: 2rem;
    font-weight: 700;
}

#whyChooseUsSection .testimonials label.role{ 
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--my-subtext);   
} 