body {
    background: #020617;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html,body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button{
    font-family: 'Outfit', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34,197,94,0.25), transparent);
    top: -100px;
    left: -100px;
    filter: blur(120px);
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.25), transparent);
    bottom: -100px;
    right: -100px;
    filter: blur(120px);
    z-index: 0;
}
.hero button{
    transition:0.5s;
    font-family: 'Outfit', sans-serif;
}

.hero button:hover {

    transform: scale(1.05);
}
.hero {
    padding: 80px 20px;
    background: transparent;
    border-radius: 10px;
    color: white;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.3;
}

.hero-left h1 span {
    background: linear-gradient(90deg, #22c55e, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    color: #94a3b8;
    margin: 15px 0 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(90deg, #22c55e, #06b6d4);
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 18px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

/* RIGHT (GLASS CARD INSTEAD OF IMAGE) */
.hero-right img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 50px;
}

.glass-card {
    width: 320px;
    padding: 25px;
    border-radius: 20px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);

    box-shadow: 0 0 40px rgba(34, 197, 94, 0.2);
}

.main-glass {
    position: relative;
    max-width: 1200px;
    margin: auto; /* IMPORTANT spacing */
    padding: 40px;
    
    /* 1. Ensure the card handles layout and layering correctly */
    display: block;
    z-index: 1; 

    /* 2. Frosted Glass Background (Noticeable opacity against dark backgrounds) */
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* 3. Safe Gradient Border (Replaces the broken mask approach) */
    border: 1px solid transparent;
    border-radius: 24px;
    background-image: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.8)), 
                      linear-gradient(120deg, #22c55e, #06b6d4);
    background-origin: border-box;
    background-clip: padding-box, border-box;

    /* 4. Glow Outer Shadow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* 5. Cleaned up glow effect behind the card */
.main-glass::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent 70%);
    top: -50px;
    left: -50px;
    filter: blur(60px);
    z-index: -1; 
    pointer-events: none;
}



.card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.card-top h3 {
    font-size: 14px;
    color: #94a3b8;
}

.card-top p {
    font-size: 20px;
    font-weight: bold;
}

.green {
    color: #22c55e;
}

.features {
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.features h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #94a3b8;
    margin-bottom: 40px;
}

/* GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 20px;
    border-radius: 16px;

    /* STRONGER GLASS */
    background: rgba(34, 197, 94, 0.08);
    backdrop-filter: blur(14px);

    /* BORDER */
    border: 1px solid rgba(34, 197, 94, 0.25);

    /* SMOOTH EFFECT */
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.feature-card h3 {
    margin: 10px 0;
    font-size: 16px;
}

.feature-card p {
    font-size: 13px;
    color: #94a3b8;
}

/* ICON */
.icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 20px;
}

/* COLORS */
.green { background: rgba(34,197,94,0.2); }
.blue { background: rgba(59,130,246,0.2); }
.purple { background: rgba(168,85,247,0.2); }
.yellow { background: rgba(234,179,8,0.2); }
.teal { background: rgba(20,184,166,0.2); }
.pink { background: rgba(236,72,153,0.2); }


.testimonials {
    padding: 80px 20px;
    text-align: center;
    color: white;
}

/* GRID */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* GLASS CARD */
.testimonial-card {
    padding: 25px;
    border-radius: 18px;

    background: rgba(34, 197, 94, 0.06);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(34, 197, 94, 0.25);

    text-align: left;

    transition: 0.3s;
}

/* HOVER EFFECT */
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 10px 30px rgba(34, 197, 94, 0.2),
        0 0 20px rgba(34, 197, 94, 0.15);
}

/* STARS */
.stars {
    color: #4ade80;
    margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #cbd5f5;
    margin-bottom: 20px;
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user i {
    border-radius: 12px;
    background-color: #ffffff9a;
    color: black;
    padding: 10px;
}

.user h4 {
    margin: 0;
    font-size: 14px;
}

.user span {
    font-size: 12px;
    color: #94a3b8;
}
.cta-section {
    padding: 60px 20px;
}

/* MAIN CARD */
.cta-card {
    max-width: 1200px;
    margin: auto;
    padding: 30px;
    border-radius: 20px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    gap: 20px;

    /* GLASS */
    background: rgba(34, 197, 94, 0.08);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(34, 197, 94, 0.3);

    /* GLOW */
    box-shadow: 
        0 0 60px rgba(34, 197, 94, 0.25),
        inset 0 0 20px rgba(255,255,255,0.05);

    position: relative;
}

/* ICON */
.cta-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(34,197,94,0.2);
    margin-right: 15px;
}

.cta-left {
    display: flex;
    align-items: center;
}

.cta-left h2 {
    font-size: 22px;
    color: white;
}

.cta-left h2 span {
    color: #4ade80;
}

.cta-left p {
    color: #94a3b8;
    font-size: 13px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(90deg, #22c55e, #06b6d4);
    border: none;
    padding: 10px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}


/* RIGHT VISUAL */
.cta-right {
    text-align: center;
}

.cloth-preview img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

/* GLOW BACKGROUND */
.cta-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34,197,94,0.3), transparent);
    right: -50px;
    top: -50px;
    filter: blur(80px);
    z-index: -1;
}

.faq-section {
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.faq-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.faq-item {
    border-radius: 14px;
    overflow: hidden;

    background: rgba(34, 197, 94, 0.06);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(34, 197, 94, 0.25);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: none;
    color: white;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}



/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding: 0 18px;
}

.faq-answer p {
    font-size: 14px;
    color: #94a3b8;
    padding-bottom: 15px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 100px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.cta-buttons button{
    transition: 0.5s;
}

.cta-buttons button:hover{
    transform: scale(1.05);
}


@media (max-width: 768px) {



    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-left {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

   
section:last-child {
    margin-bottom: 0;
    padding-bottom: 40px;
}

  /* CONTACT FIX */
    


}

.contact {
    padding: 80px 20px;
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.contact-left h1 {
    font-size: 48px;
}

.contact-left h1 span {
    color: #4ade80;
}

.contact-left p {
    color: #94a3b8;
    margin: 15px 0 30px;
}

/* INFO ITEMS */
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(34,197,94,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RIGHT CARD */
.contact-card {
    padding: 30px;
    border-radius: 20px;

    background: rgba(34,197,94,0.06);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(34,197,94,0.3);

    box-shadow: 0 0 40px rgba(34,197,94,0.2);
}

/* INPUTS */
.contact-card input,
.contact-card textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 10px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.contact-card textarea {
    height: 120px;
}

/* BUTTON */
.contact-card .btn-primary {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;

    background: linear-gradient(90deg, #22c55e, #06b6d4);
    color: white;
    cursor: pointer;
    transition: 0.5s;
}

.contact-card .btn-primary:hover{
    scale:1.05;
}

.contact-card h2{
        margin-bottom: 10px;
}

input,textarea{
    font-family: 'Outfit', sans-serif;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-content {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 300px;

    background: rgba(34,197,94,0.08);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(34,197,94,0.3);

    box-shadow: 0 0 40px rgba(34,197,94,0.3);
}

.checkmark {
    font-size: 40px;
    color: #22c55e;
    margin-bottom: 10px;
}

.modal-content h2 {
    margin-bottom: 10px;
    color: white;
}

.modal-content p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.modal-content button {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;

    background: linear-gradient(90deg, #22c55e, #06b6d4);
    color: white;
    cursor: pointer;
}

.contact-btn{
    text-decoration: none;
    text-align: center;
}

@media (max-width: 768px) {

    .contact-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px;
        text-align: center;
    }

    .contact-left h1 {
        font-size: 30px !important;
    }

    .info-item {
        justify-content: left;
        text-align: left;;
    }

    .contact-card {
        width: 100%;
        max-width: 350px;
        margin: auto;
    }
}