/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.company-title {
    font-size: 20px;
    color: #2D3A3F;
    margin-left: 15px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease-in-out;
}

.nav-links a {
    color: #2D3A3F;
    text-decoration: none;
    padding: 12px;
}

.nav-links a:hover {
    background-color: #007DA7;
    color: white;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #2D3A3F;
    margin: 4px 0;
    transition: all 0.3s ease-in-out;
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .nav-links.active {
        height: 250px;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.cta-button {
    background-color: #007DA7;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Remove underline from button text */
}

.cta-button:hover {
    background-color: #005f75;
}

/* Services Section */
.services-section {
    background-color: #fff;
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 30%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.service-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #007DA7;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    padding: 20px;
    text-align: center;
    transition: opacity 0.5s ease;
}

.service-card:hover img {
    opacity: 0;
}

.service-card:hover .service-hover-content {
    opacity: 1;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 80%;
    }
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    max-width: 50%;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-text .pdf-link {
    color: inherit;
    display: block;
    margin-top: 20px;
}

.about-image img {
    max-width: 30%;
    margin-left: 250px;
    border-radius: 20px;
}



/* CTA Section */
.cta-section {
    background: url('cta-bg.jpg') no-repeat center center/cover;
    padding: 150px 0;
    position: relative;
    color: white;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section .overlay {
    background: rgba(0, 0, 0, 0.7);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .about-section {
    display: none;
  }
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer a {
  display: inline-block;
  margin-top: 20px;
  color: inherit;
}
