/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #ffffff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar Styling */
header {
    background: linear-gradient(to right, #FF4E50, #F9D423);
    color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out;
}

header.scrolled {
    background: linear-gradient(to right, #D72638, #3E5151);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: #333;
}

.nav-links li a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: #fff;
    transition: width 0.3s ease-in-out;
    margin-top: 5px;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hamburger Menu Styling */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    transition: transform 0.3s ease-in-out;
}

.hamburger span {
    display: block;
    background: white;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transform-origin: center;
}

.nav-links.active {
    transform: translateY(0);
}

/* Mobile Menu Styling */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: linear-gradient(to bottom, #FF4E50, #F9D423);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        font-size: 1.2em;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom right, #FF4E50, #F9D423);
    color: #ffffff;
    overflow: hidden;
    animation: fadeIn 2s ease-in;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: fadeUp 1.5s ease-out;
    z-index: 2;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    animation: fadeUp 2s ease-out;
    z-index: 2;
}

.hero .cta {
    background: #ffffff;
    color: #FF4E50;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.hero .cta:hover {
    background: #F9D423;
    color: #fff;
    transform: scale(1.1);
}

/* Floating Bubbles */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bubbles span {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.bubbles span:nth-child(1) {
    top: 10%;
    left: 15%;
    width: 60px;
    height: 60px;
    animation-duration: 12s;
}

.bubbles span:nth-child(2) {
    top: 20%;
    left: 50%;
    width: 50px;
    height: 50px;
    animation-duration: 10s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}





/* Sections */
section {
    padding: 100px 0;
    text-align: center;
}

.animated-section {
    animation: slideIn 1.5s ease-out;
}


/* Footer Section */
.footer-section {
    background: #333;
    color: #fff;
    padding: 60px 20px;
    margin: 0; /* Remove top margin */
    font-size: 1em;
}

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #FF4E50;
    text-transform: uppercase;
}

.footer-section p, .footer-section a {
    color: #ddd;
    font-size: 0.95em;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section p a:hover, .footer-section a:hover {
    color: #FF4E50;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #FF4E50;
}

.footer-contact p, .footer-contact a {
    font-size: 0.95em;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    font-size: 1.2em;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
    background: #FF4E50;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9em;
    color: #aaa;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    text-align: center;
    background: #f9f9f9;
}

.services-section h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card img {
    max-width: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.service-card h3 {
    font-size: 1.5em;
    color: #B8001F;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1em;
    color: #333;
}

/* Animation for Graphics */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    text-align: center;
    background: #f9f9f9;
}

.pricing-section h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch; /* Ensures equal height */
}


.pricing-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 380px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Arrange elements vertically */
    justify-content: space-between; /* Pushes button to the bottom */
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-card ul li {
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
}

.pricing-card ul li::before {
    content: "✓ ";
    color: #B8001F;
    font-weight: bold;
    margin-right: 5px;
}

/* Order Now Button - Smaller Size */
.pricing-btn {
    display: block;
    padding: 10px 20px;
    font-size: 1em;
    background: #B8001F;
    color: #ffffff;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: auto; /* Pushes button to the bottom */
}

.pricing-btn:hover {
    background: #FF4E50;
    transform: scale(1.03);
}


/* Contact Section */
.contact-section {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
}

.contact-section h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

/* Contact Graphics */
.contact-graphics img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

/* Contact Details */
.contact-details {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-details h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

.contact-info i {
    font-size: 1.8em;
    color: #B8001F;
}

.contact-info a {
    text-decoration: none;
    color: #B8001F;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Floating Animation for Graphics */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-details {
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }
}


.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 1em;
    color: #B8001F;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group i {
    color: #B8001F;
    margin-right: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #B8001F;
    box-shadow: 0 0 8px rgba(184, 0, 31, 0.3);
    outline: none;
}

textarea {
    resize: none;
}

.cta {
    display: inline-block;
    background: #B8001F;
    color: #ffffff;
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta:hover {
    background: #800000;
    transform: scale(1.05);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px 30px;
    }
}

/* Social Media Section */
#social-media {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    color: #333;
}

#social-media h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 10px;
}

#social-media p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #B8001F;
    color: #fff;
    font-size: 1.5em;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background: #F9D423;
    transform: scale(1.2);
}


/* Media Query for Smaller Devices */
@media (max-width: 768px) {
    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
}


/* Newsletter Section */
#newsletter {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, #FF4E50, #F9D423);
    color: #ffffff;
}

#newsletter h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#newsletter p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

#newsletter form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#newsletter input[type="email"] {
    padding: 15px;
    font-size: 1em;
    border: none;
    border-radius: 30px;
    width: 300px;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

#newsletter input[type="email"]:focus {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

#newsletter button {
    padding: 15px 30px;
    font-size: 1em;
    background: #ffffff;
    color: #FF4E50;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

#newsletter button:hover {
    background: #FF4E50;
    color: #ffffff;
    transform: scale(1.1);
}

/* Process Section */
#process {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

#process h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.step h3 {
    font-size: 1.5em;
    color: #FF4E50;
    margin-bottom: 10px;
}

.step p {
    font-size: 1em;
    color: #555;
}

/* Features Section */
#features {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

#features h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 30px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.feature img {
    max-width: 80px;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.feature h3 {
    font-size: 1.5em;
    color: #FF4E50;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
    color: #555;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Consultation Hero Section */
#consultation-hero {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom right, #FF4E50, #F9D423);
    color: #ffffff;
}

#consultation-hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#consultation-hero p {
    font-size: 1.2em;
}

/* Consultation Form Section */
#consultation-form {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

#consultation-form h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 15px;
}

#consultation-form p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.consultationform {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.consultationform-group {
    margin-bottom: 20px;
}

.consultationform-group label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.consultationform-group input,
.consultationform-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.consultationform-group input:focus,
.consultationform-group textarea:focus {
    border-color: #B8001F;
    outline: none;
}

button.cta {
    background: #B8001F;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

button.cta:hover {
    background: #FF4E50;
    transform: scale(1.05);
}


/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: #f9f9f9;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.8em;
    color: #B8001F;
    margin-bottom: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
    padding: 20px 30px;
    position: relative;
    font-weight: bold;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #B8001F;
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #B8001F;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: #FF4E50;
}

.faq-answer {
    font-size: 1.1em;
    color: #555;
    padding: 0 30px 20px;
    line-height: 1.8;
    display: none;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* FAQ Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 2.2em;
    }

    .faq-question {
        font-size: 1.3em;
        padding: 15px 20px;
    }

    .faq-answer {
        font-size: 1em;
        padding: 10px 20px;
    }
}

/* Social Media Section */
#social-media {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

#social-media h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 10px;
}

#social-media p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #B8001F;
    color: #fff;
    font-size: 1.5em;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background: #F9D423;
    transform: scale(1.1);
}

/* About Us Section */
.about-us-section {
    padding: 100px 20px;
    background: #f9f9f9;
    text-align: left;
}

.about-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease-in-out;
}

.about-content h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #FF4E50;
}

.about-content p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 1.5em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.about-content ul li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF4E50;
    font-size: 1.5em;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 2em;
    }

    .about-content p, .about-content ul li {
        font-size: 1em;
    }
}

/* Call-to-Action Section */
.cta-section {
    background: linear-gradient(135deg, #B8001F, #FF4E50);
    color: #fff;
    text-align: center;
    padding: 80px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    margin: 60px auto;
}

/* Add a subtle overlay effect */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

/* Container and content styling */
.cta-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3em;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* CTA Button Styling */
.cta-button {
    display: inline-block;
    background: #fff;
    color: #B8001F;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #FF4E50;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Add subtle gradient animation to the button on hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transition: all 0.4s ease;
    z-index: 0;
}

.cta-button:hover::before {
    left: 100%;
    transition: all 0.4s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.2em;
    }

    .cta-content p {
        font-size: 1.1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 12px 30px;
    }
}

/* Donate to Charity Section */
.donate-charity-section {
    background: linear-gradient(135deg, #007BFF, #6C63FF);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    margin: 60px auto;
    position: relative;
    overflow: hidden;
}

/* Subtle Overlay Effect */
.donate-charity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

/* Container Styling */
.donate-charity-section .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Headline and Paragraph */
.donate-content h2 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.donate-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Donation Buttons */
.donate-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.donate-button {
    background: #fff;
    color: #007BFF;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.donate-button:hover {
    background: #6C63FF;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Donation Note */
.donate-note {
    font-size: 1em;
    color: #fff;
    opacity: 0.9;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donate-content h2 {
        font-size: 2.2em;
    }

    .donate-content p {
        font-size: 1em;
    }

    .donate-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}

/* Newsfeed Section */
.newsfeed-section {
    padding: 80px 20px;
    background: #f0f2f5;
    text-align: center;
}

.newsfeed-section h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
}

/* Newsfeed Container */
.newsfeed {
    max-width: 600px;
    margin: 0 auto;
}

/* Individual News Post */
.news-post {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.news-post:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Post Header (User Info) */
.post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.post-info h3 {
    font-size: 1em;
    margin: 0;
    color: #333;
}

.post-info p {
    font-size: 0.9em;
    color: #777;
    margin: 0;
}

/* Post Content */
.post-text {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 10px;
}

.post-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    object-fit: cover;
}

/* Post Actions (Like, Comment, Share) */
.post-actions {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

.post-actions button {
    background: none;
    border: none;
    font-size: 1em;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.post-actions button:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsfeed {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .news-post {
        padding: 10px;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }
}

.like-btn {
    background: none;
    border: none;
    font-size: 1em;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.like-btn.liked {
    color: #007bff;
    font-weight: bold;
}

.like-btn:hover {
    color: #007bff;
}

/* Hosted Websites Section */
.hosted-websites-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.hosted-websites-section h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

/* Grid Layout */
.hosted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Hosted Website Card */
.hosted-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hosted-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Thumbnail Image */
.hosted-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Hosted Content */
.hosted-content {
    padding: 20px;
}

.hosted-content h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.hosted-content p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Visit Website Button */
.visit-button {
    display: inline-block;
    color: #fff;
    background: #B8001F;
    padding: 12px 20px;
    font-size: 1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.visit-button:hover {
    background: #FF4E50;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hosted-websites-section h2 {
        font-size: 2em;
    }

    .section-description {
        font-size: 1em;
    }

    .hosted-content h3 {
        font-size: 1.2em;
    }

    .visit-button {
        font-size: 0.9em;
        padding: 10px 15px;
    }
}

.order-section {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.order-section h2 {
    font-size: 2.5em;
    color: #B8001F;
    margin-bottom: 20px;
}

.order-form {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Package Options */
.package-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.package-options label {
    font-size: 1em;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-options input[type="radio"] {
    accent-color: #B8001F; /* Custom color for the radio button */
    width: 18px;
    height: 18px;
}

/* Checkbox Styling */
.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #B8001F; /* Custom checkbox color */
    cursor: pointer;
}

/* Link Styling */
.form-group a {
    color: #B8001F;
    text-decoration: none;
    font-weight: bold;
}

.form-group a:hover {
    text-decoration: underline;
    color: #FF4E50; /* Change color on hover */
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.order-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #B8001F;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.order-btn:hover {
    background: #FF4E50;
}


/* Call-to-Action Section */
.cta-section {
    background: linear-gradient(90deg, #B8001F, #FF4E50);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #B8001F;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #FF4E50;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2em;
    }

    .cta-content p {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}

/* Container */
.terms-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #C73659;
    margin-bottom: 10px;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    border-bottom: 2px solid #C73659;
    padding-bottom: 5px;
}

p, ul {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

strong {
    color: #A91D3A;
}

/* Links */
a {
    color: #A91D3A;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
