/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
}

/* Body and Background */
body {
    background-color: #f4f4f4;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    padding: 0;
    overflow-x: hidden;
}

/* Header Styling */
#header {
    background-color: #006400; /* Dark Green, representing Pakistan */
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: 'Lobster', cursive;
}

#header h1 {
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 2px;
}

#header p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

nav ul {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

nav ul li {
    list-style: none;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #FFD700; /* Gold color for hover effect */
}

/* Hero Section */
#hero {
    background-image: url('https://www.example.com/path-to-pakistan-image.jpg'); /* Set a nice image of Pakistan */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

#hero h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #FFD700; /* Gold color for the button */
    color: #006400;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2rem;
}

.cta-btn:hover {
    background-color: #006400;
    color: white;
}

/* About Section */
.about-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #006400;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
}

/* Founder Message Section */
.founder-message-section {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
}

.founder-message-section h2 {
    font-size: 2.5rem;
    color: #006400;
    margin-bottom: 20px;
}

.founder-message-section blockquote {
    font-size: 1.5rem;
    color: #333;
    font-style: italic;
    margin: 20px 0;
    border-left: 5px solid #006400;
    padding-left: 20px;
}

.founder-message-section p {
    font-size: 1.2rem;
    color: #333;
}

/* Mission Section */
.mission-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    color: #006400;
    margin-bottom: 20px;
}

.mission-section ul {
    list-style: none;
    padding-left: 0;
}

.mission-section ul li {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.mission-section ul li strong {
    color: #006400;
}

/* Projects Section */
.projects-section {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.projects-section h2 {
    font-size: 2.5rem;
    color: #006400;
    margin-bottom: 20px;
}

.project-list {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.project-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    width: 45%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.project-item h3 {
    font-size: 2rem;
    color: #006400;
}

.project-item p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #006400;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
}

.contact-section a {
    text-decoration: none;
    color: #006400;
    font-weight: bold;
}

.contact-section a:hover {
    color: #FFD700;
}

/* Footer Section */
footer {
    background-color: #006400;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 1rem;
    color: #fff;
}
