@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=SUSE:wght@100..800&display=swap');

* {
    font-family: 'Verdana', sans-serif;
}

body {
    font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #F0F3F5;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}


/* Header Section */
header {
    padding-bottom: 25px;
    width: 100%;
    overflow: hidden; /* Ensures no extra space */
}

/* Top Banner */
.top-banner {
    background: #001833 !important; /* Matches navbar's starting color */
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Adds a soft dark blur */
}



/* Navigation with Smooth Gradient */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background: linear-gradient(to bottom, rgba(0, 24, 51, 1) 0%, rgba(0, 43, 91, 0.95) 50%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom: none;
    width: 100%;
}

/* Logo Styling */
.logo {
    margin-left: 60px; /* Slightly shifts the logo right */
}

.logo img {
    width: 140px;
    display: block;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-right: 50px; /* Keeps navigation aligned properly */
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    padding: 10px 15px;
    border-radius: 8px;
}

/* Active Page Indicator */
.nav-links a.active {
    background: #FF5733 !important;
    color: white !important;
    border-radius: 8px;
}

/* Hover Effect */
.nav-links a:hover {
    background: #FF5733 !important;  /* Red background on hover */
    color: white !important;
    border-radius: 8px;
}


/*Hero-section*/
.heroSection{
    display: flex;
    flex-direction: row;
    height: 70vh;
    width: 100vw ; 
    margin-bottom: 5vh;
}

.heroText{
    display: flex;
    flex-direction: row;
}

.heroText2{
    width: 35vw;
    padding-top: 20vh;
    padding-left: 15vw;
    margin-right: 5vw;
}

.heroText2 h1{
    font-size: 3rem;
}

.img1{
    height: 40vh;
    width: 40vw;
    margin-top: 20vh;
    border-radius: 10px;
    
}

.btn {
    background-color: #003366;
    width: 10vw;
    height: 3vw;
    padding: 0.5vw;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #004080;
}


/*mid Section*/
.midSection{
    text-align: center;
   
}

.midSection h1{
    font-size: 3grem;
}

.herocolor{
    background-color: #D0EEF7;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.midHeroSec{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 5vh;
    
}

.card2{
    margin-left: 5vw;
}

.img2{
    height: 30vh;
    width: 30vw;
    border-radius: 10px;
}

.midLowerSec {
    width: 80vw;
    height: 40vh;
    background-color: #003366;
    display: flex;
    flex-direction: row;
    margin-top: 10vh;
    margin-bottom: 5vh;
    margin-left: 21vh; 
    color: whitesmoke;
    border-radius: 10px;
}


.img3{
    height: 40vh;
    width: 47vw;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.reviewimg{
    display: flex;
    flex-direction: row;
    
}

.review{
    display: flex;
    flex-direction: column;
    text-align: center;
    
}

.stars{
    display: flex;
    flex-direction: row;
    color: whitesmoke;
    justify-content: center;
    align-items: center;
    padding-top: 10vh;
}
.review1{
    width: 30vw ;
    margin-left: 1.5vw;
    
    
}

.card1,.card2:hover{
    cursor: pointer;
}

/*footer*/
footer {
    background: linear-gradient(to right,  #5ccdef, #23609e);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: -1vh;
    
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-info,
.footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-info h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-info p,
.footer-contact p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-icons:hover{
    cursor: pointer;
}

.footer-icons img:hover {
    transform: scale(1.2);
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-form input {
    width: 90%;
    max-width: 350px;
    padding: 10px;
    margin-top: 5px;
    border-radius: 20px;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
}

.footer-contact-form input::placeholder {
    color: white;
    opacity: 0.8;
}

.footer-contact-form button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    transition: background 0.3s ease;
}

.footer-contact-form button:hover {
    background: rgba(255, 255, 255, 0.5);
}
