* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: white;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 5px 80px;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 80px;
    width: 200px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #001f3f;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s ease, background 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    background: transparent;
    color: darkblue;
    border-bottom: 2px solid darkblue;
}

/* Contact Button */
li .contact-btn {
    background-color: darkblue;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    width: auto;
}

li .contact-btn:hover {
    background: rgb(28, 28, 181);
    box-shadow: 0 6px 8px rgba(49, 34, 131, 0.1);
    color: whitesmoke;
}

/* Menu Icon (for Mobile) */
.menu-icon {
    display: none;
    font-size: 30px;
    color: #001f3f;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-icon.active {
    transform: rotate(90deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    background: linear-gradient(to right, #001f3f, #003366);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: left 0.3s ease;
    padding-top: 40px;
    z-index: 1100; /* Ensures it appears above other elements */
}


.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.mobile-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
   
}

.mobile-menu a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 5px;
    display: block;
    transition: background 0.3s ease, transform 0.2s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

.mobile-menu a:hover {
    color: azure;
    transform: scale(1.05);
   
}

@media (max-width: 1036px) {
    header {
        padding: 5px 50px;
    }

    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .mobile-menu a {
        font-size: 18px;
        padding: 10px;
    }
}

/* For Mobile Devices */
@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .mobile-menu a {
        font-size: 16px;
        padding: 12px;
    }

    .contact-btn {
        padding: 8px 12px;
        font-size: 16px;
        width: 300px;
    }
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #002147;
    padding-top: 180px;
}

/* Background Image with Animation */
.banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('Pictures/testimonialsbackbg.jpg') no-repeat center center/cover;
    
    /* Zoom & Slide Effect */
    animation: zoomSlide 8s infinite alternate ease-in-out;
}


/* Banner Content Animation */
.banner-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 2s ease-in-out;
}

/* Text Animation */
h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlide 1.5s ease-in-out 0.5s forwards;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlide 1.5s ease-in-out 0.5s forwards;
   color: #000;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 1.5s ease-in-out 1s forwards;
}

/* Button Animation */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: #007BFF;
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
    background: #f8f9fa;
    transform: scale(1.1);
}

/* Fade In Effect */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Fade & Slide Effect */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    h2{
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2{
        font-size: 1.8rem;
    }
    p {
        font-size: 0.9rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .banner{
    height: 500px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    h2{
        font-size: 1.3rem;
    }
    p {
        font-size: 0.8rem;
    }
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .banner{
        height: 400px;
        }
}


#about {
    padding: 50px 0;
    background-color: #f9f9f9;
}
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    padding: 30px;
}
.content-container {
    flex: 1;
    max-width: 60%;
    text-align: left;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
    padding-right: 20px;
}
.image {
    flex: 1;
    text-align: right;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
    padding: 20px;
}
.image img {
    width: 500px;
    height: auto;
    border-radius: 10px;
}
.content h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}
.content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}
@media screen and (max-width: 992px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .content-container, .image {
        max-width: 100%;
        padding: 15px;
    }
    .image {
        text-align: center;
    }
    .content h1 {
        font-size: 28px;
    }
    .content p {
        font-size: 16px;
    }
}
.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

#why-choose-us {
    padding: 50px 20px;
    background: #fff;
}

#why-choose-us h1 {
    font-size: 2.5em;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

#why-choose-us p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.feature-box {
    background: #fff;
    color: #000;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid #007bff;
}

.feature-box .icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    margin: 0 auto 10px;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }
}

#review {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.review-box {
    background: #f9f9f9;
    border-left: 5px solid #007bff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.review-box h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.stars {
    color: #f4c542;
    font-size: 18px;
}

.review-box p {
    color: #555;
    font-size: 16px;
}

@media (max-width: 768px) {
    #why-choose-us {
        padding: 10px;
    }
    
    .review-box {
        padding: 15px;
    }
    
    .review-box h3 {
        font-size: 18px;
    }
    
    .review-box p {
        font-size: 14px;
    }
}

#footer {
    background: #EAEAEA ;
    color: black;
    padding: 40px 10%;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo {
    width: 200px;
    display: block;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
    gap: 30px;
    width: 100%;
    align-items: start;
}

.footer-section {
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.footer-section h2 {
    color: #034566;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-section p, 
.footer-section ul {
    color: rgb(73, 72, 72);
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: rgb(73, 72, 72);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #00aaff;
}


/* Responsive Styling */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 column for very small screens */
    }

    .footer-section {
        text-align: left;
        width: 100%;
    }

}

/* Copyright Section */
.copyright {
    text-align: center;
    padding: 15px 0;
    border-top: 2px solid rgba(22, 19, 19, 0.2);
    border-bottom: 2px solid rgba(22, 19, 19, 0.2);
    font-size: 14px;
    opacity: 0.8;
    margin-top: 30px;
}

.copyright p {
    margin: 0;
    color: rgb(73, 72, 72);
}