/* Hero Section */
.hero {
   /* background-image: url({{ "/assets/img/hero.jpg" | relative_url }});*/ /* Hero background image */
	background-image: url('https://pcstationsouthport.github.io/{{ site.baseurl }}/assets/img/hero.jpg');  /* Hero background image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Adjust the opacity of the overlay */
    z-index: 1;
}

.hero {
 z-index: 2;
}

.hero-content {
    z-index: 2;
    max-width: 700px;
	background-color:white;
	height:40%;
	   border-radius: 20px; /* Round the corners of the image */
	opacity: 1; /* Makes the whole element 80% opaque */
}

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

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

.btn-primary {
    background-color: #ff6600;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
opacity: 1;
}

.btn-primary:hover {
    background-color: #e65c00;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.service-tiles {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service-tile {
    background-color: #ffffff;
    padding: 30px;
    width: 30%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: box-shadow 0.3s ease-in-out;
}

.service-tile:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-tile i {
    font-size: 3rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.service-tile h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.service-tile p {
    font-size: 1.1rem;
    color: #555;
}

/* About Us Section */
.about {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* How It Works Section */
.how-it-works {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step {
    background-color: #ffffff;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.step i {
    font-size: 3rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.step p {
    font-size: 1.1rem;
    color: #555;
}

/* What We Do Section */
.about {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center content horizontally */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    margin-right: 20px;
    text-align: center; /* Center text */
    padding-right: 30px; /* Space between text and image */
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.about-text .btn-primary {
    background-color: #ff6600;
    color: white;
    border: 2px solid #ff6600;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: inline-block;
}

.about-text .btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        margin-right: 0;
        margin-bottom: 20px;
        padding-right: 0;
    }

    .about-image img {
        max-width: 100%;
    }
}



/* Testimonials Section */
.testimonials {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.testimonial-card {
    background-color: #f8f8f8;
    padding: 20px;
    width: 45%;
    box-shadow: 0 4px

}


/* Call-to-Action Section (Adjusted) */
.cta {
    background-color: #ffffff; /* Matches the background color of other sections */
    color: #333; /* Adjusted text color for consistency */
    padding: 60px 20px; /* Consistent padding with other sections */
    text-align: center; /* Ensures the text is centered */
}

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

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta .btn-primary {
    background-color: #ff6600; /* Consistent button color */
    color: white;
    border: 2px solid #ff6600;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cta .btn-primary:hover {
    background-color: #e65c00; /* Darker shade on hover */
    border-color: #e65c00;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .cta {
        padding: 40px 20px; /* Adjust padding for smaller screens */
    }
}



