/* GLOBAL  */
*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

.clr
{
    clear: both;
}

body
{
    font-family: "Source Sans 3", sans-serif;
}

.source-sans {
    font-family: "Source Sans 3", sans-serif;
}

.container
{
    width: 90%;
    margin: auto ;
}

.section
{
    padding: 70px;
}

.titles
{
    color: #333;
    text-align: center;
    font-size: 40px;
    font-weight: 800;
}

.paragraphs
{
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #555;
}

.padding-30
{
    padding-block: 10px;
}

/* Main section */
.main-section
{
    height: 100vh;
    background-image: url(/images/hero\ img.jpg);
    background-size: cover;
    
}

.main-section .layer
{
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
}

.main-section .layer .nav-bar
{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding-block: 15px;
    padding-inline: 350px;
    background: #333;

}

.main-section .layer .nav-bar .nav-logo
{
    float: left;
}
.main-section .layer .nav-bar .nav-logo h1
{
    color: #FF305B;
    font-size: 24px;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
}

.main-section .layer .nav-bar .nav-links ul
{
    list-style: none;
    float: right;
}

.main-section .layer .nav-bar .nav-links ul li
{
    float: left;
    padding-inline: 10px;   
    font-size: 16px;
    font-weight: 300;
    line-height: 17px;   
    font-family: "Roboto", sans-serif;
    padding-top: 5px;
}

.main-section .layer .nav-bar .nav-links ul li a
{
    text-decoration: none;
    color: white;
}

.main-section .layer .nav-bar .nav-links ul li a:hover
{
    color: #FF305B;
}





.main-section .layer .main-cap
{
    text-align: center;
    margin: auto;
    padding-top: 18%;
}

.main-section .layer .main-cap h1
{
    font-size: 70px;
    line-height: 77px;
    color: #FF305B;
    padding-block: 10px;
}

.main-section .layer .main-cap p
{
    font-size: 25px;
    line-height: 26px;
    font-weight: 600;
    color: white;
}

.main-section .layer .main-cap .containerr{display: inline-block;}

.main-section .layer .main-cap .containerr .text
{
    font-weight: 300;
    border-right: 2px solid;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation:
        typing 1s steps(23),
        cursor .2s step-end infinite alternate;
}

/* cursor blinking */
@keyframes cursor {
    50% {border-color: transparent}
}

/* typing effect*/
@keyframes typing{
    from {width: 0}
}

/* ABOUT */
.about
{
    padding: 100px;
    padding-left: 22%;
    /* background-color: gray; */
}

.about .container 
{
    margin: 0 auto; /* Center horizontally using margin */
    overflow: hidden; 
}
    /* caption */
.about .about-caption
{
    /* background-color: aqua; */
    float: left;
    width: 40%;
    margin-left: 75px;
}

.about .about-caption h2
{
    font-weight: 600;
    font-size: 34px;
    color: #333;
}

.about .about-caption h2::before
{
    content: "";
    background: #FF305B;
    display: inline-block;
    width: 4px;
    height: 22px;
}

.about .about-caption p
{
    font-weight: 400;
    font-size: 17px;
    color: #555;
    line-height: 25px;
    font-family: "Roboto", sans-serif;
    padding-top: 20px;
}

.about .about-caption hr
{
    border: 0;
    border-bottom: 1px dashed #ccc;
    background: #999;
}

.about .about-caption ul
{
    text-decoration: none;
}

.about .about-caption ul span
{
    font-weight: bold;
}

.about .about-caption ul li
                            {
    width: 50%;
    list-style: none;
    float: left;
    padding-inline: 10px;   
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;   
    font-family: "Roboto", sans-serif;
    color: #555;
    padding-top: 5px;
}

.about .about-caption ul li .x 
{
    float: left;
}

.about .about-caption button
{
    background-color: #FF305B;
    color: white;
    font-size: 17px;
    border: 0;
    border-radius: 7px;
    width: 170px;
    height: 50px;
    margin: 20px;
    float: left;
}

.about .about-caption button:hover
{
    background-color:#EC2403;
}

    /* img */
.about .about-img
{
    /* background-color: #FF305B; */
    float: left;
    width: 30%;
    border-radius: 10px;

    
}

.about .about-img .border
{
    border: #555 8px solid;
    border-radius: 10px;
}


.about .about-img .border .img {
position: relative;
top: 20px;
left: 20px;
border-radius: 10px;
overflow: hidden;
}

.about .about-img .border .img img
{
    width: 100%;
    border-radius: 10px;
}

.about .about-img .border .img .layer
{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.about-img .border .img:hover .layer
{
    top: 0;
    transition: top 0.5s ease; 
}

.about .about-img .border .img .layer i
{
    color: white;
    font-size: 17px;
    padding-right: 10px;
    position: relative ;
    top: 50%;
    left: 35%;
}

.about .about-img .border .img .layer i:hover
{
    color: #FF305B;
}


/* OUR SERVICES */

.service-section
{
    padding-block: 70px;
    background-color: #F1F1F1;
    text-align: center;
}

.service-section h2
{
    color: #333;
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    position: relative;
}

h2 
{
    position: relative;
}

.service-section .service-content
{
    padding-inline: 300px;
    padding-top: 80px;
}

.service-section .service-content .block
{
    float: left;
    width: 25%;
    text-align: center;
    padding: 20px;
    transition: .3s background-color;
}

.service-section .service-content .block:hover
{
    background-color: white;
}
.service-section .service-content h3
{
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.service-section .service-content p
{
    color: #555;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 25px;

}

.service-section .service-content i
{
    color: #FF305B;
    font-size: 30px;
    padding-bottom: 20px;
    transition: .3s transform;
}

.service-section .service-content .block:hover i
{
    transform: scale(1.2);
}

/* PORTFOLIO */

.portfolio-section 
{
    background-color: white ;
    text-align: center;
    padding-block: 70px;
}

.portfolio-section ul {
    display: flex;  
    justify-content: center;  
    align-items: center; 
    padding: 0; 
    list-style: none;
}

.portfolio-section ul li {
    padding-inline: 20px;
    padding-block: 45px;
    font-size: 16px;
    color: #333;
    font-family: 'Roboto', 'sans-serif';
}

.portfolio-section .portfolio-nav ul li:hover
{
    color: #FF305B;
}
 
/* imgs  */
.portfolio-section .portfolio-imgs {
    /* background-color: #FF305B; */
    float: left;
    width: 100%;
    text-align: center;
}

.portfolio-section .portfolio-imgs .img-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
}

.portfolio-section .portfolio-imgs .img-container .x {
    width: calc(33.333% - 35px); /* Adjust width as needed */
    margin: 0 17.5px 35px; /* Adjust margin as needed */
}


.portfolio-section .portfolio-imgs .img-container .x img {
    width: 100%;
    max-width: 360px;
    display: block;
    margin: 0 auto;
}

/* NUMBERS SECTION  */

.numbers
{
    background-color: #F1F1F1;
}

.numbers .container
{
    width: 70%;
    padding: 90px;
}

.numbers .container .block 
{
    width: 25%;
    /* background-color: aqua; */
    text-align: center;
    justify-content: center;
    float: left;
}

.numbers .container .block h1
{
    font-size: 26px;
    padding-block: 10px;
}

.numbers .container .block i
{
    color: #FF305B;
    font-size: 26px;    
}


/* FEEDBACK SECTION */

.feedback .content
{
    padding: 90px;
    width: 90%;
    /* background-color: #555; */
    justify-content: center;
    text-align: center;
    margin: auto;
}

.feedback .content .card
{
    position: relative;
    width: 750px;
    height: 275px;
    background-color: #F1F1F1;
    margin: auto;
    margin-top: 50px;

    border-radius: 7px;    
}

.feedback .content .card .brdr
{
    position: absolute;
    left: 0;
    top: 0;
    
    border: 100px solid red;
    border-color: #FF305B transparent transparent #FF305B;
    border-radius: 7px;
    z-index: 1;
}

.feedback .content .card img
{
    border-radius: 50%;
    width: 15%;
    float: left;
    z-index: 2;
    position: relative;
    margin: 50px;
}

.feedback .content .card .card-text {
    position: absolute;
    top: 0;
    top: 55px;
    left: 170px;
    padding-bottom: 30px;
}

.feedback .content .card .card-text h3 {
    position: relative;
    font-size: 26px;
    float: left;
    z-index: 2;
    padding-bottom: 5px;
}

.feedback .content .card .card-text p {
    position: relative;
    text-align: left;
    z-index: 2;
    line-height: 25px;
    color: #555;
    font-family: 'Roboto', 'sans-serif';
    padding-bottom: 5px;

}

.feedback .content .card .card-text .loc {
    color: #999;
    display: block;
    padding-bottom: 5px;

}

.feedback .content .card .card-text .stars {
    text-align: left;

}

.feedback .content .card .card-text .stars i {
    color: #f1c30d;
}

.feedback .content .buttons {
    /* background-color: #333; */
    margin-top: 10px;
    text-align: center;
}

.feedback .content .buttons .dot,
.feedback .content .buttons i.circle {
    display: inline-block;
    vertical-align: middle;
}

.feedback .content .buttons .dot {
    background-color: #FF305B;
    width: 32px;
    height: 12px;
    border-radius: 10px;
}

.feedback .content .buttons i.circle {
    color: #FF305B;
    font-size: 15px;
    padding-left: 10px; 
}


/* BLOG */

.blog-section
{
    background-color: #F1F1F1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 50px;
}

.blog-section .blog-container
{
    width: 65%;
}

.blog-section .blog-container .posts
{
    margin-block: 50px;
}

.blog-section .blog-container .posts h3
{
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    
}


.blog-section .blog-container .posts p
{
    font-family: "Roboto", sans-serif; 
    line-height: 25px;
    font-weight: 400;
    color: #555;   
}
.blog-section .blog-container .posts .post1
{
    background-color: white;
    width: 30%;
    margin-right: 30px;
    float: left;
    
}

.blog-section .blog-container .posts img
{
    width: 100%;
}

.blog-section .blog-container .posts .post-text
{
    padding:25px ;
}

/* Contact Us */

.contact-section .contact-containter
{
    padding-block: 50px;
}
        /* --------------------------------------FORM ----------------------------*/
.feedback-form {
    width: 40%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
}

.feedback-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    height: 100px;
}

.form-group button {
    background-color: #FF305B;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.form-group button:hover {
    background-color: #EC2403;
}
        /* ---------------------------------FORM---------------------------- */



/* Footer */
.footer
{
    background-color: #333;
}

.footer .footer-content
{
    padding-block: 50px;
}

.footer .footer-content .icons
{
    color: white;
    text-align: center;
    
}

.footer .footer-content .icons i
{
    padding: 10px;
    font-size: 18px;
}

.footer .footer-content .icons i:hover
{
    color: #FF305B;
}

.footer .footer-content p 
{
    text-align: center;
    padding: 15px;
    color: white;
}

.footer .footer-content p span
{
    color: #FF305B;
}