/*****************Header****************/
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

:root {
    --primary-gradient: linear-gradient(45deg, #ff4ecd, #6a5af9, #00f2fe);
    --neon-color: #39ff14;
    --funky-font: 'Luckiest Guy', cursive;
}

body {
    margin: 0;
    padding: 0;
    background: #0f0f0f;
    font-family: var(--funky-font);
    color: white;
    overflow-x: hidden;
}

/* Header Styling */
header {
    background: var(--primary-gradient);
    background-size: 300% 300%;
    animation: gradientMove 10s ease infinite;
    padding: 1em 2em;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    border-bottom: 4px solid var(--neon-color);
    position: sticky;
    top: 0;
    z-index: 999;
}

@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo h2 {
    font-size: 2rem;
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

@keyframes textGlow {
    0% {text-shadow: 0 0 5px #fff, 0 0 10px #ff4ecd;}
    100% {text-shadow: 0 0 10px #fff, 0 0 20px #6a5af9;}
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    position: relative;
    padding: 0.5em 0;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--neon-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav ul li a:hover {
    color: var(--neon-color);
}

/* CTA Button */
.cta-btn {
    background: var(--neon-color);
    border: none;
    padding: 0.8em 1.5em;
    font-size: 1rem;
    color: #0f0f0f;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 0 10px var(--neon-color), 0 0 20px var(--neon-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #39ff14, 0 0 30px #39ff14;
}

/*********Hero*********************/

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e0036, #3f0071);
    background-size: 200% 200%;
    animation: bgShift 12s ease infinite;
    color: white;
    position: relative;
    overflow: hidden;
}

@keyframes bgShift {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.hero-content {
    flex: 1 1 50%;
    animation: slideInLeft 1.2s ease-out forwards;
    opacity: 0;
    transform: translateX(-100px);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: 3rem;
    font-family: 'Luckiest Guy', cursive;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff4ecd, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.primary-btn, .secondary-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.primary-btn {
    background: #39ff14;
    color: #0f0f0f;
    box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
}

.secondary-btn {
    background: transparent;
    border: 2px solid #00f2fe;
    color: #00f2fe;
}

.primary-btn:hover, .secondary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #fff, 0 0 30px #00f2fe;
}

/* Hero Image */
.hero-image {
    flex: 1 1 40%;
    animation: fadeIn 2s ease-out forwards;
    opacity: 0;
    transform: scale(0.9);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image {
        flex: 1 1 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/*************About*****************/

/* === ABOUT SECTION === */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(145deg, #240046, #3c096c);
    color: #ffffff;
    position: relative;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1 1 50%;
    animation: fadeSlideLeft 1s ease forwards;
    opacity: 0;
    transform: translateX(-100px);
}

.about-text h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    background: linear-gradient(to right, #ff4ecd, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: bold;
    color: #a0ffe3;
}

.about-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #39ff14;
}

.about-image {
    flex: 1 1 40%;
    animation: fadeSlideRight 1s ease forwards;
    opacity: 0;
    transform: translateX(100px);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

/* === SERVICES SECTION === */
.services {
    padding: 5rem 2rem;
    background: #12002c;
    color: #ffffff;
    text-align: center;
}

.services h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #dcdcdc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #3a0ca3, #7209b7);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: popIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00f2fe, 0 0 30px #ff4ecd;
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Luckiest Guy', cursive;
    color: #faff00;
}

.service-card p {
    font-size: 0.95rem;
    color: #e0e0e0;
}

/* === ANIMATIONS === */
@keyframes fadeSlideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 5px #fff, 0 0 10px #ff4ecd; }
    100% { text-shadow: 0 0 10px #fff, 0 0 20px #00f2fe; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}

/******************Why & Warranty******************/

/* === WHY CHOOSE US SECTION === */
.why-choose-us {
    background: linear-gradient(to right, #1a0033, #3d0066);
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.why-choose-us h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #00f2fe, #ff4ecd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 2rem;
}

.reason {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.reason:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 20px #00f2fe, 0 0 30px #ff4ecd;
}

.reason.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: emojiGlow 2s ease-in-out infinite alternate;
}

@keyframes emojiGlow {
    0% { filter: drop-shadow(0 0 5px #00f2fe); }
    100% { filter: drop-shadow(0 0 15px #ff4ecd); }
}

.reason h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: 'Luckiest Guy', cursive;
    color: #a0ffe3;
}

.reason p {
    font-size: 1rem;
    color: #e0e0e0;
}

/* === WARRANTY SECTION === */
.warranty {
    background: #0e001c;
    padding: 5rem 2rem;
    color: #fff;
}

.warranty-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.warranty-text {
    flex: 1 1 50%;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.warranty-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.warranty-text h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.2rem;
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.warranty-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ddd;
}

.warranty-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.warranty-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #a0ffe3;
    font-weight: bold;
}

.warranty-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #39ff14;
}

.warranty-btn {
    background: #39ff14;
    color: #0f0f0f;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
    transition: all 0.3s ease;
}

.warranty-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00f2fe, 0 0 30px #ff4ecd;
}

.warranty-image {
    flex: 1 1 40%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.warranty-image.animate {
    opacity: 1;
    transform: scale(1);
}

.warranty-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .warranty-content {
        flex-direction: column;
    }
}

/********************Quotes********************/

/* === QUOTE SECTION === */
.quote-section {
    background: linear-gradient(135deg, #1f003b, #2c0066);
    padding: 5rem 2rem;
    color: #fff;
    text-align: center;
}

.quote-section h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #39ff14, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.quote-form {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-row input,
.form-row select,
.quote-form textarea {
    flex: 1 1 45%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: #f0f0f0;
    color: #333;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.quote-form textarea {
    width: 100%;
    resize: none;
    flex: 1 1 100%;
}

.form-row input:focus,
.form-row select:focus,
.quote-form textarea:focus {
    box-shadow: 0 0 10px #00f2fe;
}

.submit-btn {
    background: #00f2fe;
    color: #000;
    font-weight: bold;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #00f2fe;
    align-self: center;
}

.submit-btn:hover {
    background: #39ff14;
    box-shadow: 0 0 20px #39ff14, 0 0 30px #00f2fe;
}

/* Confirmation Message */
.confirmation-message {
    margin-top: 2rem;
    padding: 2rem;
    background: #2e004f;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: fadeIn 0.5s ease forwards;
    display: none;
}

.confirmation-message h3 {
    font-size: 1.8rem;
    color: #39ff14;
}

.confirmation-message p {
    font-size: 1rem;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row input,
    .form-row select {
        flex: 1 1 100%;
    }
}

/******************Testimonial*********************/

/* === TESTIMONIALS SECTION === */
.testimonials {
    background: linear-gradient(145deg, #180033, #300066);
    padding: 5rem 2rem;
    color: #fff;
    text-align: center;
}

.testimonials h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #00f2fe, #a0ffe3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.testimonial.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    box-shadow: 0 0 20px #00f2fe, 0 0 30px #39ff14;
    transform: translateY(-5px);
}

.testimonial .stars {
    font-size: 1.2rem;
    color: gold;
    margin-bottom: 1rem;
    animation: twinkle 2s infinite ease-in-out alternate;
}

@keyframes twinkle {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.testimonial p {
    font-size: 1rem;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.customer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00f2fe;
    box-shadow: 0 0 10px #00f2fe;
}

.customer h4 {
    font-size: 1.1rem;
    margin: 0;
    color: #a0ffe3;
    font-weight: bold;
}

.customer span {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2rem;
    }
}

/*******************Contact & Newsletter*******************/
/* === CONTACT SECTION === */
.contact {
    background: linear-gradient(135deg, #240046, #5a189a);
    color: #fff;
    padding: 5rem 2rem;
}

.contact h2 {
    text-align: center;
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #00f2fe, #a0ffe3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.contact-info,
.contact-form {
    flex: 1 1 350px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    color: #a0ffe3;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #00f2fe;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: #f0f0f0;
    color: #333;
    transition: 0.3s ease;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #00f2fe;
}

.contact-form button {
    background: #00f2fe;
    color: #000;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s ease;
    box-shadow: 0 0 15px #00f2fe;
}

.contact-form button:hover {
    background: #39ff14;
    box-shadow: 0 0 20px #39ff14, 0 0 30px #00f2fe;
}

/* === NEWSLETTER SECTION === */
.newsletter {
    background: linear-gradient(135deg, #1b0030, #3a0ca3);
    padding: 5rem 2rem;
    color: #fff;
    text-align: center;
}

.newsletter h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    background: linear-gradient(to right, #ffd60a, #ff6f61);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #eee;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"],
.newsletter-form input[type="date"] {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background: #f5f5f5;
    color: #333;
    width: 100%;
}

.checkbox-label {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #ddd;
}

.newsletter-form button {
    background: #ff6f61;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background: #ffd60a;
    color: #000;
}

/* Confirmation Message */
.confirmation-message {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease forwards;
    display: none;
    color: #fff;
}

.confirmation-message h3 {
    font-size: 1.8rem;
    color: #39ff14;
}

.confirmation-message p {
    font-size: 1rem;
    color: #ccc;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/*****************Footer*********************/
/* === FOOTER SECTION === */
.footer {
    background: linear-gradient(to right, #1e1e2f, #121221);
    color: #fff;
    padding: 4rem 2rem 2rem;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 220px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00f2fe;
}

.social-links a {
    margin-right: 1rem;
    display: inline-block;
    color: #ccc;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 2rem;
}

/* === MODALS === */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem 1rem;
    animation: fadeInModal 0.3s ease-out forwards;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #222;
    color: #eee;
    padding: 2rem;
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
    position: relative;
}

.modal-content h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    margin-top: 1.2rem;
    color: #00f2fe;
}

.modal-content p,
.modal-content ul {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.modal-content ul {
    padding-left: 1.2rem;
    list-style: disc;
}

.modal .close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.modal .close:hover {
    color: #ff4c4c;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
}
