/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #526066;
}

h2, h3 {
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
}

p {
    line-height: 1.6em;
}

header {
    background: #1a1a1a;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header .btn {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
}

header .btn-orange {
    background: #ff6600;
    color: #fff;
    margin-right: 10px;
}

header .pure-menu-heading {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

/* Hero Section */
.hero {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('images/slider1.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    margin-top: 60px; /* Offset for fixed header */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide:nth-child(1) {
    background-image: url('images/slider1.png');
}

.hero-slider .slide:nth-child(2) {
    background-image: url('images/slider2.png');
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.card .btn {
    display: inline-block;
    margin-top: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 40px 20px; /* Reduce padding for the section */
    text-align: center;
    background: #e6f0ff; /* Light blue background */
    margin: 0 auto; /* Ensure no extra margin above or below */
}

.why-choose-us h2 {
    font-size: 24px; /* Adjust font size */
    font-weight: 400; /* Make it less bold */
    margin: 20px 0; /* Set equal spacing above and below */
    text-transform: none; /* Remove uppercase styling */
    color: #333; /* Use a darker color for better readability */
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.why-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.why-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 16px;
}

/* Rest of the styles remain unchanged */
.cta {
    padding: 60px 20px;
    text-align: center;
    background: #e6f0ff;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-buttons .btn {
    margin: 10px;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.cta .btn-orange {
    background: #ff6600;
    color: #fff;
}

.cta .btn-light {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

footer {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-icons a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
}

/* General Button Styles */
.btn {
    display: inline-block; /* Makes the link behave like a button */
    text-decoration: none; /* Removes underline from links */
    padding: 10px 20px; /* Adds padding for a button-like appearance */
    border-radius: 4px; /* Rounds the corners */
    font-weight: bold; /* Makes the text bold */
    text-align: center; /* Centers the text */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

/* Orange Button Styles */
.btn-orange {
    background: #ff6600; /* Orange background */
    color: #fff; /* White text */
    border: none; /* Removes border */
    cursor: pointer; /* Pointer cursor for buttons */
}

.btn-orange:hover {
    background: #e65c00; /* Darker orange on hover */
}

/* Light Button Styles */
.btn-light {
    background: #fff; /* White background */
    color: #333; /* Dark text */
    border: 1px solid #ddd; /* Light gray border */
    cursor: pointer; /* Pointer cursor for buttons */
}

.btn-light:hover {
    background: #f5f5f5; /* Slightly darker background on hover */
}

@media (max-width: 768px) {
    .services-container, .why-container {
        flex-direction: column;
    }

    .card, .why-item {
        flex: 1 1 100%;
    }

    .hero {
        height: 400px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    /* Adjust Hero Section for Mobile Devices */
    .hero h1 {
        font-size: 28px; /* Reduce font size for smaller screens */
    }

    .hero p {
        font-size: 16px; /* Adjust paragraph font size */
    }

    .hero .btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust button font size */
    }
}

/* Pricing Table */
.pricing-table {
    border: 1px solid #ddd;
    margin: 0 0.5em 2em; /* Keep the margin for spacing between tables */
    padding: 0 0 1em; /* Reduce bottom padding to 1em */
    display: inline-block;
    vertical-align: top;
    width: 30%; /* Default width for desktop */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-table-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.pricing-table-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-table-item p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Pure Button */
.pure-button {
    border-radius: 8px; /* Rounded corners for buttons */
}

/* General Pricing Table Styles */
.pricing-tables {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

/* Header Colors */
.pricing-table-multimedia .pricing-table-header {
    background: #519251; /* Green for Multimedia */
    color: #fff;
}

.pricing-table-ecommerce .pricing-table-header {
    background: #f4c542; /* Yellow for E-commerce */
    color: #fff;
}

.pricing-table-content .pricing-table-header {
    background: #add8e6; /* Light blue for Content Impact */
    color: #fff;
}

/* Fix for Pricing Table Headers */
.pricing-table-header {
    padding: 1.5em 0; /* Standardize padding for all headers */
    text-align: center; /* Ensure text is center-aligned */
    font-family: 'Roboto', Arial, sans-serif; /* Use a consistent font */
    font-size: 1.2em; /* Standardize font size */
    font-weight: 600; /* Keep font weight consistent */
    letter-spacing: 0; /* Remove extra letter spacing */
    color: #fff; /* Ensure text color is consistent */
    word-wrap: break-word; /* Prevent text overflow */
    height: 100px; /* Set a fixed height for all headers */
    display: flex; /* Use flexbox for vertical centering */
    align-items: center; /* Vertically center the text */
    justify-content: center; /* Horizontally center the text */
}

.pricing-table-header h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: normal;
}

/* Services Section */
.pricing-table-header h2 {
    font-family: 'Roboto', Arial, sans-serif; /* Use a modern, professional font */
    font-size: 0.9em; /* Reduce font size */
    font-weight: 500; /* Make it less bold */
    letter-spacing: 0; /* Remove extra letter spacing */
    margin: 0; /* Ensure no extra margin */
    padding: 0.5em 0; /* Adjust padding for better spacing */
    text-align: center; /* Center-align the text */
    word-wrap: break-word; /* Ensure long words break properly */
}

/* List Styles */
.pricing-table-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.pricing-table-list li {
    padding: 0.8em 0;
    background: #f9f9f9; /* Very light grey background */
    border-bottom: 1px solid #e7e7e7;
}

.pricing-table-list li:last-child {
    border-bottom: none; /* Remove border for the last item */
}

/* Button Styles */
.button-choose {
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    border-radius: 2em;
    font-weight: bold;
    padding: 10px 20px; /* Keep button padding */
    text-decoration: none;
    display: inline-block;
    margin-top: 1em; /* Reduce the space above the button */
    margin-bottom: 0; /* Remove extra space below the button */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button-choose:hover {
    background: #f5f5f5;
    color: #000;
}

/* Footer */
.footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 20px;
}

.footer a {
    color: #ddd;
    text-decoration: none;
}

/* Media Queries for Responsiveness */

/* Tablet Media Queries */
@media (max-width: 767px) {
    .pricing-tables {
        max-width: 100%; /* Allow the wrapper to take full width */
        padding: 0; /* Remove padding from the wrapper */
    }

    .pricing-table {
        width: 90%; /* Adjust width for tablets */
        margin: 0.5em auto; /* Center tables vertically */
        border-radius: 8px; /* Keep rounded corners for tablets */
    }

    .pricing-table-header h2 {
        font-size: 1.2em; /* Slightly reduce header font size for tablets */
    }

    .services h2 {
        font-size: 28px; /* Reduce font size for smaller screens */
    }
}

/* Phone Media Queries */
@media (max-width: 480px) {
    .pricing-tables {
        max-width: 100%; /* Allow the wrapper to take full width */
        padding: 0; /* Remove padding from the wrapper */
    }

    .pricing-table {
        width: 100%; /* Full width for mobile */
        margin: 0; /* Remove margins to make the table reach the edges */
        border-radius: 0; /* Remove rounded corners for a flush design */
    }

    .pricing-table-header {
        border-radius: 0; /* Remove rounded corners for the header */
    }

    .pricing-table-header h2 {
        font-size: 1em; /* Reduce header font size for mobile */
    }

    .services h2 {
        font-size: 24px; /* Further reduce font size */
    }

    .button-choose {
        font-size: 14px; /* Adjust button font size */
        padding: 8px 16px; /* Adjust button padding */
    }

    .hero-overlay {
        padding: 10px; /* Reduce padding for smaller screens */
        width: 95%; /* Make the overlay span most of the screen */
        left: 2.5%; /* Center the overlay horizontally */
        transform: none; /* Remove centering transform */
        border-radius: 0; /* Remove rounded corners for a flush design */
    }

    .hero h1 {
        font-size: 22px; /* Slightly reduce font size for the heading */
    }

    .hero p {
        font-size: 14px; /* Slightly reduce font size for the paragraph */
    }

    .hero .btn {
        padding: 8px 16px; /* Adjust button padding */
        font-size: 14px; /* Adjust button font size */
    }

    .why-choose-us {
        padding: 20px 10px; /* Further reduce padding for mobile */
    }

    .why-choose-us h2 {
        font-size: 18px; /* Reduce font size for smaller screens */
        margin: 15px 0; /* Adjust spacing for mobile */
    }
}

/* General Styles for Hero Overlay */
.hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    padding: 40px; /* Increase padding for desktop */
    border-radius: 12px; /* Slightly rounded corners */
    position: absolute;
    top: 50%; /* Vertically center */
    left: 50%; /* Horizontally center */
    transform: translate(-50%, -50%); /* Center the overlay */
    width: 60%; /* Wider overlay for desktop */
    max-width: 800px; /* Limit the maximum width */
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .hero-overlay {
        padding: 10px; /* Reduce padding for smaller screens */
        width: 90%; /* Make the overlay span most of the screen */
        max-width: none; /* Remove max-width for mobile */
        top: 50%; /* Ensure it stays vertically centered */
        left: 50%; /* Ensure it stays horizontally centered */
        transform: translate(-50%, -50%); /* Keep it centered */
        border-radius: 0; /* Remove rounded corners for a flush design */
    }
}

/* Desktop Adjustments */
@media (min-width: 1024px) {
    .hero-overlay {
        padding: 60px; /* Increase padding for larger screens */
        width: 70%; /* Make the overlay wider */
        max-width: 1000px; /* Allow a larger maximum width */
    }

    .hero h1 {
        font-size: 56px; /* Increase font size for the heading */
    }

    .hero p {
        font-size: 20px; /* Increase font size for the paragraph */
    }

    .hero .btn {
        padding: 12px 24px; /* Adjust button padding */
        font-size: 16px; /* Adjust button font size */
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .hero-overlay {
        padding: 10px; /* Reduce padding for smaller screens */
        width: 95%; /* Make the overlay span most of the screen */
        left: 2.5%; /* Center the overlay horizontally */
        transform: none; /* Remove centering transform */
        border-radius: 0; /* Remove rounded corners for a flush design */
    }

    .hero h1 {
        font-size: 22px; /* Slightly reduce font size for the heading */
    }

    .hero p {
        font-size: 14px; /* Slightly reduce font size for the paragraph */
    }

    .hero .btn {
        padding: 8px 16px; /* Adjust button padding */
        font-size: 14px; /* Adjust button font size */
    }
}

/* General Heading Styles */
.services h2,
.why-choose-us h2 {
    font-family: 'Roboto', Arial, sans-serif; /* Change to a modern, professional font */
    text-transform: none; /* Remove uppercase styling */
    font-size: 28px; /* Reduce font size for desktop */
    font-weight: 500; /* Use a lighter font weight */
    margin-bottom: 20px; /* Adjust spacing below the heading */
    color: #333; /* Use a darker color for better readability */
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .services h2,
    .why-choose-us h2 {
        font-size: 18px; /* Further reduce font size for smaller screens */
        margin-bottom: 15px; /* Adjust spacing for mobile */
    }
}

/* General Heading Styles */
.services h2,
.why-choose-us h2 {
    text-transform: none; /* Remove uppercase styling */
    font-size: 32px; /* Default font size for desktop */
    font-weight: 600; /* Keep it bold but not overly heavy */
    margin-bottom: 30px; /* Adjust spacing below the heading */
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .services h2,
    .why-choose-us h2 {
        font-size: 20px; /* Reduce font size for smaller screens */
        margin-bottom: 20px; /* Adjust spacing for mobile */
    }
}

/* Services Section Header Styles (e.g., "Multimedia Optimization") */
.pricing-table-header h2 {
    font-family: 'Roboto', Arial, sans-serif; /* Use a modern, professional font */
    font-size: 0.9em; /* Reduce font size */
    font-weight: 500; /* Make it less bold */
    letter-spacing: 0; /* Remove extra letter spacing */
    margin: 0; /* Ensure no extra margin */
    padding: 0.5em 0; /* Adjust padding for better spacing */
    text-align: center; /* Center-align the text */
    word-wrap: break-word; /* Ensure long words break properly */
}

/* Main Headings (e.g., "How we elevate you", "Why we stand out") */
.services h2,
.why-choose-us h2 {
    font-family: 'Roboto', Arial, sans-serif; /* Use a modern, professional font */
    text-transform: none; /* Remove uppercase styling */
    font-size: 24px; /* Reduce font size for desktop */
    font-weight: 400; /* Make it less bold */
    letter-spacing: 0; /* Remove extra letter spacing */
    margin: 20px 0; /* Set equal spacing above and below */
    color: #333; /* Use a darker color for better readability */
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .services h2,
    .why-choose-us h2 {
        font-size: 18px; /* Further reduce font size for smaller screens */
        margin: 15px 0; /* Set equal spacing above and below for mobile */
    }
}