html,body{
    margin: 0px;
    padding: 0px;
    overflow-x:hidden;
    width:100%;
}
#main_contact{
    display: flex;
    width: 100%;
    height: auto;
    background-color:#090979;
    color: #F5F5F5;
    padding: 10px;
    margin: 0px;
    justify-content: center;
}
#main_nav{
    display: flex;
     width: 100%;
    height: auto;
    font-size: 1.2em;
    background-color: #F5F5F5;
}
/*---------------------------------navbar hover effect----------------------------------*/
nav ul li a{
    text-decoration:none;
    color:white;
    font-size:18px;
    font-weight:600;
    position:relative;
    padding:8px 0;
    transition:0.4s;
}

/* Animated Underline */
nav ul li a::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:3px;
    background:#090979;
    border-radius:5px;
    transition:0.4s ease;
    transform:translateX(-50%);
}
/* Navbar After Scroll */

/* Hover Effect */
nav ul li a:hover{
    color:#fff;
    text-shadow:0 0 10px #00e5ff,
                0 0 20px #00e5ff;
}

nav ul li a:hover::after{
    width:100%;
}
    

/*---------------------------------navbar hover effect----------------------------------*/


.first_banner{
    width: 100%;
    height: auto;
    background-color: #000;
}

#aboutus{
    width: 100%;
    height: auto;
justify-content: center;
font-size:1.2em;
font-family:Arial, Helvetica, sans-serif;
color:#000;
padding: 50px;
background-color:#F5F5F5;
}

.statement{
    justify-content: center;
    padding: 50px;
    background-color:#F5F5F5;

}
.statement>h1{
    text-align: center;
}
.statementcontainer{
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    background-color: #000;
    margin-top: 30px;

}
.statementcontainer>p{
    text-align: center;
    color: #F5F5F5;
    padding: 20px;
    margin: 0;
}
.state_content{
    width: 100%;
    height: 400px;
    align-items: center;
    justify-content: center;

    padding: 20px;
     background-color: #fff;
     color: #000;
    margin-top: 10px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    margin-bottom: 50px;

}
.state_content>h2{
    text-align: center;
    margin-bottom: 20px;
}
.state_content>p{
    text-align: center;
    margin-top: 20px;
}
#statement>col{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border:1px solid#000;
    background-color: #F5F5F5;
}
.state_img{
    width: 250px;
    height: 150px;
    overflow: hidden;
    align-items: center;
    margin-top: 5px;
    margin-left: 2em;
    border: 1px solid #000;
}
#review{
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-top: 30px;

}
#review>col{
    display: flex;
    width: 100%;
    height: auto;
    margin-top: 20px;
    justify-content: center;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border:1px solid#000;
    background-color: #F5F5F5;

}
.review_img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    align-items: center;
    margin-top: 5px;
    margin-left: 4em;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
.review_img>img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.review_img>h3{
    text-align: center;
    padding: 30px;
    margin-top: 10px;
    font-size:1.5em;
    font-family:Arial, Helvetica, sans-serif

}
.review_content{
    width: 300px;
    height: auto;
    padding: 20px;
    background-color: #F5F5F5;
    margin-top: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    font-family:Arial, Helvetica, sans-serif;
}
/*---------------------------------------------*/
#contact_form{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 20px;
    margin-top: 20px;
}
#contact_form>textarea{
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid#000;

}
#contact_form>input{
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1 px solid#000;
    
}
.address{
    width: 100%;
    height: auto;
    background-color: #F5F5F5;
    padding: 20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    margin-top:20px;
}
.address>h2{
    text-align: center;
    margin-bottom: 20px;

}
.address>p{
    text-align: center;
    margin-bottom: 10px;

}
.address>p>a{
    color: #0de6fd;
    text-decoration: none;

}
.address>p>a:hover{
    text-decoration: underline;
}
.map{
    width: 100%;
    height: auto;
}
.map>iframe{
    width: 100%;
    height: 400px;

}
footer{
    width: 100%;
    height: auto;
    background-color: #000;
    color: #fff;
text-align: center;
margin-top: 10px;
}
footer>p{
    padding: 20px;
}
/*-----------------------------for hero section------------------------------------------------------------------------------*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:url("images/bacgroundimg.png");
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px 8%;
    gap:50px;
}

.hero-content{
    flex:1;
}

.tag{
    display:inline-block;
    color:#fff;
    font-weight:600;
    margin-bottom:15px;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:3.8rem;
    line-height:1.2;
    color:#fff;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.1rem;
    color:#555;
    line-height:1.8;
    margin-bottom:35px;
    min-height:120px;
}

.buttons{
    display:flex;
    gap:15px;
}

.btn{
    padding:14px 30px;
    text-decoration:none;
    background:#0d6efd;
    color:white;
    border-radius:30px;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.secondary{
    background:transparent;
    color:#0d6efd;
    border:2px solid #0d6efd;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:550px;
    height:600px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

@media(max-width:900px){

    .hero{
        flex-direction:column-reverse;
        text-align:center;
    }

    .buttons{
        justify-content:center;
    }

    .hero-content h1{
        font-size:2.5rem;
    }
}
.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

/* Animated Circle Background */
.hero-image::before{
    content:'';
    position:absolute;
    width:550px;
    height:550px;
    background:linear-gradient(
        45deg,
        #0d6efd,
        #00c6ff,
        #00e5ff
    );
    border-radius:50%;
    filter:blur(40px);
    opacity:0.4;
    animation:rotate 12s linear infinite;
}

/* Image Card */
.hero-image img{
    width:100%;
    max-width:550px;
    position:relative;
    z-index:2;
    border-radius:30px;
    border:5px solid rgba(255,255,255,0.4);
    box-shadow:
        0 20px 50px rgba(13,110,253,.25),
        0 0 25px rgba(0,198,255,.3);
    backdrop-filter:blur(10px);
    transition:.5s;
    animation:float 4s ease-in-out infinite;
}

.hero-image img:hover{
    transform:scale(1.05);
    box-shadow:
        0 25px 60px rgba(13,110,253,.4),
        0 0 40px rgba(0,198,255,.6);
}

/* Floating Animation */
@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* Rotating Glow */
@keyframes rotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
/*---------------hero section with animated background------------------------------*/
/*-----------------------------for about us and why us section------------------------------------------------------------------------------*/
.aboutus_container{
    width:100%;
    height:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    padding :50px;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
    font-size:1.2em;

}
.aboutus_container>col{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:20px;
}
@media(max-width:900px){
    .aboutus_container{
        flex-direction:column;
        font-size:1em;
        width:100%;
        height:auto;
        margin:0px;
        padding:20px;
    }

}