@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0e3655;
    --primary-light: #1a5276;
    --accent: #00ca72;
    --accent-dark: #00a85d;
    --text-main: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.85);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Header Enhancements */
.header_area {
    background: var(--glass) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 10px 0;
}

.header_area.sticker {
    box-shadow: var(--shadow);
}

.menu ul li a {
    font-weight: 500;
    color: var(--primary) !important;
    transition: all 0.3s ease;
    padding: 10px 15px !important;
    border-radius: 8px;
}

.menu ul li a:hover {
    color: var(--accent) !important;
    background: rgba(0, 202, 114, 0.05);
}

/* Hero Section / Slider area */
.slider_area.home_ss {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%), 
                url('../img/slider/home1_sl.jpg') no-repeat center center;
    background-blend-mode: overlay;
    background-size: cover;
    padding: 120px 0 100px;
    color: white;
    border-radius: 0 0 50px 50px;
}

.slider_content_inner h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out;
}

.slider_content_inner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out;
}

.active_btn {
    background: var(--accent) !important;
    border: none !important;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 5px 15px rgba(0, 202, 114, 0.3) !important;
}

.active_btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 202, 114, 0.4) !important;
}

/* Glass Registration Form */
.application-form {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInRight 0.8s ease-out;
}

.app-title h2 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.app-field {
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    margin-bottom: 5px !important;
    transition: all 0.3s ease;
}

.app-field:focus-within {
    border-color: var(--accent) !important;
    background: white !important;
}

.app-field input {
    background: transparent !important;
    padding: 15px 45px 15px 20px !important;
    color: var(--text-main) !important;
    font-weight: 500;
}

.icon-style i {
    color: var(--primary) !important;
}

#signip-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary) !important;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#signip-submit:hover {
    background: var(--primary-light) !important;
    transform: scale(1.02);
}

/* Features Section */
.feature_area {
    padding: 80px 0;
    margin-top: -50px;
}

.single_feature {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.single_feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.feature_icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 202, 114, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.single_feature:hover .feature_icon {
    background: var(--accent);
    color: white;
}

.feature_text h3 a {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 20px;
}

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

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

/* Pricing Cards - Let's make them pop */
.single_pricing {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.single_pricing.active {
    transform: scale(1.05);
    border: 2px solid var(--accent);
}

.pricing_content {
    padding: 40px;
}

.price span b {
    font-size: 28px;
    color: var(--primary);
}

/* General Layout Tweaks */
.section_title h2 {
    font-weight: 700;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.section_title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}
