/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    color: #f4f4f4;
    line-height: 1.6;
    font-size: 16px;
    text-align: center;
}

/* Keyframes for gradient animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #1e3c72, #2a5298); /* Gradient background */
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #ff9c00;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.navbar a {
    font-size: 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 5px 15px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: #ff9c00;
    text-decoration: none;
}

.navbar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #ff9c00;
    left: 50%;
    bottom: 0;
    transition: width 0.3s, left 0.3s;
}

.navbar a:hover::after {
    width: 100%;
    left: 0;
}

.navbar .logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.navbar .logo:hover {
    color: #ff9c00;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar li {
    margin-left: 30px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .navbar ul {
        flex-direction: column;
        margin-top: 15px;
    }

    .navbar li {
        margin-left: 0;
        margin-bottom: 15px;
    }
}

/* Main Section */
.main-section {
    margin-top: 150px;
    animation: fadeIn 2s ease;
}

.main-section h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: slideInFromLeft 1.5s ease-out;
}

.main-section p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #d1d1d1;
}

button {
    background: linear-gradient(90deg, #ff9c00, #ff5200);
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s;
    animation: fadeIn 2s ease;
}

button:hover {
    background: linear-gradient(90deg, #ff5200, #ff9c00);
    transform: scale(1.05);
}

/* Testimonial Section */
.testimonial-section {
    margin-top: 100px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 60px 20px;
    animation: fadeIn 2s ease;
}

.testimonial-section h2 {
    font-size: 50px;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.testimonial-box-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px 40px;
    margin-right: 30px;
    border-radius: 8px;
    text-align: left;
    width: 350px;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    animation: slideLeft 10s infinite linear;
}

.testimonial-box:hover {
    transform: translateY(-5px);
}

.testimonial-box p {
    color: #ddd;
}

.testimonial-box h4 {
    font-size: 18px;
    color: #fff;
    margin-top: 15px;
}

/* Staff Section */
.staff-section {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 60px 20px;
}

.staff-section h2 {
    font-size: 50px;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.staff-member {
    background-color: rgba(255, 255, 255, 0.2);
    margin: 15px;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-5px);
}

.staff-member h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #fff;
}

.staff-member p {
    color: #ddd;
    margin-bottom: 5px;
}

.staff-member a {
    color: #ff9c00;
    font-weight: bold;
    margin-right: 10px;
}

.staff-member a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 30px 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 16px;
}

footer a {
    color: #ff9c00;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Keyframe Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideLeft {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar ul {
        flex-direction: column;
        margin-top: 15px;
    }

    .navbar li {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .main-section h1 {
        font-size: 40px;
    }

    .main-section p {
        font-size: 18px;
    }

    .testimonial-box-container {
        flex-direction: column;
    }

    .staff-member {
        margin: 20px 0;
        padding: 20px;
    }

    .staff-section h2 {
        font-size: 40px;
    }
}