/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #e8e8e8;
    color: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Gradient Header */
.gradient-header {
    background: linear-gradient(135deg, #7c6fd6 0%, #8b7ee0 100%);
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(124, 111, 214, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    transform: translateY(-2px);
}



/* Home Container */
.home-container {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 40px;
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: white;
    padding: 60px 70px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, #7c6fd6 0%, #a89ff5 100%);
    border-radius: 50% 0 60% 40%;
    z-index: 0;
}

.content-section > * {
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro Content */
.intro-content h1 {
    font-size: 56px;
    color: #2d3748;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.1;
    animation: slideInLeft 0.8s ease;
}

.intro-content h1 span {
    color: #7c6fd6;
    font-weight: 800;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.intro-content p {
    color: #718096;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 15px;
    max-width: 450px;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    animation: slideInLeft 0.8s ease 0.4s both;
}

.btn-primary, .btn-secondary {
    padding: 16px 45px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #4cd964;
    color: white;
    box-shadow: 0 8px 25px rgba(76, 217, 100, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #3ec855;
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 217, 100, 0.5);
}

/* Form Card */
.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    color: #7c6fd6;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: slideInRight 0.8s ease;
    border: 2px solid #f0f0f0;
}

.form-card h2 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: #7c6fd6;
    text-align: center;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-card input, .form-card textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9f9f9;
    color: #333;
}

.form-card input:focus, .form-card textarea:focus {
    background: white;
    border-color: #7c6fd6;
    box-shadow: 0 5px 20px rgba(124, 111, 214, 0.2);
    transform: translateY(-2px);
}

.form-card input::placeholder, .form-card textarea::placeholder {
    color: #999;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #4cd964;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(76, 217, 100, 0.4);
}

.btn-submit:hover {
    background: #3ec855;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 217, 100, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.8s ease;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.feature-item .icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.feature-item:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-item p {
    color: #4a5568;
    font-size: 15px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .content-section {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 40px;
    }
    
    .intro-content h1 {
        font-size: 36px;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .intro-content h1 {
        font-size: 28px;
    }
    
    .form-card {
        padding: 30px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #7c6fd6;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b5ec5;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Smooth Transitions */
* {
    scroll-behavior: smooth;
}

/* Icon Styling */
.feature-item .icon i {
    color: #7c6fd6;
}

/* Button Icons */
.btn-primary i,
.btn-secondary i {
    margin-right: 8px;
}



.form-card {
    position: relative;
}

.intro-content {
    position: relative;
}
