@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root{
    --main-color: rgb(254, 169, 0);
    --black: #222;
    --white: #fff;
    --light-black: #777;
    --light-white: #fff9;
    --dark-bg: rgba(0, 0, 0, 0.7);
    --light-bg: #eee;
    --border:.1rem solid var(--black);
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
    --text-shadow: 0 .5rem 3rem rgba(0, 0, 0, 0.3);
}

*{
    font-family: "Poppins", sans-serif;
    margin:0;
    padding:0;
    box-sizing: border-box;
    outline: none;
    border: none;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

html::-webkit-scrollbar{
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background-color: var(--white);
}

html::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
}

section{
    padding: 5rem 10%;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

.heading{
    background-size: cover !important;
    background-position: center !important;
    padding-top: 10rem;
    padding-bottom: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading h1{
    font-size: 10rem;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: var(--text-shadow);
}

.header{
    position: sticky;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    display: flex;
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    box-shadow: var(--box-shadow);
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    height: 70px;
}

.header .navbar a{
    font-size: 2rem;
    margin-left: 2rem;
    color: var(--black);
}

.header .navbar a:hover{
    color: var(--main-color);
}

.langBtn {
  background: none;
  border: none;
  cursor: pointer;

  font-size: 2.2rem;
  margin-left: 2rem;
  color: var(--black);
  font-weight: 600;

  text-decoration: underline;
  text-underline-offset: 0.4rem;
  text-decoration-thickness: 2px;

  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.langBtn:hover {
  color: var(--main-color);
  text-decoration-color: var(--main-color);
}


#menu-btn{
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--black);
    display: none;
}

.services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(16rem, 1fr));
    gap: 1.5rem;

}

.services .box-container .box{
    padding: 3rem, 2rem;
    text-align: center;
    background: var(--main-color);
    cursor: pointer;
}

.services .box-container .box:hover{
    background: var(--black);
}

.services .box-container .box img{
    height: 9rem;
}

.services .box-container .box h3{
    color: var(--white);
    font-size: 1.7rem;
    padding-top:1rem ;
}

.heading-title{
    text-align: center;
    margin-bottom: 3rem;
    font-size: 5.5rem;
    text-transform: uppercase;
    color: var(--black);
}


.home{
    padding: 0;
}

.home .slide{
    text-align: center;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    min-height: 60rem;
}

.home .slide .content{
    width: 85rem;
    display: none;
}

.home .swiper-slide-active .content{
    display: inline-block;
}

.home .slide .content span{
    display: block;
    font-size: 2.2rem;
    color: var(--light-white);
    padding-bottom: 1rem;
    animation:fadeIn .2s linear backwards .2s;
}

.home .slide .content h3{
    font-size: 2.7vw;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    text-shadow: var(--text-shadow);
    padding: 1rem 0;
    animation:fadeIn .2s linear backwards .4s;
}

.home .slide .content .btn{
    animation:fadeIn .2s linear backwards .6s;
}





@keyframes fadeIn{
    0%{
        transform: scale(0);
        opacity: 0;
    }
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-size: 1.7rem;
    padding: 1rem 3rem;
    cursor: pointer;
}


.btn:hover{
    background: var(--main-color);
}




.home-about {
    width: 100%;
}

.service-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 6rem; 
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-row .image {
    flex: 1 1 45rem;
    height: 35rem; 
    overflow: hidden;
}

.service-row .image img {
    width: 100%;
    display: block;
}

.service-row .content {
    flex: 1 1 45rem;
    padding: 4rem;
    background: var(--light-bg);
}

.service-row .content h3 {
    font-size: 3rem;
    color: var(--black);
}

.service-row .content p {
    font-size: 1.5rem;
    padding: 1rem 0;
    line-height: 2;
    color: var(--black);
}

@media (max-width: 1200px) {
    .service-row {
        flex-direction: column;
    }

    .service-row .image,
    .service-row .content {
        flex: 1 1 100%;
    }

    .service-row .content {
        padding: 3rem;
        text-align: center;
    }
}




.home-offer {
    text-align: center;
    padding: 6rem 1rem 4rem;
}

.home-offer::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--main-color);
    margin: 3rem auto 0;
}

.home-offer .content {
    margin: 0 auto;
    max-width: 42rem;
}

.home-offer .content .eyebrow {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--light-black);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.home-offer .content h3 {
    font-size: 3.2rem;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.home-offer .content p {
    font-size: 1.4rem;
    color: var(--light-black);
    line-height: 1.8;
    margin-top: 1.5rem;
}





.hero-form {
    min-height: 89vh;
    background: #d7d6e3;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    padding: 0 8%;
    gap: 6rem;
}


/* LEFT TEXT */
.hero-content {
    color: #1f2340;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.hero-content p {
    font-size: 1.7rem;
    max-width: 460px;
    line-height: 1.7;
}


.hero-logo {
    margin-top: 3rem;
    max-width: 250px;
    width: 100%;
    height: auto;
}

.contact-form-wrapper {
    background: transparent;
    padding: 0;
    max-width: 600px;
    color: #1f2340;
}


/* Labels */
.contact-form-wrapper label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-form-wrapper .required {
    color: #ff4d4d;
}

/* Layout */
.contact-form-wrapper .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.2rem;
}


.contact-form-wrapper .col {
    flex: 1;
}

/* Inputs */
.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #1f2340;
    padding: 10px 0;
    font-size: 15px;
    color: #1f2340;
}


/* Placeholder */
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #8a8db0;
}

/* Textarea */
.contact-form-wrapper textarea {
    min-height: 90px;
    resize: none;
    line-height: 1.6;
}


/* Phone input */
.phone-input {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.6rem;
}

.phone-input select {
    border-bottom: 2px solid #1f2340;
}

.phone-input input {
    border-bottom: 2px solid #1f2340;
}


/* Button */
.submit-btn {
    background: #6b6f8f;
    color: #ffffff;
    padding: 12px 36px;
    border-radius: 999px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1f2340;
}


/* Responsive */
@media (max-width: 900px) {
    .hero-form {
        grid-template-columns: 1fr;
        padding: 4rem 6%;
    }
}


.about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.about .image{
    flex: 1 1 50rem;
}

.about .image img{
    width: 100%;
}

.about .content{
    flex: 1 1 41rem;
    text-align: center;
}

.about .content h3{
    font-size: 3.5rem;
    color: var(--black);
}

.about .content p{
    font-size: 1.5rem;
    color: var(--light-black);
    line-height: 2;
    padding: 1rem 0;
}

.about .content p span{
    color: var(--main-color);
    font-weight: bold;
}

.about .content .icons-container{
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-end;
}

.about .content .icons-container .icons{
    background: var(--light-bg);
    padding: 2rem;
    flex: 1 1 16rem;
}

.about .content .icons-container .icons i{
    font-size: 4rem;
    margin-bottom: 2rem;
    color:var(--main-color) ;
}

.about .content .icons-container .icons span{
    font-size: 1.5rem;
    color: var(--light-black);
    display: block;
}



.footer{
    background: url(images/footer-bg.png) no-repeat;
    background-size: cover;
    background-position:center ;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 3rem;
    padding: 2rem 8%;
}

.footer .footer-logo {
    display: flex;
    align-items: center;
}

.footer .footer-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer .box-container .box h3{
    color: var(--white);
    font-size: 2.5rem;
    padding-bottom: 2rem;
}

.footer .box-container .box a{
    color: var(--light-white);
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
    display: block;
}

.footer .box-container .box a i{
    color: rgb(254, 169, 0);
    font-size: 1.5rem;
    transition: .2s linear;
}

.footer .box-container .box a:hover i{
    font-size: 2rem;
}

.footer .credit{
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: .1rem solid var(--light-white);
    font-size: 2rem;
    color: var(--white);
}

.footer .credit span{
    color:rgb(254, 169, 0);
}

@media (max-width: 900px){
    
}


@media (max-width: 900px) {
    .hero-form {
        flex-direction: column;
        text-align: center;
        padding: 5rem 5%;
    }

    .form-container {
        width: 100%;
    }
}


@media (max-width:1200px){
    section{
        padding: 3rem 5%;
    }
}

@media (max-width:991px){

    html{
        font-size: 55%; 
    }

    section{
        padding: 3rem 2rem;
    }
    .home .slide .content h3{
        font-size: 10vw;
    }
}

@media (max-width: 1440px) {
    .footer .box-container {
        padding: 2rem 6%;
        gap: 2.5rem;
    }
}


@media (max-width: 1280px) {
    .footer .box-container {
        grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
        gap: 2rem;
        padding: 2rem 5%;
    }

    .footer .box-container .box h3 {
        font-size: 2.2rem;
    }

    .footer .box-container .box a {
        font-size: 1.4rem;
    }
}

@media (max-width: 1024px) {
    .footer .box-container {
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        text-align: center;
    }

    .footer .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 991px){
    .home .slide .content h3{
        font-size: 3.2rem;
    }
}



@media (max-width:768px){
    
    #menu-btn{
    display: inline-block;
    transition: 0.2s linear;
    }

    #menu-btn.fa-times{
        transform: rotate(180deg);
    }

    .header .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: var(--border);
        padding: 2rem;
        transition: 0.2s linear;
        clip-path: polygon(0 0, 100% 0, 0 0);
    }

    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a{
        display: block;
        margin: 2rem;
        text-align: center;
    }

    .home .slide .content h3{
        font-size: 2.6rem;
    }

    .footer .box-container {
        grid-template-columns: 1fr;
    }

    .quick-links{
        display: none;
    }
}

@media (max-width:450px){
    html{
        font-size: 50%; 
    }
    .heading-title{
        font-size: 3.5rem;
    }
}

@media (max-width: 480px){
    .home .slide .content h3{
        font-size: 2.2rem;
    }
}



@media (max-width: 768px) {
  .whatsapp-float {
    width: 46px !important;
    height: 46px !important;
    font-size: 22px !important;
    bottom: 13px !important;
    right: 13px !important;
  }
}

