/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Font Settings */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: #004B87;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    font-size: 1.8rem;
    margin: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.transparent-header {
    background: linear-gradient(rgba(0, 35, 115, 0.8), rgba(0, 75, 135, 0.5));
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.9s ease;
}

.transparent-header .navbar-nav .nav-link,
nav a {
    font-size: 1.1rem;
    padding: 10px 15px;
    color: #ffffff;
    font-weight: bold;
    transition: background-color 0.3s;
}

.navbar-toggler {
    border-color: #e3f2fd;
}

/* Navbar Styles */
.navbar-nav {
    margin-left: auto;
}

.transparent-header .navbar-nav .nav-link:hover,
nav a:hover {
    color: #ffdd57;
    text-decoration: underline;
}

nav {
    flex-grow: 1;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    position: relative;
    margin-left: 20px;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 150px;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown li {
    display: block;
}

.dropdown a {
    padding: 10px;
    color: #004B87;
    display: block;
}

.dropdown a:hover {
    background-color: #38ad11;
}

nav ul li:hover .dropdown {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('images/hero_bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 14, 14, 0.6); /* Increased opacity for better text visibility */
    z-index: 1;
}

.hero h2, .hero p {
    position: relative;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    z-index: 2;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffcc00; /* Base color */
    position: relative;
    text-shadow:
        1px 1px 0px #333, /* Darker shadow for depth */
        2px 2px 0px #333,
        3px 3px 0px #333,
        4px 4px 0px rgba(0, 0, 0, 0.3), /* Slightly lighter shadow */
        5px 5px 0px rgba(0, 0, 0, 0.2),
        6px 6px 0px rgba(0, 0, 0, 0.1); /* Lighter outer shadow */
}


.hero p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff; /* Base color */
    position: relative;
    text-shadow:
        1px 1px 0px #333, /* Darker shadow for depth */
        2px 2px 0px #333,
        3px 3px 0px #333,
        4px 4px 0px rgba(0, 0, 0, 0.3), /* Slightly lighter shadow */
        5px 5px 0px rgba(0, 0, 0, 0.2),
        6px 6px 0px rgba(0, 0, 0, 0.1); /* Lighter outer shadow */
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}


/* CTA Button */
.cta,
.contact-button {
    background-color: #FF6F20;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s;
}

.cta:hover,
.contact-button:hover {
    background-color: #e65c1b;
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ffcc00; /* Bright color to match your theme */
    color: #333; /* Text color */
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #e6b800; /* Slightly darker shade on hover */
    transform: scale(1.05); /* Subtle zoom effect */
}


/* Main Sections */
main {
    padding: 20px;
}

/* About Section */
#about {
    background: linear-gradient(to right, rgba(0, 75, 135, 0.8), rgba(0, 75, 135, 0.5)), url('path/to/your/background-image.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

#about h3 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: bold;

    font-family: 'Montserrat', sans-serif;
    
    margin-bottom: 20px;
    
    position: relative;
    text-shadow:
        1px 1px 0px #333, /* Darker shadow for depth */
        2px 2px 0px #333,
        3px 3px 0px #333,
        4px 4px 0px rgba(0, 0, 0, 0.3), /* Slightly lighter shadow */
        5px 5px 0px rgba(0, 0, 0, 0.2),
        6px 6px 0px rgba(0, 0, 0, 0.1); /* Lighter outer shadow */
    
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

#about p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

/* Services Section */
#services {
    background-color: #e3f2fd;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#services h3 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: bold;

    font-family: 'Montserrat', sans-serif;
    
    margin-bottom: 20px;
    
    position: relative;
    text-shadow:
        1px 1px 0px #333, /* Darker shadow for depth */
        2px 2px 0px #333,
        3px 3px 0px #333,
        4px 4px 0px rgba(0, 0, 0, 0.3), /* Slightly lighter shadow */
        5px 5px 0px rgba(0, 0, 0, 0.2),
        6px 6px 0px rgba(0, 0, 0, 0.1); /* Lighter outer shadow */
    
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    
}

#services p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
}

#services .service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#services .service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


/* Contact Section */
.contact-section {
    background-color: #e3f2fd;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 700;
    color:  #ffdd57;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #f0f4f8;
}

/* Unique Hero Style for About Page */
.about-hero {
    background-image: url('images/about_hero_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
}

.about-hero h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Content Section */
.about-content {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.about-content h3 {
    color: #343a40;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

/* Why Choose Us Section */
.about-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.about-content p {
    font-size: 1rem;
    color: #666;
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.team-title {
    color: #004B87;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-shadow: 1px 1px 0px #333, 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.team-member {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.team-img {
    width: 120px;
    height: 120px;
    border: 4px solid #ffcc00;
    transition: transform 0.3s ease;
}

.team-img:hover {
    transform: scale(1.1);
}

.team-role {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #004B87;
    margin-top: 10px;
}

.team-description {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}



/* Footer */
footer {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
    padding: 15px;
    color: #a8d0e6;
}

footer p {
    margin-bottom: 0.4rem;
}

footer a {
    color: #a8d0e6;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #d4e5f7;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header,
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    header h1,
    .hero h2,
    #about h3,
    .contact-title {
        font-size: 2rem;
    }

    #about p,
    .contact-description {
        font-size: 1rem;
    }

    nav ul li {
        margin: 10px 0;
    }

    .cta {
        width: 100%;
        padding: 15px;
    }

    .contact-section {
        padding: 40px 15px;
    }
}
