/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background-color: #0d0d0d;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 14px;
}

.container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Navbar Styles */
.navbar {
    background-color: #333;
    padding: 10px;
    color: #fff;
        }
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
        }


.logo {
    color: #ffa500;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
}

.navbar nav ul li a.active,
.navbar nav ul li a:hover {
    color: #ffa500;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(0, 39, 77, 0.9), rgba(255, 165, 0, 0.7)),
        url('images/hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero .container {
    display: flex;
    align-items: center; /* Centers the content vertically */
    justify-content: space-between; /* Distributes space between text and image */
}

.hero-content {
    display: flex;
    flex-direction: column;  /* Stack elements vertically */
    align-items: flex-start; /* Align content to the left (optional) */
}

.hero h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #ffa500;
    color: #00274d;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 1em;
}

.cta-btn:hover {
    background-color: #ff8c00;
}

/* About Section */
.about {
    padding: 70px 0;
    background-color: #1a1a1a;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffa500;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #F9F6EE;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background-color: #00274d;
    text-align: center;
    padding: 20px 0;
    color: #ffffff;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 70px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.services h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: #ffa500;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #00274d;
    color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-header {
    padding: 20px;
}

.card-header img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 3px solid #ffa500;
}

.card-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    margin: 15px 0;
}

.card-header p {
    font-size: 16px;
    line-height: 1.6;
}

.expand-btn {
    background-color: #ffa500;
    color: #00274d;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.expand-btn:hover {
    background-color: #ffb733;
}

.card-details {
    padding: 20px;
    display: none;
}


.card-details ul {
    text-align: left;
    padding-left: 20px;
    margin-top: 10px;
}

.card-details ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

/* Contact Section Styles */
.contact {
    padding: 2rem 0;
    background-color: #1a1a1a;
}

.contact .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #00274d;
}

.contact h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffa500;
}

.contact-details {
    background-color: #f0f0f0;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-details p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-details a {
    color: #ffa500;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}
