/* Font & Global Styles */
body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    color: #334155; 
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #ffffff;
}

/* Glassmorphism Navbar */
.navbar { 
    background: rgba(255, 255, 255, 0.92) !important; 
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-link {
    font-weight: 600;
    color: #475569;
}

.nav-link:hover {
    color: #0ea5e9 !important;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at top right, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
    padding: 100px 0 80px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 12px 25px rgba(14, 165, 233, 0.4);
}

/* Features */
.feature-card {
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #e0f2fe;
    color: #0ea5e9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

/* Modern About Section Styling */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.stat-card {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.about-image-card {
    position: relative;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 2;
}

/* Contact Section & Form Styling */
.contact-section {
    background: #f8fafc;
}

.contact-info-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.contact-icon-glass {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form-card {
    border: 1px solid #e2e8f0;
}

.modern-input {
    border: 1px solid #cbd5e1;
    border-radius: 14px;
}

.modern-input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

/* Footer Styling */
.footer-dark {
    background: #090d16;
}

.footer-links a:hover {
    color: #38bdf8 !important;
    transition: color 0.2s ease;
}