/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgb(242, 200, 80), rgb(208, 163, 78));
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: black;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.6rem;
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-button {
    display: inline-block;
    background-color: rgb(208, 163, 78);
    color: black;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #6200ea;
    transition: width 0.3s ease;
}

.hero-button:hover::after {
    width: 100%;
}

/* About Section */
.about {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: black;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.about h2::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(98, 0, 234, 0.1);
    border-radius: 50%;
    top: -15px;
    left: -15px;
    z-index: -1;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
}

.about-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.feature {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8a2be2, #4e41db);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: black;
    font-weight: 600;
}

.feature p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #666;
}

/* Features Section */
.features {
    background-color: #f9f8ff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="0.5" fill="%23d4c4fb"/></svg>');
    opacity: 0.4;
}

.features h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: black;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-box {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(78, 65, 219, 0.05));
    transition: height 0.4s ease;
    z-index: -1;
}

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(98, 0, 234, 0.15);
}

.feature-box:hover::after {
    height: 100%;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(98, 0, 234, 0.1);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.feature-box p {
    margin-bottom: 25px;
    color: #666;
}

.feature-link {
    display: inline-block;
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border: 2px solid ;
    border-radius: 30px;
}

.feature-link:hover {
    background-color: white;
    color: black;
    
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgb(242, 200, 80), rgb(208, 163, 78));
    color: black;
    padding: 100px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.footer::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.footer h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.footer p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.social-icons a {
    color: black;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.1);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.social-icons a:hover {
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover::before {
    transform: scale(1);
}

/* Animation Enhancement */
.animate__animated {
    animation-duration: 1.2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .about h2,
    .features h2 {
        font-size: 2.5rem;
    }
    
    .about-features,
    .features-container {
        flex-direction: column;
    }
    
    .feature,
    .feature-box {
        min-width: auto;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .about,
    .features {
        padding: 80px 20px;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}