
:root {
    --primary-blue: #4169E1;
    --accent-violet: #8A2BE2;
    --gradient-primary: linear-gradient(135deg, #4169E1 0%, #8A2BE2 100%);
    --gradient-hover: linear-gradient(135deg, #8A2BE2 0%, #4169E1 100%);
    --gradient-bg: linear-gradient(135deg, #eef2ff 0%, #f3e8ff 50%, #e0e7ff 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    --text-dark: #1e293b;
    --text-light: #475569;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, sans-serif; scroll-behavior: smooth; }

/* FULL GRADIENT BACKGROUND FOR THE ENTIRE WEBSITE */
body { 
    background: var(--gradient-bg); 
    color: var(--text-dark); 
    line-height: 1.6; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
    overflow-x: hidden; 
}
main { flex: 1; }

/* Gradient Text Class */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navigation - Glassmorphism */
header { 
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
    padding: 20px 5%; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 26px; font-weight: 800; text-decoration: none; }
.nav-links a { text-decoration: none; color: var(--text-dark); margin-left: 25px; font-weight: 600; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--accent-violet); }

/* Gradient Buttons */
.btn-primary { 
    background: var(--gradient-primary); 
    color: white !important; 
    padding: 12px 28px; 
    border-radius: 30px; 
    text-decoration: none; 
    transition: all 0.4s ease; 
    display: inline-block;
    border: none;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}
.btn-primary:hover { 
    background: var(--gradient-hover);
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4); 
}

/* Layouts */
.section-container { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); object-fit: cover; border: 5px solid rgba(255,255,255,0.5); }

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; margin-bottom: 30px; }
    .nav-links { display: none; }
}

/* Grids */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }

/* Cards with Glassmorphism */
.card, .feature-box, .contact-form, .info-box {      
    background: rgba(255, 255, 255, 0.6); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px; 
    border-radius: 20px; 
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07); 
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}
.card { display: flex; flex-direction: column; }
.card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.15); 
    background: rgba(255, 255, 255, 0.8);
}
.card-image { width: calc(100% + 60px); margin: -30px -30px 20px -30px; height: 200px; object-fit: cover; border-radius: 20px 20px 0 0; }
.card h3 { margin-bottom: 10px; font-size: 22px; }
.card p { color: var(--text-light); flex-grow: 1; }
.badge { display: inline-block; padding: 6px 15px; background: var(--gradient-primary); color: white; border-radius: 20px; font-size: 14px; font-weight: bold; margin-bottom: 15px; width: fit-content; }

/* Features & Testimonials */
.feature-box { text-align: center; }
.feature-icon { font-size: 45px; margin-bottom: 15px; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.testimonial-card { 
    background: rgba(255, 255, 255, 0.7); 
    padding: 30px; 
    border-radius: 20px; 
    font-style: italic; 
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05); 
    border: 1px solid rgba(255,255,255,0.6);
    border-top: 5px solid var(--accent-violet); 
}
.testimonial-author { font-style: normal; font-weight: bold; margin-top: 15px; color: var(--accent-violet); }

/* Scroll Animations */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }

/* Forms */
.contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 600px; margin: 0 auto; background: rgba(255, 255, 255, 0.8); }
input, textarea, select { padding: 15px; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; width: 100%; font-size: 16px; background: rgba(255,255,255,0.9); outline: none; transition: border 0.3s; }
input:focus, textarea:focus, select:focus { border: 2px solid var(--accent-violet); }

/* FULL FOOTER WITH DARK GRADIENT */
footer { 
    background: var(--gradient-dark); 
    color: white; 
    padding: 70px 5% 30px; 
    margin-top: auto; 
    border-top: 5px solid var(--accent-violet);
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; margin-bottom: 40px; }
.footer-grid h3 { font-size: 20px; margin-bottom: 20px; color: #fff; position: relative; display: inline-block; }
.footer-grid h3::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 3px; background: var(--gradient-primary); border-radius: 5px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #cbd5e1; text-decoration: none; transition: color 0.3s; display: flex; align-items: center; }
.footer-links a::before { content: '›'; margin-right: 8px; color: var(--accent-violet); font-weight: bold; }
.footer-links a:hover { color: white; transform: translateX(5px); }
.footer-contact p { color: #cbd5e1; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; color: #94a3b8; }
