/* General Layout and Section Styling */
/* General Layout and Section Styling */
.service-section {
    padding: 80px 20px;
    text-align: center;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0; /* Remove bottom margin to eliminate gaps between sections */
    overflow: hidden; /* Ensure content stays within bounds */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Alternating sections */
.service-section:nth-child(odd) {
    background-color: #f9f9f9; /* Light background */
    flex-direction: row; /* Default layout */
}

.service-section:nth-child(even) {
    background-color: #e0e0e0; /* Dark background */
    flex-direction: row-reverse; /* Image on the left for even sections */
}

.service-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.service-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-section ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.service-section ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    text-align: left;
    padding-left: 20px;
    position: relative;
}

/* Custom Bullet Points */
.service-section ul li::before {
    content: "\2022"; /* Unicode character for bullet */
    color: #ff6600; /* The orange color of the theme */
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Section background colors for alternating look */
.section-light {
    background-color: #f9f9f9;
}

.section-dark {
    background-color: #e0e0e0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6600, #ff9933);
    padding: 80px 20px;
    text-align: center;
    color: white;
    margin: 0; /* Remove margin for no gap above or below the hero section */
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content .btn-primary {
    background-color: #ffffff;
    color: #ff6600;
    border: 2px solid #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-weight: 600;
}

.hero-content .btn-primary:hover {
    background-color: #ffcc66;
    border-color: #ffcc66;
}

/* Service Content Styling */
.service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px;
    padding: 0 20px;
    margin: 0; /* Remove margin */
    width: 100%; /* Ensure full-width content */
}

.service-text {
    flex: 1;
    text-align: left;
    margin-left: 5% ; /* Increased padding to push text more to the right */
    max-width: 600px; /* Limit max width of text */
margin-right: 5%;
}

@media (max-width: 768px) {
    .service-text {
        text-align: center;
        padding-left: 0; /* Remove left padding for smaller screens */
        padding-right: 20px; /* Slight padding on the right for mobile */
    }
}

.service-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Service section - better alignment for text and image */
.service-content .service-text {
    padding-left: 40px; /* Add padding left to space text away from the image */
}

.service-section .service-content > div {
    flex: 1;
}

/* Adjusting alignment for mobile */
@media (max-width: 768px) {
    .service-section {
        padding: 60px 15px; /* Reduced padding for smaller screens */
        margin: 0; /* Remove margin */
    }

    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin: 0; /* Remove margin for smaller screens */
    }

    .service-text {
        text-align: center;
        padding-right: 0;
    }

    .service-image img {
        max-width: 100%; /* Ensures images scale to full width on mobile */
    }
}

.margin-right {
 
}



