@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%;
}

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

.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);
}

.header{
    position: sticky;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    padding-top: 0;
    box-shadow: var(--box-shadow);
}

/* top bar containing language switch, social links and small nav */
.top-bar{
    width:100%;
    background: rgb(31, 35, 64); 
    font-size: 1.4rem;
    color: #fff;
}

.top-bar .countries-navbar a{
    margin-left:1rem;
    color: #fff;
    font-size: 1.rem;
    text-decoration:none;
}
.top-bar .countries-navbar a:hover{
    color: var(--main-color);
}


.top-bar .lang .langBtn,
.top-bar .media .wa-toggle{
    color:#fff;
}
.top-bar .lang .langBtn:hover,
.top-bar .media .wa-toggle:hover{
    color: var(--main-color);
}

.top-bar .lang,
.top-bar .media,
.top-bar .countries{
    display:flex;
    align-items:center;
    gap:1rem;
    color:#fff;
}

.top-bar .container{
    max-width:1200px;
    margin:0 auto;
    padding:0.5rem 4%;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:0.5rem;
}


.top-bar .container > *:not(:first-child) {
    position: relative;
    padding-left: 1rem;
}
.top-bar .container > *:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #fff;
}

.countries .navbar{
    color: #fff;
}

/* main bar*/
.main-header{
    width:100%;
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo,
.main-header .navbar,
.main-header #menu-btn{
    margin:0;
}

.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: 1.8rem; 
  margin-left: 1rem; 
  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;
}

.wa-dropdown {
  position: relative;
  display: inline-block;
}

.wa-toggle {
  background: #0d6efd; 
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff; 
  font-size: 28px; 
  transition: all 0.3s ease;
}

.top-bar .wa-toggle {
    background: none;
    padding: 0;
    font-size: 1.8rem;
    color: #fff;
}


.wa-toggle:hover {
  color: rgb(254, 169, 0);
  transform: scale(1.1);
}

.arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.wa-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.wa-menu {
  position: absolute;
  right: 0;
  top: 120%;
  background: #ffffff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.wa-dropdown:hover .wa-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.wa-menu a:hover {
  background: #f5f5f5;
}

.fi {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.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;
    background: url(images/header.gif) no-repeat center/cover;
    min-height: 89vh;
}

.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: transparent;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    padding: 0 8%;
    gap: 6rem;
}


.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: #fbfbfb;
    margin-left: 120px;
}


/* 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 #f9f9f9;
    padding: 10px 0;
    font-size: 15px;
    color: #ffffff;
}


/* 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 #f5f5f5;
    color: #ffffff; 
    background: transparent; 
}

.phone-input select option {
    color: #000000; 
    background: #ffffff; 
}

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


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

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


/* 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;
  }
}

