
     /* 2. Modern Green Wealth Theme */
/* 5. Innovative Purple Tech Theme */
:root {
    --primary: #3F1D38; /* Deep Purple */
    --secondary: #7C3AED; /* Vibrant Purple */
    --accent: #22C55E; /* Success Green */
    --light: #FAF5FF;
    --dark: #1E1028;
    --text-gray: #6D6478;
    --white: #FFFFFF;
}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
        }

        /* --- Header & Nav --- */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: var(--secondary); }

        .btn-cta {
            background: var(--primary);
            color: var(--white);
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s;
        }

        .btn-cta:hover { transform: translateY(-2px); background: var(--secondary); }

        /* --- Hero Section --- */
        .hero {
            padding: 180px 2rem 100px;
            background: linear-gradient(rgba(63, 29, 56,0.8), rgba(63, 29, 56,0.8)), url('../img/hero-3.webp') center/cover;
            color: var(--white);
            text-align: center;
            max-width: 100%;
        }

        .hero-content { max-width: 800px; margin: 0 auto; }
        .hero h1 { font-size: 3rem; margin-bottom: 1.5rem; }
        .hero p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }

        .hero-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
        .btn-alt { background: var(--secondary); border: none; }
        .btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }

        /* --- Sections General --- */
        section { padding: 80px 2rem; max-width: 1200px; margin: 0 auto; }
        .section-title { text-align: center; margin-bottom: 3rem; }
        .section-title h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 0.5rem; }
        .section-title .underline { width: 60px; height: 4px; background: var(--accent); margin: 0 auto; }

        /* --- About --- */
        .about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .about-img img { width: 100%; border-radius: 10px; box-shadow: 20px 20px 0 var(--light); }

        /* --- Why Choose Us --- */
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
        .feature-card { padding: 2rem; text-align: center; border-radius: 8px; background: var(--light); transition: 0.3s; }
        .feature-card:hover { transform: translateY(-10px); background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .feature-card i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1rem; }

        /* --- Services --- */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 2rem; }
        .service-cat { border: 1px solid #ddd; padding: 2rem; border-radius: 10px; }
        .service-cat h3 { color: var(--primary); border-bottom: 2px solid var(--accent); padding-bottom: 0.5rem; margin-bottom: 1rem; }
        .service-cat ul { list-style: none; }
        .service-cat li { margin-bottom: 0.5rem; font-size: 0.95rem; }
        .service-cat li::before { content: "✓"; color: var(--secondary); margin-right: 8px; font-weight: bold; }

        /* --- FAQ --- */
        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid #ddd; padding: 1rem 0; cursor: pointer; }
        .faq-question { display: flex; justify-content: space-between; font-weight: 600; }
        .faq-answer { display: none; padding: 1rem 0; color: var(--text-gray); }

        /* --- Forms --- */
        .form-section { background: var(--light); border-radius: 15px; padding: 3rem; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
        .form-group { margin-bottom: 1rem; }
        .form-group input, .form-group textarea {
            width: 100%; padding: 0.8rem; border: 1px solid #ccc; border-radius: 5px;
        }
        .submit-btn {
            background: var(--primary); color: white; border: none; padding: 1rem 2rem;
            cursor: pointer; width: 100%; border-radius: 5px; font-weight: bold;
        }
        .confirmation { display: none; margin-top: 1rem; padding: 1rem; background: #d4edda; color: #155724; border-radius: 5px; text-align: center; }

        /* --- Footer --- */
        footer { background: var(--primary); color: var(--white); padding: 4rem 2rem 1rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; }
        .footer-col h4 { margin-bottom: 1.5rem; border-left: 3px solid var(--accent); padding-left: 10px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #ccc; text-decoration: none; font-size: 0.9rem; }
        .social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
        .social-icons a { color: var(--white); font-size: 1.2rem; }
        .copyright { text-align: center; border-top: 1px solid #222; margin-top: 3rem; padding-top: 2rem; font-size: 0.8rem; opacity: 0.7; }

        /* --- Mobile Layout --- */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .about-container, .contact-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.2rem; }
        }
        /* Modal styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    position: relative;
    text-align: left;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}
    