*{
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
/* Hero Section */
#hero{

background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/hero\ img.jpg);
background-attachment: fixed;
background-position: center;
background-size: cover;
height: 100vh;
}
.container {
    width: 85%;
    margin: 0 auto;
    padding: 0px 12px;
}
header .container{
    display: flex;
    justify-content: space-between;
}
header{
    padding: 16px 0;
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    background-color: #333333 */
}
header .logo h2{
font-size: 24px;
font-weight: 700;
font-family: 'Source Sans 3', sans-serif;


}
header .logo h2 a{
text-decoration: none;
color: #FF305B;
padding: 7px 0;
margin-right: 16px;
}
header .nav-list ul{
    list-style: none;
    display: flex;
justify-content: space-between;
}
header .nav-list ul li{
    padding: 8px;
    margin: 0 10px;
}
header .nav-list ul li a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: .3s;
}
header .nav-list ul li a:hover{
    color: #FF305B;
}
header .nav-list ul li a.home{
color:#FF305B ;
}
#hero .welcome{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    
}
#hero .welcome p{
    font-size: 24px;
    color: white;
    font-weight: 400;
    font-family: 'Source Sans 3', sans-serif;
    margin-bottom: 16px;
}
#hero .welcome .typewriter {
display: inline-block;
overflow: hidden;
white-space: nowrap;
border-right: 2px solid white;
width: 0;
animation: typing 2s steps(8) forwards, blink 0.7s step-end infinite;
vertical-align:middle;
}


@keyframes typing {
from { width: 0 }
to { width: 8ch } 
}


@keyframes blink {
50% { border-color: transparent }
}
#hero .welcome h2{
    color: white;
    font-weight:600 ;
    font-size:24px ;
    font-family: 'Source Sans 3', sans-serif;
    margin-bottom: 16px;
}
#hero .welcome h1{
    color: #FF305B;
    font-size: 70px;
    font-weight: 700;
    font-family: 'Source Sans 3', sans-serif;
    margin-bottom: 8px;
}
@media (max-width: 768px) {
header .logo h2 a {
    font-size: 18px;
    margin-right: 8px;
    padding: 4px 0;
}


header .nav-list ul {
    gap: 5px;
}

header .nav-list ul li {
    padding: 4px;
    margin: 0 5px;
}

header .nav-list ul li a {
    font-size: 14px;
}


header .container {
    padding: 5px 10px;
}
}
/* About Section */
#about .container {

    display: flex;
    justify-content: center;  
    align-items: center;       
    gap: 50px;                 
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 200px;
}

#about .image-box {
position: relative;
width: 300px;
height: 300px;
flex-shrink: 0;
}

#about .image-border {
position: absolute;
width: 100%;
height: 100%;
border: 10px solid #555;
border-radius: 5px;
top: 0;
left: 0;
z-index: 1;
}

#about .overlay {
position: absolute;
top: 20px;
left: 20px;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 2;
border-radius: 5px;
}

#about .overlay img {
width: 100%;
height: 100%;
border-radius: 5px;
transition: all 0.4s ease;
display: block;
}
#about .image-content {
position: absolute;
bottom: -100%;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6); 
color: white;
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
transition: bottom 0.6s ease;
text-align: center;
border-radius: 5px;
}

#about .image-content i{
    color: white;
    transition: .4s;
}
#about .image-content i:hover{
    color: #FF305B;
}
#about .overlay:hover .image-content {
bottom: 0;
}

#about .content{
    padding-left: 50px;
}

#about .content h2 {
font-size: 36px;
font-weight: 600;
color: #333;
margin-bottom: 20px;
position: relative;
}
#about .content hr{
border: none;
border-top: 1px dotted #999;
margin: 20px 0
}

#about .content h2::before {
content: '';
    position: absolute;
    left: -8px;
    top: 8px;
    width: 4px;
    height: 26px;
    background-color: #FF305B;
}

#about .content p {
font-size: 16px;
color: #555555;
line-height: 1.6;
margin-bottom: 20px;
}

#about .informations {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

#about .informations p {
width: 48%;
font-size: 15px;
color: #555;
}

#about .informations p span {
font-weight: 600;
color: #333;
}

#about .buttons {
margin-top: 25px;
display: flex;
gap: 15px;
}

#about .buttons button {
padding: 10px 25px;
border: none;
background-color: #FF305B;
color: white;
border-radius: 4px;
font-size: 15px;
cursor: pointer;
transition: background-color 0.3s ease;
}

#about .buttons button:hover {
background-color: #FF5733;
}
@media (max-width: 992px) {
    #about .container {
        flex-direction: column;
        padding-left: 20px; 
        text-align: center;
    }
    
    #about .content {
        padding-left: 0;
    }

    #about .informations p {
        width: 100%; 
    }
}

@media (max-width: 576px) {
    #about .image-box {
        width: 250px;
        height: 250px;
    }

    #about .content h2 {
        font-size: 28px;
    }

    #about .content p {
        font-size: 14px;
    }
}

/* Services Section */

#services{
    background-color: #F1F1F1;
    padding: 80px 0;
    margin: 80px 0;
    display: flex;
}
#services .container .title{
    margin-bottom: 50px;
}

#services .container .title h2{
    font-size: 40px;
    font-weight: 800;
    color: #333333;
    font-family: 'Source Sans 3', sans-serif;
    width: fit-content;
    margin: 0px auto;
    position: relative;
}
#services .container .title h2::after{
    content: "";
    display: inline-block;
    width: 200px;
    height: 1px;
    background-color: #ff305b;
    position: absolute;
    bottom: -5px;
    left: 15px;
}
#services .container .title h2::before{
    content: "";
    width: 100px;
    height: 15px;
    display: block;
    position: absolute;
    bottom: -13px;
    left: 55px;
    border-top: 1px solid #ff305b;
    border-bottom: 1px solid #ff305b;
}
#services .container .cards{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-inline: 50px;
    gap: 20px;
}
#services .container .cards .card{
    margin-top: 24px;
    padding: 10px 12px;
    background-color: transparent;
    width: 23%;
    text-align: center;
    transition:  0.3s ease-in-out 0s;

}

#services .container .cards .card:hover{
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#services .container .cards .card i{
    font-size: 30px;
    font-weight: 900;
    color: #FF305B;
    margin-top: 20px;
    transition: .6s;
}
#services .container .cards .card h3{
    font-size: 26px;
    font-weight: 600;
    color: #333333;
    font-family: 'Source Sans 3', sans-serif;
    margin: 15px 0;
}
#services .container .cards .card p{
        font-size: 16px;
        font-weight: 400;
        color: #333333;
        margin-bottom: 16px;
        line-height: 1.5;
        max-width: 1000px;
}

#services .container .cards .card:hover i{
transform: scale(1.5);
}
@media (max-width: 992px) {
    #services .container .cards .card {
        width: 45%; 
    }
}
@media (max-width: 576px) {
    #services .container .cards .card {
        width: 100%; 
    }
}
/* Portfolio Section */

#portfolio .container h2{
        font-size: 40px;
    font-weight: 800;
    color: #333333;
    font-family: 'Source Sans 3', sans-serif;
    width: fit-content;
    margin: 0px auto;
    position: relative;
}
#portfolio .container h2::after{
    content: "";
    display: inline-block;
    width: 200px;
    height: 1px;
    background-color: #ff305b;
    position: absolute;
    bottom: -5px;
    left: 15px;
}
#portfolio .container h2::before{
    content: "";
    width: 100px;
    height: 15px;
    display: block;
    position: absolute;
    bottom: -13px;
    left: 55px;
    border-top: 1px solid #ff305b;
    border-bottom: 1px solid #ff305b;
}
#portfolio .container .links ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
    padding-left: 32px;
    margin-bottom: 16px;
}
#portfolio .container .links ul li{
    margin: 30px 20px;
}
#portfolio .container .links ul li a{
    text-decoration: none;
    color: #333333;
}
#portfolio .container .links ul li a.special{
    color: #FF305B;
}
#portfolio .container .images{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 80px;
}
#portfolio .container .images img{
    width: 31%;
    transition: .5s;
    height: 250px;
}
.images img:hover {
filter: brightness(70%);
cursor: pointer;
}
@media (max-width: 992px) {
    #portfolio .container .images img {
        width: 47%;
    }
}
@media (max-width: 576px) {
    #portfolio .container .images img {
        width: 100%;
    }
}
/* Teammembers Section */


#team-members{
    background-color: #F1F1F1;
}
#team-members .container .team-process{
        display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px 0;
}
#team-members .container .team-process .card{
    text-align: center;
}
#team-members .container .team-process .card i{
    font-size: 26px;
    font-weight: 900;
    color: #FF305B;
}
#team-members .container .team-process .card p{
    color: #333333;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
}
#team-members .container .team-process .card span{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}
@media (max-width: 992px) {
    #team-members .container .team-process {
        gap: 20px;
    }
    #team-members .container .team-process .card {
        width: 45%;
    }
}
@media (max-width: 576px) {
    #team-members .container .team-process .card {
        width: 100%;
    }
}
/* Feedback Section */

#feedback .container{
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
#feedback .container .title h2{
    font-size: 40px;
    font-weight: 800;
    font-family: 'Source Sans 3', sans-serif;
    position: relative;
}
#feedback .container .title h2::after{
    content: "";
    display: inline-block;
    width: 200px;
    height: 1px;
    background-color: #ff305b;
    position: absolute;
    bottom: -5px;
    left: 50px;
}
#feedback .container .title h2::before{
    content: "";
    width: 100px;
    height: 15px;
    display: block;
    position: absolute;
    bottom: -13px;
    left: 100px;
    border-top: 1px solid #ff305b;
    border-bottom: 1px solid #ff305b;
}
#feedback .container .card{
    padding: 40px 20px;
    background-image: linear-gradient( 140deg , #ff305b 0% 15%,#F1F1F1 15% 100%) ;
    border-radius: 10px;
    width: 85%;
    display: flex;
    gap: 40px;
    
}
#feedback .container .card img{
    border-radius: 50%;
    width: 120px;
}
#feedback .container .card .image{

position: relative;
width: 120px;
height: 120px;
z-index: 1;
}

#feedback .container .card h3{
    font-size: 26px;
    font-weight: 600;
    font-family: 'Source Sans 3', sans-serif;
    margin-bottom: 8px;
}
#feedback .container .card p{
    color: #777777;
        font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}
#feedback .container .card p:hover{
    cursor: pointer;

}
#feedback .container .card span{
    display: inline-block;
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}
#feedback .container .card .rate i{
    font-size: 16px;
    font-weight: 900;
    color: #F1C30D;
    transition: .5s;
}
#feedback .container .card .rate i:hover{
    color: #FF305B;
}
@media (max-width: 992px) {
    #feedback .container .card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    #feedback .container .card .image::before {
display: none;
    }
}
@media (max-width: 576px) {
    #feedback .container {
        padding: 40px 20px;
    }
    #feedback .container .card {
        width: 100%;
        gap: 20px;
        padding: 20px;
    }
    #feedback .container .card img {
        width: 100px;
    }
    #feedback .container .card .image {
        width: 100px;
        height: 100px;
    }
    #feedback .container .card .image::before {
        top: -15px;
        left: -8px;
        border-top: 80px solid #FF305B;
        border-right: 70px solid transparent;
    }
}
/* Blog Section */

#blog{
    background-color: #F1F1F1;

}
#blog .container{
    padding: 80px 0;
}
#blog .container .title h2{
    width: fit-content;
    margin: 0px auto;
    font-size: 40px;
    font-weight: 800;
    font-family: 'Source Sans 3', sans-serif;
    position: relative;
}
#blog .container .title h2::after{
    content: "";
    display: inline-block;
    width: 200px;
    height: 1px;
    background-color: #ff305b;
    position: absolute;
    bottom: -5px;
    left: -20px;
}
#blog .container .title h2::before{
    content: "";
    width: 100px;
    height: 15px;
    display: block;
    position: absolute;
    bottom: -13px;
    left: 30px;
    border-top: 1px solid #ff305b;
    border-bottom: 1px solid #ff305b;
}
#blog .container .cards{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    
}
#blog .container .card{
    background-color: white;
    width: 31%;
    border-radius: 10px;
    margin-top: 60px;
border: 1px solid #D3D3D3;
}

#blog .container .card .image img{
    width: 100%;
}
#blog .container .card .content{
    padding: 0px 20px 20px 20px;
}
#blog .container .card .content .first{
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 16px;
}
#blog .container .card .content h5{
    font-size: 26px;
    font-weight: 600;
    color: #333333;
    font-family: 'Source Sans 3', sans-serif;
    transition: .4s;
}
#blog .container .card .content h5:hover{
    color: #FF305B;
    cursor: pointer;
}
#blog .container .card .content .second{
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.5;
}
#blog .container .card .content a{
    text-decoration: none;
    color:#333333 ;
    transition: .4s;
}
#blog .container .card .content a:hover{
    color: #FF305B;
}
@media (max-width: 992px) {
    #blog .container .card {
        width: 30%;
    }
}
@media (max-width: 576px) {
    #blog .container .card {
        width: 100%;
    }
}
/* Contact Section */

#contact{
    padding: 80px 0;
}
#contact .container .title h2{
        width: fit-content;
    margin: 0px auto;
    font-size: 40px;
    font-weight: 800;
    font-family: 'Source Sans 3', sans-serif;
    position: relative;
    color: #333333;
    margin-bottom: 40px;
}
#contact .container .title h2::after{
    content: "";
    display: inline-block;
    width: 200px;
    height: 1px;
    background-color: #ff305b;
    position: absolute;
    bottom: -5px;
    left: -5px;
}
#contact .container .title h2::before{
    content: "";
    width: 100px;
    height: 15px;
    display: block;
    position: absolute;
    bottom: -13px;
    left: 45px;
    border-top: 1px solid #ff305b;
    border-bottom: 1px solid #ff305b;
}
#contact .container .form .inputone{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;;
}
#contact .container .form .inputone input{
    width: 49.5%;
    padding: 6px 12px;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid #CBCBCB;
    height: 40px;
}
#contact .container .form .inputtwo input{
        width: 100%;
    padding: 6px 12px;
    margin: 20px 0;
    border-radius: 5px;
    border: 1px solid #CBCBCB;
    position: relative;
    height: 40px;
}
#contact .container .form .inputthree textarea{
width: 100%;
height: 150px;
padding: 10px 15px;
border: 1px solid #CBCBCB;
border-radius: 4px;
resize: vertical;
font-size: 16px;
transition: all 0.3s ease;
margin-bottom: 20px;
}
#contact .container .form .inputone input::placeholder,
#contact .container .form .inputtwo input::placeholder,
#contact .container .form .inputthree textarea::placeholder
{
font-size: 16px;
font-weight: 400;
}
#contact .container .form .inputone input:focus,
#contact .container .form .inputtwo input:focus,
#contact .container .form .inputthree textarea:focus{
        border-color: #FF305B;
        outline: none;
}
#contact .container .form button{
    width: 155px;
    height: 45px;
    background-color: #ff305b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

/* Footer Section */

#footer{
    background-color: #333333;
    padding: 40px 0;
}
#footer .icons{
    width: fit-content;
    margin: 0px auto;
    margin-bottom: 16px;
    padding-left: 32px;
}
#footer .icons a{
    text-decoration: none;
}
#footer .icons i{
display: inline-block;         
width: 20px;                  
background-color: #333;        
color:white;                   
border-radius: 50%;            
text-align: center;
margin: 20px 5px;
font-size: 16px;
transition: .3s;
}
#footer .icons i:hover{
    color: #FF305B;
}
#footer .container p{
    width: fit-content;
    margin: 0px auto;
    color: white;
}
#footer .container p strong{
    color: #FF305B;
    cursor: pointer;
}



