*{
margin: 0;
padding: 0;
font-family: 'Quicksand', sans-serif;
}


.fa fa-times{
    padding: 0;
    margin: 0;
}
.banner{
width: 100%;
height:100vh;
background-image:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(imgs/background.jpg);
background-size: cover;
background-position: center;
padding-top: 10px;
}
.navbar{
width: 100%;
padding-left: 20px ;
display: flex;
align-items: center;
}

.dif-btn {
    margin-bottom: 10px;
}

.logo{
width: 150px;
cursor: pointer;
padding-right: 200px;
}
.content {
    padding-left: 70px;
    overflow: hidden;
    overflow-x: auto;
    max-width: 100%;
}

.special-title {
    margin-left: 10px;
}
.navbar ul li{
list-style: none;
display: inline-block;
margin: 10px 35px;
position: relative;
padding-bottom: 5px;
align-items: right;
}
.navbar ul li a{
text-decoration: none;
color: #48BF91;
text-transform: uppercase;
}
.navbar ul li::after{
content: '';
height: 3px;
width: 0;
background: #222;
display:block;;
margin: auto;
bottom: -10px;
transition: 0.5s;
}
.dropdown {
    color: #f44336;
}
.navbar ul li:hover::after{
width: 100%;
background: #48BF91;                                                                                                                                          
}

.navbar ul li ul.dropdown {
    width: 100%;
    position: absolute;
    z-index: 999;
    display: none;
}

.navbar ul li:hover ul.dropdown {
    display: block;
}
.singular-menu {
    color: #f44336;
    
}
.dropdown {
    width: 0;
    white-space: nowrap;
}
/* Dropdown container styles */
.navbar ul li .dropdown {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position it below the parent item */
    left: 0;
    border: 1px solid #ccc;
    width: auto; /* Allow width to adjust based on content */
    min-width: 170px; /* Minimum width to prevent it from becoming too narrow */
    z-index: 999;
    list-style: none;
    padding: 0;
    box-sizing: border-box; /* Ensure padding and border are included in width */
    white-space: normal; /* Allow wrapping of text */
}

/* Show dropdown when hovering over parent item */
.navbar ul li:hover .dropdown {
    display: block;
}

/* Dropdown item styles (stack the links vertically) */
.navbar ul li .dropdown li {
    display: block; /* Stack the links vertically */
    width: 100%; /* Ensure each item takes up full width */
    margin: 0; /* Ensure there's no margin around each list item */
}

/* Dropdown link styles */
.navbar ul li .dropdown li a {
    padding: 10px 15px; /* Adjust padding as needed */
    display: block; /* Ensure each link takes up a whole line */
    text-decoration: none;
    color: #48BF91;
    text-transform: none;
    white-space: nowrap; /* Prevent text from wrapping inside a link */
    margin: 0; /* Remove any default margin */
}

/* Hover effect for dropdown links */
.navbar ul li .dropdown li a:hover {
    background-color: #48BF91;
    color: #fff;
}

/* Optional: Add scroll if dropdown height exceeds a certain point */
.navbar ul li .dropdown {
    max-height: none; /* Allow it to expand dynamically based on content */
    overflow: visible; /* Ensure all items are visible without clipping */
}




.content{
width: 100%;
position: absolute;
top: 25%;
transform: translateY(-50%);
transform: translateX(-25%);
text-align: center;
color: #fff;
margin-left: 40px;
height: 50%;
box-sizing: border-box;
overflow: visible;


}
.content h1{
font-size: 50px;
margin-top: 80px;
}
content p1{
font-weight: 100;
line-height: 25px;

}
button{
width: 200px;
padding: 15px 0;
text-align: center;
margin: 20px 10px;
border-radius: 25px;
font-weight: bold;
border: 2px solid #48BF91;
background: transparent;
color: #fff;
cursor: pointer;
position: relative;
overflow: hidden;
text-decoration: none;
font-size: 20px;
}


span{
background: #48BF91;
width: 0;
height: 100%;
border-radius: 25px;
position: absolute;
left: 0;
bottom: 0;
z-index: -1;
transition: 0.5s;

}
button:hover span{
width: 100%
}
button:hover{
    border:none;
}

nav .fa{
    display: none;
}


@media(max-width: 1000px){
    .content h1{
        font-size: 60px;
    }
    .navbar ul li{
        display: block;
        padding: 10px;
        font-size:16.5px;
    }
    .navbar{
        position: fixed;
        background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(#f44336);
        height: 100vh;
        width: 300px; /* Increased width */
        top: 0;
        right: -320px; /* Hide completely when closed */
        text-align: left;
        z-index: 2;
        transition: 1s;
        line-height: 2;
        align-items:flex-start;
    }
    .navbar.open {
        right: 0; /* Show the sidebar when 'open' class is added */
    }
    .content {
        width: 100%; /* Full width */
        position: absolute;
        top: 40%; /* Center vertically */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, -50%); /* Properly center */
        text-align: center; /* Center text horizontally */
        color: #fff;
        height: auto; /* Allow height to adjust */
        padding: 0; /* Ensure no unwanted padding */
        margin: 0; /* Ensure no unwanted margin */
    }

    .special-text {
        font-size: smaller;
    }


    
    body, hmtl {
        overflow-x: hidden;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 30px;
        cursor: pointer;
    }
    .logo{
        display: none;
    }
    .banner{
        background-size: cover;
        padding-top: 10px;
        height: 102vh;
    }
    .sub-header{
        padding-top: 10px;
    }
    .sub-header{
        font-size:60px;
    }
    .button{
        display: none;
    }
    .content p{
        font-size:25px;
    }
    .navbar ul li .dropdown {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%; /* Position it below the parent item */
        left: 0;
        border: 1px solid #ccc;
        width: auto; /* Allow width to adjust based on content */
        min-width: 218px; /* Minimum width to prevent it from becoming too narrow */
        z-index: 999;
        list-style: none;
        padding: 0;
        box-sizing: border-box; /* Ensure padding and border are included in width */
        white-space: normal; /* Allow wrapping of text */
    }
    .navbar ul li .dropdown li {
        display: block; /* Stack the links vertically */
        width: 100%; /* Ensure each item takes up full width */
        margin: 0; /* Ensure there's no margin around each list item */
        text-align: left;
    }
    .navbar ul li .dropdown li a {
        padding: 5px 10px; /* Adjust padding as needed */
        display: block; /* Ensure each link takes up a whole line */
        text-decoration: none;
        color: #48BF91;
        text-transform: none;
        white-space: nowrap; /* Prevent text from wrapping inside a link */
        margin: 0; /* Remove any default margin */
    }
    .navbar ul li .dropdown li a:hover {
        background-color: #48BF91;
        color: #fff;
    }
    
    /* Optional: Add scroll if dropdown height exceeds a certain point */
    .navbar ul li .dropdown {
        max-height: none; /* Allow it to expand dynamically based on content */
        overflow: hidden; /* Ensure all items are visible without clipping */    

    }

    .content {
        justify-content: center;
        align-items: center;
    }
    .content h1{
        font-size: 20px;
        text-align: center;
    }
    .content p {
        font-size: 10px;
        text-align: center;
    }

    .content {
        justify-content: center;
    }

    
    
}
    

.vis {
    background-color: #6cbdfb;
    border-radius: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #fff;
}

.popup {
    visibility: hidden;
    width: 400px;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 80%;
    left: 85%;
    transform: translate(-50%, -50%) scale(0.0001);
    text-align: center;
    padding: 0 10px 10px;
    color: #333;
    transition: 0.4s;
    opacity: 0.7;
}

.open-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
}


.popup h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0 0px;
}

.popup p {
    color: #000;
    font-weight: 500;
}

.popup button {
    width: 80%;
    margin-top: 10px;
    padding: 10px 0;
    color: #fff;
    background: none;
    border: 2px solid;
    border-color: rgb(255, 79, 30);
    color: rgb(255, 79, 30);
    outline: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.4s;
}

.popup button:hover {
    background: rgb(255, 79, 30);
    color: #fff;
}

.popup-right {
    visibility: hidden;
    width: 400px;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 80%;
    left: 85%;
    transform: translate(-50%, -50%) scale(0.0001);
    text-align: center;
    padding: 0 10px 10px;
    color: #333;
    
    transition: 0.4s;
    opacity: 0.7;
}

.open-popup-right{
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
}


.popup-right h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0 0px;
}

.popup-right p {
    color: #000;
    font-weight: 500;
}

.popup-right button {
    width: 80%;
    margin-top: 10px;
    padding: 10px 0;
    color: #fff;
    background: none;
    border: 2px solid;
    border-color: rgb(255, 79, 30);
    color: rgb(255, 79, 30);
    outline: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.4s;
}

.popup-right button:hover {
    background: rgb(255, 79, 30);
    color: #fff;
}

.iconic {
    padding: 10px;
}
 @media(max-width:1000px) {
    .footer p {
        font-size: 15px;
    }
 }
/*---------about us---------*/


.about-us{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    padding-top: 40px;
}
p{
    font-weight: 500;
    line-height: 22px;
    text-align: center;
}
.special-text{
    font-size: 17px;
    font-weight: 150;
    line-height: 1.5;
    color: #f0f0f0;
}

@media(max-width:1000px) {

    .special-text {
        font-size: 10px;
    }
}
.row{
    margin-top: 5%;
}
.about-us-col{
    flex-basis: 48%;
    background: #247991;
    border-radius: 20px;
    margin-bottom: 5%;
    padding: 10px 12px;
    box-sizing: border-box;
    transition: 0.15s;
    font-size: 20px;
    padding: 20px;

}
h3{
    text-align: center;
    font-weight: 600;

}
.about-us-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    background: #2b5d21;
    border-color: #BBFED4;
    color: #ffffff;
    border-color: #26532B;
    border-width: 2px;
    border-style: solid;
    transition: 0.2s;
    transform: scale(1.3);
}

@media(max-width: 1000px){
    .row{
        flex-direction: column;

    }

    .about-us-col:hover{
        box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
        background: #2b5d21;
        border-color: #BBFED4;
        color: #ffffff;
        border-color: #26532B;
        border-width: 2px;
        border-style: solid;
        transition: 0.2s;
        transform: scale(1.1);
    }
}

/*---------services---------*/

.services{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: cadetblue;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 1%;
    display: flex;
    justify-content: space-between;    
}
.services-col{
    flex-basis: 31%;
    background: white;
    border-style: solid;
    border-color: aqua;
    border-radius: 50px;
    margin-bottom: 5%;
    padding: 40px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.services-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    background-color: #1F363D;
    color: white;
    border-color: rgba(176, 30, 30, 0.664);
    font-size: larger;
    width: 105%;
}

.services-col:active {
    width: 110%;
}
@media(max-width: 1000px){
    .row{
        flex-direction: column;
    }
}



/*---------projects---------*/
.p-proj {
    text-align: center;
    justify-content: center;
    align-items: center;
}

.projects-left h2 {
    font-weight: 800;
    font-size: 30px;
}

.row{
    align-items: center;
}

.title-proj {
    padding-bottom: 50px;
}
.projects{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    align-items: center;
}
.projects-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
}
.projects-col img{
    width: 100%;
    border-radius: 10px;
    transition: 0.4s;
    align-items: center;
}

.projects-col img:hover {
    box-shadow: 10px 10px 20px rgba(0,0,0,0.2);
}
.projects-col p{
    padding: 0;
    text-align: center;
}
.projects-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
}

.projects-p {
    text-align: left;
}

.comment-box {
    width: 700px;
    margin-left: 300px;
    display: block;
    align-items: flex-end;   
}

.projects-left {
    align-items: flex-end;
}
/*---------media-----------*/
.media{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    transition: 0.5s;
}
.media-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    
}
.media-col img{
    width: 100%;
    height: 100%;
}

.media-col:hover {
    width: 103%;
    height: 103%;
    border-color: aqua;
    border-width: 3px;
    border-style: solid;
}
.over{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.over:hover{
    background: rgba(226,0,0,0.7);
    
}
.over h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.over:hover h3{
    bottom: 49%;
    opacity: 1;
}

/*----------testimonials*----------*/

.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
    
}
.testimonial-col p{
    padding: 0;
    font-size:20px;
}
.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}

@media(max-width: 1000px){
    .testimonial-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}
/*----------contacts-----------*/

.special-col {
    margin-top: 50px;
    padding: 10px;
}

.contact{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(imgs/background.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
    
}
.contact h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
@media(max-width: 700px){
    .contact h1{
        font-size: 24px;
    }
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
    
}
.hero-btn:hover {
    background: #f44336;
    border: 1px solid #f44336;
}
/*---------footer---------*/

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    
}
/*-------------about us page----------*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(imgs/background.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 50px;
}
.about-us-content{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
        
}
.about-content-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-content-col img{
    width: 100%;
}
.about-content-col h1{
    padding-top: 0;
}
.about-content-col p{
    padding: 15px 0 25px;
}
.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.red-btn:hover{
    color: #fff;
}
.special-btn{
    height: 150px;
    width: 500px;
    font-size: 50px;
    text-align: center;
    border-radius: px;
    background: #f44336;
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 30px;
    padding-top: 20px;
}
.special-btn:hover{
    background-color: #fff;
    border: 2px solid #f44336;
    transition: 500ms;
    color: #f44336;
}
.new-btn{
    padding-top: 30px;
    height: 100px;
}

/*----------projects content---------*/

.projects-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
    
}
.projects-left{
    flex-basis: 65%;
    
}
.projects-left img{
    width: 100%
}
.projects-left h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}
.projects-left p{
    color: #999;
    padding: 0;
}
.comment-box{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}
.comment-box h3{
    text-align: left;
}

.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    background: #f0f0f0;
}

.comment-form button{
    margin: 10px 0;
}
@media(max-width:1000px){
    .sub-header h1{
        font-size: 24px;
    }
}

/*--------------contact us page-------------*/

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    
}
.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
    margin-bottom: -40px;
}
.contact-col div p{
    padding: 0;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: -50px;
    color: #555;
    font-weight: 400;
}


.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.contact-p{
    margin-left: 70px;
}

/*-------FAQ-------*/

.questions{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: cadetblue;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.faq-row{
    margin-top: 1%;
    display: flex;
    justify-content: space-between;    
}
.faq-col{
    flex-basis: 31%;
    background: white;
    border-style: solid;
    border-color: rgb(120, 245, 245);
    border-radius: 50px;
    margin-bottom: 5%;
    padding: 40px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.faq-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    background-color:  #520023;
    color: white;
    border-color: rgba(255, 225, 0, 0.664);
    border-width: 5px;
    font-size: larger;
    width: 105%;
}

.faq-col:active {
    width: 110%;
}
@media(max-width: 1000px){
    .faq-row{
        flex-direction: column;
    }
}

.container-form {
    width: 100%;
    height: 600px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    display: flex;
    border-color: rgb(255, 79, 30) ;
    border: 2px solid rgb(255, 79, 30);
}

.getintouch {
     margin: 20px;
}

.inpbox {
    border-radius: 5px;
    margin-top: 30px;
}

.cool-btn {
    border-radius: 0;
    color: rgb(255, 79, 30);
    border: 1px solid rgb(255, 79, 30);
    transition: 0.5ms;
    width: 120px;
    height: 55px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 150;
}

.cool-btn:hover {
    border: 0px;
    background-color: rgb(255, 79, 30);
    color: #fff;
    transition: 0.5s;
}

.special-col {
    line-height: 4;
}

@media(max-width:1000px) {
    .special-col {
        align-items: center;
        justify-content: center;
    }

    .contact-p {
        margin-right: 5px;
    }
}
