/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    margin: 0.5em 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin: 1em 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn:hover {
    background-color: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 0px;
}

/* Header and Navigation */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px; /* Reduced top and bottom padding */
    background-color: #fff; /* Optional: Set a background color for the header */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    max-width: 1500px; /* Set a maximum width */
    margin: 0 auto; /* Center the header */
}

.logo img {
    max-width: 80px; /* Adjust the width as needed */
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px; /* Reduced margin */
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4a90e2;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('images/hero-background.png'); /* Replace with your image file name */
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 0;
    overflow: hidden; /* Ensure the pseudo-element is contained */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    backdrop-filter: blur(2px); /* Apply blur effect */
    z-index: 1; /* Ensure the overlay is above the background */
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure the content is above the overlay */
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Features Section */
/* Add this to your styles.css file */

.approach {
    background-color: #333;
    color: white;
    padding: 70px 5%;
}

.approach-header {
    text-align: center;
    margin-bottom: 50px;
    padding-left: 20px;
}

.approach-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d35400;
}

.approach-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    padding: 20px;
}

.icon-container {
    margin-bottom: 20px;
}

.icon-container i {
    font-size: 2.5rem;
    color: white;
}

.approach-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

/* Custom icon styles to better match your reference */
.fa-hands-holding:before {
    font-family: "Font Awesome 5 Free";
    content: "\f4c4"; /* This uses Font Awesome's hands holding icon */
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .approach-container {
        grid-template-columns: 1fr;
    }
}
}

/* About Section */

.about {
    padding: 80px 5%;
    background-color: white;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.about-text {
    flex: 1 1 500px;
    padding-right: 20px;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: left;
    text-transform: uppercase;
}

.title-underline {
    width: 120px;
    height: 4px;
    background-color: #e67e22; /* Orange color for the underline */
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    color: #333;
}

.about-image {
    flex: 1 1 500px;
}

.about-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Base styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section heading */
.section-heading {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
    text-transform: uppercase;
    font-weight: bold;
}

.heading-underline {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #e67e22;
    margin: 0 auto 40px;
}

/* Blog container */
.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Blog cards */
.blog-card {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Blog images */
.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Blog content */
.blog-content {
    padding: 20px;
}

.blog-title {
    color: #e67e22;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Read more link */
.read-more {
    color: #e67e22;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 100%;
    }
}
/* Media query for responsive design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
    }
}

/* Base styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Heading styles */
.contact-heading {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
    text-transform: uppercase;
    font-weight: bold;
}

.heading-underline {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #e67e22;
    margin: 0 auto 30px;
}

/* Layout for side-by-side arrangement */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-container {
    flex: 1;
    min-width: 300px;
}

.form-container {
    flex: 1.5;
    min-width: 300px;
}

/* Contact info section */
.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin: 15px 0;
}

.contact-location {
    color: #005;
    font-weight: bold;
}

.contact-phone, .contact-email, .contact-hours {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.icon {
    margin-right: 10px;
    color: #e67e22;
}

.contact-email a {
    color: #e67e22;
    text-decoration: none;
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #e67e22;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}

.fab {
    font-size: 18px;
}

/* Form styles */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    grid-column: span 2;
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 14px 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #d35400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info-container, .form-container {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .submit-btn, .form-group.full-width {
        grid-column: span 1;
    }
}


/* If your footer has other social media styling that conflicts, 
   you may need to remove or adjust it */
