/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    color: #333;
    background: #f9f9f9;
    overflow-x: hidden;
}
a .logo {
    width: 88px;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

/* Hover effect for the logo */
a:hover .logo {
    transform: scale(1.06);
    opacity: 0.9; /* Adds opacity effect on hover */
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1);
}
header {
    background: linear-gradient(90deg, #003366, #004080);
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header .navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header .navbar ul li {
    margin-left: 20px;
}

header .navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

header .navbar ul li a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(to bottom, #003366, #004080);
    color: #fff;
    padding: 4rem 1rem;
    clip-path: ellipse(100% 90% at 50% 10%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #ffcc00;
    color: #003366;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e6b800;
    transform: scale(1.05);
}

/* Team Section */
.team-section {
    padding: 4rem 2rem;
    text-align: center;
    background: #f4f4f4;
    border-top: 4px solid #003366;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.profile {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 2rem 1rem;
}

.profile:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid #ffcc00;
}

.profile h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #003366;
    font-weight: bold;
}

.profile p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.linkedin-link {
    color: #0077b5;
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: #005582;
}

.linkedin-link i {
    margin-right: 8px;
}

/* Careers Section */
.careers-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #003366, #004080);
    color: #fff;
}

.careers-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.careers-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    text-align: center;
    background: #002244;
    color: #fff;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

