:root {
    --primary-color: #0d6efd;
    --secondary-color: #0a58ca;
    --accent-color: #eef2ff;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2ff 100%);
    position: relative;
}

.hero h1 {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #0d6efd, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Features */
.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 28px;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Partners */
.partners-section {
    background: #fff;
    padding: 80px 0;
}

.partner-logo {
    font-size: 2rem;
    color: #adb5bd;
    transition: 0.3s;
    text-align: center;
    
    }

    .partner-logo img {
    max-width: 100px;
    max-height:50px;
    }

.partner-logo:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    border-radius: 30px;
    padding: 80px;
    text-align: center;
    color: white;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Animation Classes (used by jQuery) */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    background: #f8f9fa;
    padding: 60px 0 20px;
    color: #6c757d;
}

footer h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #6c757d;
    text-decoration: none;
    transition: 0.2s;
}

footer a:hover {
    color: var(--primary-color);
}
