/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    font-style: italic;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    margin-top:-200px;
}

.logo{

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   }

.logo img {
   width:60px;
   height:60px;
   border-radius:100%;
   margin-top:15px;
   margin-left:15px;
   justify-content:flex-start;

}
.important{
    font-size:1.5rem;
    font-weight:bold;
    margin-bottom:20px;
    color:red;
    text-transform: capitalize;
    text-decoration: underline;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: #667eea;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
    background: #667eea;
    color: #fff;
}

.btn-large:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-alt {
    background: #f8f9fa;
}

.section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3748;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.card p {
    color: #718096;
    line-height: 1.6;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.grid-item {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.grid-item h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.grid-item p {
    color: #718096;
}

/* Features */
.features {
    max-width: 800px;
    margin: 40px auto 0;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.feature h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: #2d3748;
}

.feature p {
    color: #718096;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-copyright {
    color: #a0aec0;
    margin-bottom: 15px;
}

.footer-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #5568d3;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.875rem;
        font-weight: 700;
        margin-bottom: 40px;
        line-height: 1.2;
        margin-top: -50px;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section h2 {
        font-size: 1.75rem;
    }
    
    .cta h2 {
        font-size: 1.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 40px;
        line-height: 1.2;
        margin-top: -50px;
    }
.hero h2 {
        font-size: 1.125rem;
        font-weight: 500;
        margin-bottom: 5px;
        line-height: 1.2;
        font-style: italic;
    }



    
    .section {
        padding: 60px 20px;
    }
    
    .card {
        padding: 30px 20px;
    }
}