* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f6e0c6;
    color: #000000;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
header {
    background-color: #f6e0c6;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #000000;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
.logo img {
    height: 40px;
}
nav a {
    color: #000000;
    font-weight: 700;
    text-decoration: none;
    margin-left: 1.5rem;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}
.hamburger span {
    width: 1.2rem;
    height: 0.2rem;
    background-color: #000000;
    border-radius: 2px;
}
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background-color: #000000;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 60;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sidebar.active {
    transform: translateX(0);
}
.sidebar ul {
    list-style: none;
}
.sidebar ul li a {
    color: #f6e0c6;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin: 1rem 0;
}
.sidebar-contact {
    margin-top: 2rem;
    color: #f6e0c6;
    font-size: 0.875rem;
}
.sidebar-contact p {
    margin-bottom: 0.5rem;
}
.sidebar-contact a {
    color: #f6e0c6;
    text-decoration: underline;
}
.close-sidebar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background-color: #f6e0c6;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    display: none;
}
.overlay.active {
    display: block;
}
section {
    padding: 4rem 0;
}
.hero {
    padding-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #f6e0c6;
    border-bottom: 2px solid #000000;
}
.hero-text, .hero-image {
    flex: 1 1 100%;
    padding: 2rem;
    text-align: center;
}
.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid #000000;
    margin: 0 auto;
    display: block;
}
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}
h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.btn {
    background-color: #000000;
    color: #f6e0c6;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    min-height: 44px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #333333;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.service-card {
    background-color: #f6e0c6;
    border: 1px solid #000000;
    padding: 2.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 300px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: scale(1.05);
}
.service-card img {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}
.why-choose-grid, .pricing-grid {
    display: grid;
    gap: 2rem;
    justify-items: center;
    align-items: center;
}
.why-choose-card {
    background-color: #f6e0c6;
    border: 1px solid #000000;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.pricing-card {
    background: linear-gradient(135deg, #f6e0c6, #e8d3b0);
    border: 1px solid #000000;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #000000;
}
.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}
.pricing-card .price span {
    font-size: 0.875rem;
    font-weight: 400;
}
.pricing-card ul {
    text-align: left;
    margin-bottom: 2rem;
    padding-left: 1rem;
}
.pricing-card ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.pricing-card ul li img {
    width: 16px;
    height: 16px;
}
.pricing-card .btn {
    border: 2px solid #000000;
    padding: 0.65rem 1.4rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.pricing-card .btn:hover {
    background-color: #333333;
    transform: scale(1.05);
}
.popular-label {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #000000, #333333);
    color: #f6e0c6;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.testimonial {
    background-color: #f6e0c6;
    border: 1px solid #000000;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
.testimonial img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}
.stand-out-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.stand-out-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    min-width: 120px;
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
input, textarea {
    padding: 0.75rem;
    border: 1px solid #000000;
    border-radius: 0.5rem;
    background-color: #f6e0c6;
    color: #000000;
    font-family: 'Poppins', sans-serif;
}
textarea {
    resize: none;
    height: 120px;
}
input[type="submit"] {
    background-color: #000000;
    color: #f6e0c6;
    font-weight: 700;
    cursor: pointer;
    min-height: 44px;
    transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
    background-color: #333333;
}
footer input[type="submit"] {
    background-color: #f6e0c6;
    color: #000000;
}
label {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
label a {
    color: #000000;
    text-decoration: underline;
}
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 9999;
}
.modal.active {
    display: flex;
}
.modal-content {
    background-color: #f6e0c6;
    border: 1px solid #000000;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 400px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background-color: #000000;
    color: #f6e0c6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    background-color: #000000;
    color: #f6e0c6;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    text-decoration: none;
}
.about-section, .contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}
.about-content, .contact-content, .contact-video {
    flex: 1 1 100%;
    max-width: 500px;
    text-align: center;
    padding-bottom: 1rem;
}
.about-content .btn {
    margin-top: 1rem;
}
.about-video, .contact-video {
    flex: 1 1 100%;
    max-width: 500px;
    margin-bottom: 3rem;
}
.about-video video, .contact-video video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid #000000;
}
footer {
    background-color: #000000;
    color: #f6e0c6;
    padding: 3rem 0;
}
footer a {
    color: #f6e0c6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    font-weight: 700;
}
footer a:hover {
    color: #ffffff;
}
footer .footer-grid {
    display: grid;
    gap: 2rem;
    justify-items: center;
}
footer .footer-grid > div {
    text-align: center;
}
footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
footer .footer-links a {
    position: relative;
    padding: 0 0.5rem;
}
footer .footer-links a:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -0.5rem;
    color: #f6e0c6;
    font-size: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.social-icons a {
    text-decoration: none;
}
.social-icons svg {
    fill: #f6e0c6;
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
}
.social-icons a:hover svg {
    fill: #ffffff;
}
/* Alternating section colors */
#home, #services, #why-choose, #newsletter, #contact {
    background-color: #f6e0c6;
    color: #000000;
}
#about, #clients, #more-important, #pricing, #internship {
    background-color: #2c43e3;
    color: #f6e0c6;
}
#about h2, #clients h2, #more-important h2, #pricing h2, #internship h2 {
    color: #f6e0c6;
}
#about .btn, #clients .btn, #more-important .btn, #pricing .btn, #internship .btn {
    background-color: #f6e0c6;
    color: #000000;
}
#about .btn:hover, #clients .btn:hover, #more-important .btn:hover, #pricing .btn:hover, #internship .btn:hover {
    background-color: #e8d3b0;
}
#about .service-card, #clients .service-card, #more-important .service-card, #pricing .service-card, #internship .service-card,
#about .why-choose-card, #clients .why-choose-card, #more-important .why-choose-card, #pricing .why-choose-card, #internship .why-choose-card,
#about .pricing-card, #clients .pricing-card, #more-important .pricing-card, #pricing .pricing-card, #internship .pricing-card,
#about .testimonial, #clients .testimonial, #more-important .testimonial, #pricing .testimonial, #internship .testimonial {
    background: linear-gradient(135deg, #f6e0c6, #e8d3b0);
    color: #000000;
}
/* Responsive design */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .services-grid, .why-choose-grid, .pricing-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        flex-direction: column;
    }
    .service-card {
        max-width: 100%;
    }
    .sticky-cta {
        display: none;
    }
    section {
        padding: 2rem 0;
    }
    footer {
        padding: 2rem 0;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    .hero-image img {
        height: 300px;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .about-video video, .contact-video video {
        height: 200px;
    }
}
@media (min-width: 769px) {
    .sidebar, .overlay {
        display: none;
    }
    .services-grid {
        justify-content: center;
    }
    .service-card:nth-child(-n+3) {
        flex: 0 0 calc(33.333% - 1.333rem);
    }
    .service-card:nth-child(n+4) {
        flex: 0 0 calc(50% - 1rem);
    }
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-choose-grid, .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .hero-text, .hero-image {
        flex: 1 1 50%;
    }
    .hero-text {
        text-align: left;
    }
    .about-content, .contact-content, .contact-video {
        flex: 1 1 50%;
    }
    .about-video {
        flex: 1 1 50%;
        order: 2;
    }
    .about-content {
        order: 1;
    }
}

/* Existing CSS remains unchanged, adding new styles below */

/* Bill Payment Section */
#bill-payment {
    background-color: #f6e0c6;
    color: #000000;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #000000;
}
#bill-payment .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
#bill-payment h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
#bill-payment p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
#bill-payment img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 1rem;
    border: 1px solid #000000;
}
#bill-payment .btn {
    background-color: #000000;
    color: #f6e0c6;
}
#bill-payment .btn:hover {
    background-color: #333333;
}

/* Services Section */
#services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}
#services .service-card {
    width: 100%;
    max-width: 300px;
    min-height: 350px; /* Consistent height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#services .service-card .btn {
    margin-top: auto;
    align-self: center;
}

/* Sparki Checkout Section */
#sparki-checkout {
    background-color: #2c43e3;
    color: #f6e0c6;
    padding: 4rem 0;
}
#sparki-checkout h2 {
    color: #f6e0c6;
}
#sparki-checkout .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
#sparki-checkout img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1rem;
    border: 1px solid #000000;
}
#sparki-checkout .btn {
    background-color: #f6e0c6;
    color: #000000;
}
#sparki-checkout .btn:hover {
    background-color: #e8d3b0;
}

/* Why Partner with Sparkify */
#why-choose {
    background-color: #f6e0c6;
}
#why-choose .why-choose-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}
#why-choose .why-choose-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 1rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
#why-choose .why-choose-list li.visible {
    opacity: 1;
    transform: translateY(0);
}
#why-choose .why-choose-list img {
    width: 3rem;
    height: 3rem;
}
#why-choose .why-choose-list h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
#why-choose .why-choose-list p {
    font-size: 0.875rem;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    #bill-payment {
        padding: 1rem 0;
    }
    #bill-payment h2 {
        font-size: 1.5rem;
    }
    #bill-payment img {
        max-width: 200px;
    }
    #services .services-grid {
        grid-template-columns: 1fr;
    }
    #sparki-checkout {
        padding: 2rem 0;
    }
    #sparki-checkout img {
        max-width: 300px;
    }
    #why-choose .why-choose-list li {
        flex-direction: column;
        text-align: center;
    }
}

