/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Services Page */
.services-page {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #222;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content Wrapper */
.services-page #content {
    width: 100%;
    max-width: 1800px;
    text-align: center;
}

/* Section Title */
.sitestow-services-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: #005a9e;
    margin-bottom: 10px;
}

.sitestow-services-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

/* Services Container */
.sitestow-services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 25px;
    justify-content: center;
    align-items: center;
    max-width: 1800px; /* Set max-width to 1800px */
    width: 100%; /* Ensures full width usage */
    margin: 0 auto; /* Centers the grid container */
    padding: 20px;
}

/* Service Box */
.sitestow-service-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
    width: 100%; /* Flexible width for the boxes inside grid */
    max-width: 500px; /* Limits the width of the boxes */
    margin: auto; /* Centers each box inside the grid */
}

/* Service Box Header */
.service-header {
    display: flex;
    align-items: center; /* Aligns the image and text vertically */
    gap: 10px; /* Adds space between the icon and the text */
    justify-content: center; /* Centers the content horizontally */
    position: relative;
}

/* Service Icon */
.service-icon {
    font-size: 60px; /* Adjust size of icons */
    color: #007bff;   /* Icon color */
    align-items: left;
}

/* Heading Styles */
h3 {
    margin: 0; /* Remove default margin for better alignment */
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    position: relative;
    padding: 10px 0;
    text-align: center;
}

/* Button Container */
.button-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;  /* Allows buttons to wrap on smaller screens */
    width: 100%;
    max-width: 500px; /* Prevents it from stretching too much on large screens */
}

/* Button Styles */
.service-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

/* Explore Plan Button */
.plan-btn {
    background-color: #007acc;
    color: #fff;
    border: none;
    font-size: 1.3rem;
}

.plan-btn:hover {
    background-color: #005a9e;
}

/* Discover Features Button */
.features-btn {
    background-color: #fff;
    color: #007acc;
    border: 2px solid #007acc;
    font-size: 1.3rem;
}

.features-btn:hover {
    background-color: #007acc;
    color: #fff;
}

/* Service Box Styling */
.sitestow-service-box {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgb(244, 246, 249);
    position: relative;
}

/* Button Styles (Specific to Service Box) */
.sitestow-service-box .plan-btn {
    background-color: #707eef; /* Blue color */
    color: #fff;
    border: none;
}

.sitestow-service-box .features-btn {
    background-color: #fff;
    color: #000;
    border: 0px solid #707eef;
}

.sitestow-service-box .plan-btn:hover {
    background-color: #005a9e;
}

.sitestow-service-box .features-btn:hover {
    background-color: #e87c00; /* Orange color on hover */
    color: #fff;
}

/* Service Description */
.sitestow-service-box p {
    font-size: 1.4rem;
    color: #444;
    text-align: center;
    margin-top:10px;
    
}

/* Second Content Section */
.sitestow-second-content {
    background: #f8f8f8;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

/* Image on the Left */
.content-image {
    flex: 1;
    padding-right: 20px;  /* Optional: add some padding inside the image container */
    max-width: 800px;  /* Optional: Limit max width */
    margin-right: 30px;  /* Add space between image and text */
}

.content-image img {
    width: 100%;  /* Ensures the image fills the container */
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

/* Text Section on the Right */
.content-text {
    flex: 2;
    text-align: left;
    max-width: 800px;
    padding-left: 20px;  /* Optional: Padding inside the text section */
}

/* Title */
.content-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #005a9e;
    margin-bottom: 20px;
}

/* Paragraph */
.content-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    background-color: #007acc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #005a9e;
}

.get-started-section {
    font-family: 'Poppins', sans-serif;
    background: #f7f9fc;
    padding: 50px 20px;
    text-align: center;
}

.get-started-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
}

.get-started-text {
    flex: 1;
    padding-left: 90px; /* Space between text and image */
}

.get-started-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #005a9e;
    margin-bottom: 0px;
    text-align: left;
}

.get-started-text p {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.steps {
    text-align: left;
}

.step {
    margin-bottom: 0px;
}

.step h3 {
    font-size: 1.8rem;
    color: #007acc;
    margin-bottom: 5px;
}

.step p {
    font-size: 1.2rem;
    color: #444;
}

.get-started-image img {
    max-width: 700px; /* Limit the width to 600px or adjust as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    display: block; /* Ensures the image is block-level */
    margin: 0 auto; /* Centers the image within the container */
}

/* Additional Services Section */
.additional-services {
    font-family: 'Poppins', sans-serif;
    background: none;
    color: #333;
    padding: 60px 20px;
    text-align: center;
}

/* Section Title */
.additional-services-title {
    font-size: 50px;
    font-weight: 800;
    color: #005a9e;
    margin-bottom: 40px;
}

/* Content Wrapper for Services */
.additional-services-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
}

/* Individual Service Item */
.service-item {
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

/* Service Image */
.service-image img {
    max-width: 100%;
    width: 500px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Service Title */
.service-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #007acc;
    margin-bottom: 10px;
    text-align: center;
}

/* Service Description */
.service-item p {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 20px;
}

/* Learn More Button */
.learn-more {
    font-size: 14px;
    color: #007acc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #005a9e;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .additional-services-content {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }

    .content-wrapper {
        flex-direction: column; /* Stacks the image and text */
        text-align: center;
    }

    .content-image {
        padding-right: 0;
        max-width: 100%;
        margin-bottom: 20px; /* Adds space between the image and text */
    }

    .content-image img {
        width: 100%; /* Ensures image takes up full width on smaller screens */
        height: auto;
        max-width: none; /* Removes max-width for smaller screens */
    }

    .button-container {
        flex-direction: column;  /* Stack buttons vertically on small screens */
        gap: 15px;  /* Adds space between stacked buttons */
    }

    .service-btn {
        font-size: 14px;  /* Smaller font on mobile */
        padding: 8px 20px;  /* Less padding on mobile */
    }
}

@media (max-width: 1024px) {
    .sitestow-services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .get-started-content {
        flex-direction: column;
        text-align: center;
    }

    .get-started-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .get-started-image {
        width: 100%;
    }
}
