

/* changable styles  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Manrope", sans-serif;
}

:root {
    --color-primary: #fef4f2;
    --color-dark: #343f52;
    --color-hover: #f78b77;
    --color-grey: #60697b;
    --color-white: #ffffff;
    --transition: all .15s ease-in-out;
}


h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 19px;
}

p {
    font-size: 21px;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color:#f9ab9c;
    color: var(--color-white);
}

/* utilites styles  */

a {
    text-decoration: none;
    transition: var(--transition);
    width: max-content;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-cenetr {
    align-items: center;
}

.all-cenetr {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-50 {
    gap: 50px;
}

.hover:hover {
    color: var(--color-hover);
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

*[class*="col-"] {
    padding: 0px 12px;
}

.container {
    max-width: 1320px;
    padding: 0px 15px;
    margin: auto;
}

/* header [------top bar------] */

header {
    padding: 50px 0px;
    background-color: var(--color-primary);
}


.logo img {
    max-width: 134px;
}

.about-en-icon a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
}

.about-en-icon ul li:last-child {
    display: none;
}

/* header [------nav bar------] */

.nav-bar {
    padding: 25px 30px;
    background-color: var(--color-white);
    margin-top: 30px;
    border-radius: 10px;
}

.nav-links a {
    font-weight: 700;
}

.nav-links li {
    padding: 0px 15px;
}

.nav-links a,
.social-links a {
    font-size: 1.1rem;
    color: var(--color-dark);
}

.social-links li {
    transition: var(--transition);
}

.social-links li:hover {
    transform: translateY(-5px);
}

/* Hero Section style  */

.hero-section {
    background-color: var(--color-primary);
    padding: 0px 0px 250px 0px;
}

.service-cards-top-reletive {
    padding: 150px 0 0 0;
    position: relative;
}

.hero-content {
    padding-right: 20px;
    align-content: center;
}

.hero-content h1,
.hero-content p {
    color: var(--color-dark);
    margin-bottom: 30px;
}


.hero-btn button {
    padding: 10px 25px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 7px;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
}

.hero-btn button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
}

.see-project {
    background-color: var(--color-hover);
}

.learn-more {
    background-color: #fab758;
}

/* services section style  */

.services-section {
    position: relative;
    justify-content: center;
    background-color: var(--color-white);
    padding-bottom: 50px;
}

.services-cards-section {
    position: absolute;
    top: -100px;
    padding: 0 15px;

}

.services-card {
    padding: 30px;
    box-shadow: 0 0 0 0.05rem rgba(8, 60, 130, 0.06), 0 0 1.25rem rgba(30, 34, 40, 0.04);
    border-radius: 10px;
    background-color: #ffffff;
    flex-direction: column;
    margin-block: 10px;
    position: relative;
}


.services-card-1 a {
    color: #fab758;
}
.services-card-2 a {
    color: #45c4a0;
}
.services-card-3 a {
    color: #f78b77;
}
.services-card-4 a {
    color: #3f78e0;
}



.services-card-1 {
    border-bottom: 5px solid #fee9cd;
}
.services-card-2 {
    border-bottom: 5px solid #c7ede3;
}
.services-card-3 {
    border-bottom: 5px solid #fddcd6;
}
.services-card-4 {
    border-bottom: 5px solid #c5d7f6;
}


.services-card svg {
    max-width: 52px;
    aspect-ratio: 1;
    margin-bottom: 20px;
}

.text-yellow .lineal-fill {
    fill: #fcd49b !important;
}

.text-green .lineal-fill {
    fill: #8fdcc6 !important;
}

.text-orange .lineal-fill {
    fill: #fab9ad !important;
}

.text-blue .lineal-fill {
    fill: #8caeec !important;
}

.services-card p {
    font-size: 16px;
    line-height: 1.5;
    margin-block: 20px;
}

.services-card a {
    font-size: 16px;
    font-weight: 700;
    /* color: #fabc64; */
    position: relative;
    display: inline-block;
    transition: --;
}

.services-card a::after {
    content: '';
    color: #fabc64;
    position: absolute;
    width: 0%;
    height: 1.5px;
    background-color: #fabc64;
    bottom: -3px;
    right: 0;
    transition: var(--transition);
    /* display: none; */
}

.services-card-2 a::after {
    background-color: #45c4a0;
}

.services-card-3 a::after {
    background-color: #f78b77;
}

.services-card-4 a::after {
    background-color: #3f78e0;
}

.services-card a:hover::after {
    left: 0;
    width: 100%;
}


/* process steps section styles  */

.process-steps-container {
    padding-top: 300px;
    width: 1320px;
}

.process-steps-img {
    justify-content: center;
    align-items: center;
}

.process-steps-content ul {
    margin-top: 40px;
}

.steps-no {
    min-width: 45px;
    max-height: 45px;
    background-color: #feece9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    font-weight: 700;
    color: var(--color-hover);
    border-radius: 50%;
    margin-right: 30px;
}

.step-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.steps-details {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.steps-details p {
    font-size: 16px;
    color: var(--color-grey);
    margin-bottom: 20px;
}

/* choose us section style  */

.choose-us-section {
    padding: 150px 0 50px 0;
}

.choose-us-content {
    color: var(--color-dark);
}

.choose-us-content h3 {
    margin-bottom: 30px;
}

.choose-us-content p {
    font-size: 16px;
    line-height: 1.5;
    padding-left: 20px;
    color: var(--color-grey);
}

.choose-us-content button {
    font-size: 17px;
    font-weight: 700;
    border: none;
    background-color: transparent;
    margin-block: 10px;
    cursor: pointer;
}

.choose-us-content ul li:first-child button {
    color: var(--color-hover);
}


/* work section style  */

.works-section {
    background-color: var(--color-primary);
    position: relative;
}

.works-section {
    padding: 100px 0 150px 0;
}

.our-works-content {
    color: var(--color-dark);
}

.our-works-content h3 {
    padding: 0 75px 0 0;
    margin-bottom: 20px;
}

.our-works-content p {
    padding: 0 75px 0 0;
    color: var(--color-grey);
}

.work-icon {
    flex-direction: column;
    margin-bottom: 20px;
}

.work-icon svg {
    width: 52px;
    aspect-ratio: 1;
}

.work-icon p {
    font-size: 17px;
    color: var(--color-grey);
}

.text-orange .lineal-fill {
    fill: #fab9ad;
}



/* feedback card section style  */

.feedback-section {
    position: relative;
    justify-content: center;
}

.feedback-cards {
    position: absolute;
    top: -120px;
}

.feedback-card {
    padding: 35px;
    box-shadow: 0 0 0 0.05rem rgba(8, 60, 130, 0.06), 0 0 1.25rem rgba(30, 34, 40, 0.04);
    border-radius: 10px;
    border-bottom: 5px solid #fddcd6;
    margin-block: 10px;
    background-color: var(--color-white);
}

.feedback-stars {
    color: #fcc032;
}

.feedback-card p {
    margin-block: 15px;
    font-size: 16px;
    color: var(--color-grey);
}

.feedback-card h5 {
    font-size: 18px;
    color: var(--color-dark);
}


/* recent project section style  */

.recent-project-section {
    padding-top: 300px;
    padding-bottom: 100px;
}


.recent-project-content {
    padding-right: 200px;
    color: var(--color-dark);
    margin-top: 100px;
}

.recent-project-content p {
    margin-block: 20px;
    color: var(--color-grey);
}


.project-img p {
    font-size: 14px;
    text-transform: uppercase;
    color: #a07cc5;
    font-weight: 700;
    margin-top: 20px;
    position: relative;
    padding-left: 30px;
}


.project-img p::before {
    content: '';
    position: absolute;
    background-color: #a07cc5;
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.project-img-2 p::before {
    background-color: #7cb798;
}

.project-img-2 p {
    color: #7cb798;
}

.project-img-3 p::before {
    background-color: #747ed1;
}

.project-img-3 p {
    color: #747ed1;
}

.project-img h2 {
    font-size: 21px;
    color: var(--color-dark);
    margin-block: 10px;
}

.project-img {
    padding: 0 10px;
}

.project-img img {
    border-radius: 10px;
    display: block;
    box-shadow: 0 0 0 0.05rem rgba(8, 60, 130, 0.06), 0 0 1.25rem rgba(30, 34, 40, 0.04);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.project-img img:hover {
    transform: translateY(-10px);
}

.project-img-1 img {
    width: 100%;
}

.project-img-2 img {
    width: 100%;
    margin-top: 50px;
}

.project-img-3 img {
    width: 100%;
    padding: 0 0;
    margin-top: 50px;
}

/* contact us section style  */

.contact-us-section {
    padding: 90px 0;
    background-color: var(--color-primary);
}

.contact-us-content h3 {
    font-size: 36px;
    color: var(--color-dark);
    margin-bottom: 40px;
}

.contact-us-content {
    padding-left: 50px;
}

.contact-us-content ul li {
    margin-block: 30px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.contact-us-icon {
    font-size: 21px;
    color: var(--color-hover);
    padding-right: 15px;
}

.contact-us-detail h5{
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.contact-us-detail p,
.contact-us-detail p a {
    font-size: 16px;
    color: var(--color-grey);
}

/* footer section style  */

.footer-section {
    padding: 90px 0;
    position: relative;
}

.footer-col-one p,
.footer-col-four p {
    margin-block: 20px;
}


*[class*="footer-col"] h4{
    color: var(--color-dark);
    margin-bottom: 20px;
}

.footer-col-one p,
.footer-col-two p,
.footer-col-four p {
    font-size: 16px;
    color: var(--color-grey);
}

.footer-col-two a {
    color: var(--color-grey);
    margin-top: 20px;
    display: inline-block;
}

.footer-col-three ul li {
    margin-block: 10px;
}

.footer-col-three ul li a {
    color: var(--color-grey);
}

.input-outer {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.goup-input {
    width: 100%;
}

.footer-email-input {
    padding: 14px 45px 12px 20px;
    box-shadow: 0 0 0 0.05rem rgba(8, 60, 130, 0.06), 0 0 1.25rem rgba(30, 34, 40, 0.04);
    border: none;
    outline: none; 
    width: 70%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.footer-email-input:focus {
    border: 1px solid #3f78e080;
}

.footer-submit-btn {
    background-color: var(--color-hover);
    width: 30%;
    border: none;
    box-shadow: 0 0 0 0.05rem rgba(8, 60, 130, 0.06), 0 0 1.25rem rgba(30, 34, 40, 0.04);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    /* transition: var(--transition); */
}

.btn-text {
    transition: var(--transition);
    display: inline-block;
}

.footer-submit-btn button {
    width: 100%;
    height: 100%;
    background-color: var(--color-hover);
    border: none;
    color: var(--color-white);
    font-weight: 700;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.footer-submit-btn:hover {
    box-shadow: 0 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
    
}

.footer-submit-btn button:hover .btn-text{
    transform: translateY(-2px);
}

.call-back-btn {
    width: 50px;
    aspect-ratio: 1;
    background-color: transparent;
    position: fixed;
    bottom: 50px;
    right: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-hover);
}

.call-back-btn i {
    font-size: 25px;
    color: var(--color-hover);
}