                    /* General navbar styling for all pages */
p{
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body{
    background-color: rgba(201, 201, 201, 0.721);
    width: 100%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: black; 
    color: white; 
    padding: 0 20px ; 
    height: 60px;
    margin: 0;


    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 

    border-bottom: 2px solid rgb(43, 223, 255);
}
.logo{
    height: 70px;
    width: 70px;
/*     border: 2px solid rgb(43, 223, 255); */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 700px;
    
}
/* Logo styling */
.logo img {
    border-radius: 50%;
    height:70px;
    width: 70px; 
   object-fit: cover;
    
    /* height: 100%; /*Match logo height to navbar */
    /*max-height: 100px;Ensure it doesn't exceed navbar height */

}

/* Links container */
.nav-links {
    display: flex;
    gap: 70px; 
    align-items: center; 
}


.nav-links a {
    color: white; 
    text-decoration: none; 
    font-size: 16px; 
    transition: color 0.3s; 
    font-family: sans-serif;
}

.nav-links a:hover {
    color: gray; 
}

/* Dropdown menu styling */
.dropdown {
    position: relative; 
}

.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: black; 
    list-style: none;
    padding: 10px;
    margin: 0;
    border: 1px solid white; 
    z-index: 1000;
}

.dropdown-menu li {
    margin: 5px 0;
}

.dropdown-menu a {
    color: white; 
    text-decoration: none; 
}

.dropdown-menu a:hover {
    color: gray; 
}

/* dropdown menu on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

 /*footer*/
.footer{
    background-color: rgb(75, 75, 75);
    margin: 0 -10px 0;
    padding: 75px;
    padding-top: 40px;
    text-align: center;
}
.footer-links{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.footer-links a{
    font-size: 18px;
    color: white;
    text-decoration: none;
}
.copyright{
    background-color: black;
    color: white;
    text-align: center;
    margin: -9px;
    font-size: 10px;

}
/*on all pages till here*/





                /* image main design*/

.hero {
    position: relative; 
/*     width: auto; 
    height: 100vh;  */
    overflow: hidden; 
    margin: 0 -10px;
}

/* Hero Image  */
.hero img {
    width: 100vw; 
    height: auto; 
    object-fit: cover; 
}

/* Hero Text */
.Hero_text {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: white; 
    text-align: center; 
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 20px; 
    border-radius: 10px; 
}

/* Hero H */
.Hero_text h1 {
    font-size: 4rem; 
    margin-bottom: 10px; 
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: italic;
}

/* Hero P */
.Hero_text p {
    font-size: 2rem; /* Adjust for paragraph size */
}


            /* section1 */
.section_1{
    height: 300px;
    padding: 70px;
    margin: 50px -8px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    gap: 200px;
    text-align: center;
}
.section_1 h2,h3{
    font-size: 34px;
    color:rgb(33, 177, 203) ;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: italic;
}
.text_right{
    width: 500px;
}

.video1 iframe{
    width: 500px;
    
    height: 270px;
}
            /* scetion2 */
.section_2{
    height: 350px;
    padding: 70px;
    margin: 50px -8px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 200px;
    text-align: center;
    background-color: rgb(201, 201, 201);
}
.image-container {
    position: relative; 
    width: 500px; 
    height: 270px; 
    overflow: hidden; 
    
}
.image-container img {
    width: 500px;
    height: 300px; 
    object-fit: cover;
}

/*  Text  */
.overlay-text {
    position: absolute; 
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: white; 
    text-align: center; 
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 20px; 
    border-radius: 10px; 

    font-size: 1.5rem;
    margin-bottom: 10px; 
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: italic;
}
.right-text{
    width: 500px;
}
.section_2 h2{
    font-size: 34px;
    color:rgb(33, 177, 203) ;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: italic;
}

            /*section3*/
.section_3{
    text-align: center;
    margin: 100px 0px;
}
.section_3 h2{
    font-size: 34px;
    color:rgb(33, 177, 203) ;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: italic;
}
.section_3 h3{
    font-size: 25px;
    color:rgb(33, 177, 203) ;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: italic;
}
.features{
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.feature-item{
    padding: 30px;
    width: 300px;
    background-color: rgb(196, 196, 196);
    border-radius: 5%;
}
.feature-item img{
    height: 200px;
    width: 300px;
}


            /*section4*/
.section_4{
    text-align: center;
    height: 300px;
    background-color:rgb(201, 201, 201) ;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 120px;
    margin: 0 -10px;
}
.section_4 h2{
    font-size: 34px;
    color:rgb(33, 177, 203) ;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: italic;
}

            /*section5*/
.section_5{
    background-color: rgb(214, 214, 214);
    text-align: center;
    padding-top: 60px;
}
.section_5 h2{
    font-size: 34px;
    color:rgb(33, 177, 203) ;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-style: italic;
}
.connect-items{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
}
.connect-item img{
    height: 15vh;
    width: 15vh;
}
.connect-item img[src="instagram.webp"]{
    height: 25vh;
    width: 25vh;
}


            /*on all pages/*
           



