
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family:'Poppins', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
:root{
    
    --color-primary: #399918;
    --color-white: #eaeaea; 
    --color-dark: #333; 
    --color-black: #222; 
    --color-yellow: #FFB200; 
    --paraColor:#74828f;
    --color-brand-accent: #1230AE;

}

body{
    font-family: "Poppins",sans-serif !important;
}

.btn{
    display: inline-block;
    width: fit-content;
    padding: 12px 28px;
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: var(--color-white);
    letter-spacing: .4px;
    font-weight: 600;
    transition: .4s ease;
    opacity: 0;
    animation: logoAni 1s ease forwards; 
    animation-delay: 1.3s;
}
.btn:hover{
    background: transparent;
    color: var(--color-primary);
}
.container{
    max-width: 1620px;
    width: 90%;
    margin: 0 auto;
}

/* .......................Start Nav Bar...................... */
nav{
    width: 100%; 
    height: 5rem;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    transition: background-color 0.4s ease-in-out;
    
}

nav.scrolled {
    background-color: #fff;
    opacity: 0.98;
  
}

.social-link a i{
    transition: color 0.4s ease-in-out;
}

nav.scrolled .social-link a i{
    color: black; /* Change social link icons to black when scrolled */
}

.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-container ul{
    display: flex;
    align-items: center;
    gap: 30px;
}
.logo h3{
    font-size: 25px;
    color: var(--color-black); 
    opacity: 0;
    animation: logoAni 1s ease forwards;   
}
.nav-link li a{
    color: var(--color-black);
    font-size: 17px;
    transition: .4s ease;
    display: inline-block;
    animation: NavliaAni forwards 1s ease;
    animation-delay: calc(.2s * var(--i));
    opacity: 0;   
    font-weight: 500; 
}
.nav-link li a:hover{
    color: var(--color-primary);
}
.nav-link li .active{
    color: var(--color-primary);
}
.social-link li a{
    height: 40px;
    width: 40px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transform: rotate(45deg);
    transition: .4s ease;   
    animation: socialAni forwards 1s ease;
    animation-delay: calc(.2s * var(--i));
    opacity: 0;    
}
.social-link li a:hover{
    border-color: var(--color-white);
}
.social-link li a i{
    transform: rotate(-45deg);
    font-size: 20px;
    color: var(--color-white);
    transition: background-color 0.4s ease-in-out;
}

/* .......................End Nav Bar...................... */


/* .......................Start Header Section...................... */
header{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.header-left{
    max-width: 620px;
    position: relative;
}
.header-left h1{
    font-size: 54px;
    line-height: 1.2;
    color: var(--color-black);
    animation: H1Ani forwards 1s ease;  
    opacity: 0;    
    animation-delay: 1s;  
}
.header-left h3{
    font-size: 40px;
    font-weight: 400;
    color: var(--color-primary);
    margin-top: .5rem;
    animation: H1Ani forwards 1s ease;  
    opacity: 0;    
    animation-delay: .8s;  
}
.header-left p{
    margin: 15px 0 30px;
    line-height: 150%;
    font-size: 16px;
    animation: logoAni forwards 1s ease;  
    opacity: 0;    
    animation-delay: .6s; 
}
.header-container{
    display: grid;
    grid-template-columns: auto auto;
    align-items: center; 
    height: 100%; 
    justify-content: space-between;
}
.header-right{
    position: relative;
    width: 450px;
    height: 450px;
    transform: rotate(45deg);
    right: -7%;   
}
.sq-box{
    height: 100%;
    width: 100%;
    border: 25px solid var(--color-primary);
    /* background: var(--color-yellow); */
    background: #fff;
    box-shadow: -15px 15px 15px rgba(0, 0, 0, 0.2) ;
    opacity: 0;
    animation: zoomOut 1s ease forwards; 
    animation-delay: 1.3s;
}
.sq-box img{
    position: absolute;
    transform: rotate(-45deg);
    max-width: 700px;
    top: 130px;
    left: -180px;
    opacity: 0;
    animation: carAni forwards 1s ease;
    animation-delay: 1.6s;
}
.sq-box2{
    position: absolute;
    width: 700px;
    height: 700px;
    background: var(--color-primary);
    transform: rotate(45deg);
    top: -26%;
    right: -26%;
    z-index: -1;
    opacity: 0;
    animation: sqbox2Ani forwards 1s ease;
    animation-delay: .3s;
}


  /* For mobile */
  @media (max-width: 768px) {

    .header-container{
        width: 100%;
        /* padding: 0 0 0 10px; */
        
        background: url("./cab_g.jpg");
    
    
    
        background-repeat: no-repeat;
        background-size: cover;
        justify-content: center;
        
    }

    .header-left{
        background: rgba( 255, 255, 255, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
padding: 20px;

    }

    .header-right{
        display: none;
    }
    .sq-box{
        display: none;
    }
    .sq-box img{
        display: none;
    }

    .nav-container{
        position: relative;
    }
    
    .nav-link {
        position: fixed;
        top: 5rem;
        left: -100%; /* Initially hidden off-screen */
        width: 100vw;
        height: 40vh; /* Occupies 40% of the viewport height */
        background:#fff;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        transition: 0.3s ease-in-out;
        z-index: 1000; /* Ensure it's above other elements */
    }

    .social-link {
        position: fixed;
        top: calc(5rem + 40vh); /* Positioned just below the nav-link */
        left: -100%; /* Initially hidden off-screen */
        width: 100vw;
        height: 8vh; /* Occupies 8% of the viewport height */
        background: var(--color-black);
        justify-content: center;
        text-align: center;
        transition: 0.3s ease-in-out;
        z-index: 1000; /* Ensure it's above other elements */
    }

    .social-link li a {
        transform: rotate(45deg) !important;
    }

    .social-link li a i {
        color: var(--color-primary) !important;
    }

    .nav-link.active {
        left: 0; /* Slide the menu into view */
    }

    .social-link.active {
        left: 0; /* Slide the social links into view */
    }

    .menu-icon {
        display: inline-block;
        cursor: pointer;
        font-size: 24px;
        color: var(--color-black);
        z-index: 1100; /* Ensure it's clickable */
    }

    .nav-link li a,
    .social-link li a {
        opacity: 0;
        animation: fadeIn 0.3s forwards ease-in-out;
    }

    .nav-link.active li a,
    .social-link.active li a {
        opacity: 1;
    }

   
}


      
@media (max-width: 480px) {

    .header-container{
        width: 100%;
        /* padding: 0 0 0 10px; */
        
        background: url("./cab_g.jpg");
    
    
    
        background-repeat: no-repeat;
        background-size: cover;
        justify-content: center;
       
    }

    .header-left{
        margin: 10px 20px;
        
        background: rgba( 255, 255, 255, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
padding: 20px;
    }

    .sq-box{
        display: none;
    }

    .sq-box2{
        background: none;
    }

  .c-section{
    position: relative;
  }
  .sq-box img{
display: none;

}

.header-left h3{
  color: #000;
}

/* .service_img{
  position: absolute;
top: 416px;
left: 0;
} */

.inner-container{
  padding: 30px;
}



.c-section__title{
  height: max-content !important;
  text-align: left !important;
  padding: 20px !important;
  font-size: 5rem !important;
 
}

.c-section span:before{
    line-height: 20px !important;
}

.c-section span:after{
    padding: 0 20px !important;

}

.a_title{
    font-size: 30px !important;
    
}



nav {
    background-color: transparent;/* Black background for small screens */
}

.logo h3, .menu-icon i {
    color: white; /* Default color to white */
    transition: color 0.3s ease-in-out;
}
}

@media (min-width: 1500px){
    .service_img{ 
        position: absolute;
        top: 16px;
        right: 60px;
        }
}
@media (max-width: 1500px){
    .service_img{ 
        display: none;
        }
}


@media (min-width: 769px) {
.menu-icon {
display: none; /* Hide on desktop */
}


}
/* Simple fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    
}

.service_img{
max-width: 700px;
width: 100%;
max-height: 550px;
height: 100%;
} 

/* .......................End Header Section...................... */



/* .......................Animation Start...................... */
@keyframes logoAni {
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }    
    100%{
        transform: translateX(0);
        opacity: 1;
    }    
}
@keyframes NavliaAni {
    0%{
        transform: translateY(100px);
        opacity: 0;
    }    
    100%{
        transform: translateY(0);
        opacity: 1;
    }    
}
@keyframes socialAni {
    0%{
        transform: translateX(100px) rotate(45deg);
        opacity: 0;
    }    
    100%{
        transform: translateX(0) rotate(45deg);
        opacity: 1;
    }    
}
@keyframes H1Ani {
    0%{
        transform: translateY(-100px) ;
        opacity: 0;
    }    
    100%{
        transform: translateY(0) ;
        opacity: 1;
    }    
}
@keyframes zoomOut {
    0%{
        transform:scale(1.1) ;
        opacity: 0;
    }    
    100%{
        transform: scale(1) ;
        opacity: 1;
    }    
}
@keyframes carAni {
    0%{
        transform: translate(180px, -300px) scale(0) rotate(-45deg);
        opacity: 0;
    }    
    100%{
        transform: translate(0, 0) scale(1) rotate(-45deg);
        opacity: 1;
    }    
}
@keyframes sqbox2Ani {
    0%{
        right: -40%;
        opacity: 0;
    }    
    100%{
        right: -26%;
        opacity: 1;
    }    
}

/* .......................End Animation...................... */






.contact-form{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 90%;
    max-width: 550px;
    margin: auto;
    margin-top: 2em;
}

.sectionHeader{
    text-transform: capitalize;
    font-weight: bold;
    font-size: 2.4rem;
    color: var(--color-brand-accent);
    margin-bottom: .5em
}

.heading,.sub-heading{
    margin-bottom: .5em;
    font-weight: bold;
}

.heading{
    font-size: 2.5em;
}

.sub-heading{
    text-align: left;
}

.contactForm{
    display: grid;
    gap: 3em;
}

form{
    width: 100%;
    margin-top: 3em;
}

.para{
    color: var(--paraColor);
    font-size: 1.5rem;
    line-height: 1.5em;
    margin-bottom: 1em;
}

.para2{
    text-align: left;
}

.input{
    width: 95%;
    max-width: 700px;
    border: none;
    font-size: 1.5rem;
    padding: 1em;
    outline: none;
    background-color: var(--formBg);
    color: var(--paraColor);
    border-radius: 10px;
    border: 1px solid rgb(53, 53, 53);
    margin-bottom: 1em;

}

.input:focus{
    border: 1px solid var(--color-primary);
}

.input::placeholder{
    text-transform: capitalize;
}

.submit{
    background-color: var(--color-primary);
    border: none;
    color: var(--color-white);
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.map-container{
    position: relative;
    width: 100%;
    height: 500px;
}

.mapBg{
    position: absolute;
    background-color: var(--color-primary);
    top: 0;
    right: 0;
    width: 300px;
    height: 90%;
    border-radius: 20px;
}

.map{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 90%;
    
}

.map iframe{
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.contactMethod{
    display: flex;
    flex-direction: column;
    margin-top: 2em;
    text-align: left;
}

.method{
    display: flex;
    align-items: center;
}

.contactIcon{
    font-size: 2rem;
    color: var(--color-brand-accent);
    width: 70px;
}

@media screen and (min-width:800px) {
    .contact-form{
        max-width: 1100px;
    }
    .contactForm{
        grid-template-columns: 1fr 1fr;
    }   

    .contactMethod{
        flex-direction: row;
        justify-content: space-between;
    }
}