

:root {
    --accent-color: #03346c;
    --accent-color-light: #006eff;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
}



/* Hero Section */
.hero {
    
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 Q 25 0, 50 50 T 100 50" fill="none" stroke="%23006eff" stroke-width="0.5"/><path d="M0 70 Q 25 20, 50 70 T 100 70" fill="none" stroke="%2303346c" stroke-width="0.5"/></svg>') repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.hero-content {
    padding-top: 140px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

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

/* CTA Buttons */
.cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(3, 52, 108, 0.3);
    margin-right: 1rem;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(3, 52, 108, 0.4);
}

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

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.cta-btn.secondary:hover {
    background: rgba(3, 52, 108, 0.1);
}

/* Section Styling */
section {
    padding: 5rem 5%;
    max-width: auto;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Why Choose Us Section */
.features {
    background-color: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color-light);
    margin-bottom: 1rem;
    display: inline-block;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.service-img {
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon {
    font-size: 3rem;
    color: var(--white);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(3, 52, 108, 0.9) 0%, rgba(0, 110, 255, 0.9) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 Q 25 0, 50 50 T 100 50" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.2"/></svg>') repeat;
    color: var(--white);
    text-align: center;
    padding: 5rem 5%;
    margin: 5rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* FAQ Section */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(3, 52, 108, 0.1);
    padding-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: 'Q';
    background: var(--accent-color);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.9rem;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-btn {
        display: block;
        margin: 1rem auto;
        width: 100%;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

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

.fade-in-right {
    animation: fadeInRight 1s ease-out;
}

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