* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tinos', serif;

}

.navphoto {
    background-image: url(./Screenshot\ 2024-07-22\ 103219.png);
    background-size: 100%;
    height: 5vh;
}

.col {
    height: 21vh;
}

.col img {
    padding-top: 4%;
}




nav {
    height: 10vh;
    width: 100%;
    background-color: maroon;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    /* position: fixed; */
    z-index: 10;
    top: 0px;
    position: sticky;

}



/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none;
    width: 88vw;
    /* padding: 0 0.7vw; */
    justify-content: space-evenly;
    /* align-items: center; */
    text-transform: uppercase;
    padding-top: 1.3%;
    padding-left: 11%;
}

.nav-links li a {
    text-decoration: none;
    margin: 0 0.7vw;
    color: white;

}

.nav-links li a:hover {
    color: yellow;
}

.nav-links li {
    position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: yellow;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}

.nav-links li a:hover::before {
    width: 80%;
}

/*Styling Buttons*/
.login-button {
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer;

}

/*Styling Hamburger Icon*/
.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px) {
    nav {
        position: fixed;
        z-index: 3;
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
        color: white;
    }

    .nav-links {
        /* position: fixed; */
        background: maroon;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
        color: white;
    }

    .nav-links li {
        opacity: 0;
    }


    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade {
        opacity: 1;
    }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}





/* Container for the slider */
.slider-wrapper {
    position: relative; 
    width: 100%;
    /* max-width: 800px;  */
    margin: 0 auto;
    overflow: hidden; 
    padding: 0;
    box-sizing: border-box; 
}

/* Slider container */
.slider {
    display: flex; 
    width: 100%; 
    transition: transform 1s ease; 
}

/* Styling for each image in the slider */
.slider img {
    flex: 0 0 100%; 
    width: 100%; 
    object-fit: 100%; 
    height: 65vh;
}

/* Navigation dots container */
.slider-nav {
    display: flex;
    column-gap: 0.5rem; 
    position: absolute; 
    bottom: 1rem; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 1; 
}

/* Styling for each navigation dot */
.slider-nav a {
    width: 0.5rem; 
    height: 0.5rem;
    border-radius: 50%; 
    background-color: #fff; 
    opacity: 0.75; 
    transition: opacity ease 250ms; 
}

/* Hover effect for navigation dots */
.slider-nav a:hover {
    opacity: 1; 
}

/* Responsive design adjustments */
@media (max-width: 900px) {
    .slider-wrapper {
        width: 90%; 
    }
}

@media (max-width: 600px) {
    .slider-wrapper {
        width: 100%; 
    }
    
    .slider {
        aspect-ratio: 4 / 3; 
    }

    .slider-nav {
        bottom: 0.5rem; 
    }

    .slider-nav a {
        width: 0.4rem; 
        height: 0.4rem;
    }
}


/* form */
section {
    padding: 60px 0;
    min-height: 100vh;
}
.contact-info {
display: inline-block;
width: 100%;
text-align: center;
margin-bottom: 10px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
background: maroon;
padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
color: #071c34;
text-transform: capitalize;
font-size: 22px;
font-weight: 700;
}
.contact-page-form p{
    width: 70%;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
padding-left: 0;
}  
.contact-page-form.contact-form input {
margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
background: #071c34;
width: 150px;
border-color: #071c34;
}
.contact-info-icon i {
font-size: 48px;
color: #fda40b;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
color: #fff;
font-size: 22px;
text-transform: capitalize;
font-weight: 600;
margin-bottom: 10px;
}
.contact-info-text span {
color: #999999;
font-size: 16px;

display: inline-block;
width: 100%;
}

.contact-page-form input {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
margin-bottom: 20px;
padding: 12px 16px;
width: 100%;
border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
width: 100%;
height: 120px;
padding: 12px 16px;
border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
background: maroon none repeat scroll 0 0;
color: #fff;
display: inline-block;
font-weight: 600;
padding: 10px 0;
text-transform: capitalize;
width: 150px;
margin-top: 20px;
font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:orangered;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
color: #464646;
text-transform: capitalize;
font-size: 14px;
}
.contact-page-form {
display: inline-block;
width: 100%;
margin-top: 30px;
}

.contact-page-map {
margin-top: 36px;
}
.contact-page-form form {
padding: 20px 15px 0;
}



/* footer */
.footer {
    width: 100%;
    background-color: #f8f9fa;
    padding: 20px 0;
}
.contact i{
    color: maroon;
}
.container4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
    border-top: 1px solid black;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    /* padding: 10px 0; */
    background-color: maroon;
    height: 8vh;
}
.footer-bottom p{
    color: white;
   padding-top: 1%;
}
.contact {
    margin-bottom: 20px;
}
