* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.logo {
    height: 45px;
}

/* Nav Links */
nav a {
    color: #444;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #ff7b00;
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to right, #ffffff, #f5f7fa);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #111;
}

.hero p {
    color: #666;
    margin-bottom: 25px;
}

/* Buttons */
.btn {
    padding: 12px 25px;
    margin: 5px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 500;
}

/* Primary Button */
.primary {
    background: linear-gradient(45deg, #ff7b00, #005eff);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Secondary Button */
.secondary {
    border: 1px solid #ddd;
    color: #333;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Services */
.services {
    padding: 60px 30px;
    text-align: center;
    background: #fafafa;
}

.services h2 {
    margin-bottom: 40px;
    color: #111;
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    padding: 20px;
    width: 250px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
    border-color: #ff7b00;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #eee;
    color: #666;
}

/* Floating Call Button */
.call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff7b00, #005eff);
    color: #fff;
    font-size: 22px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    nav {
        display: none;
    }
}

.hero {
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

/* Apply Page */
.apply-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(120deg, #fdfbfb, #ebedee);
}

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.form-container h2 {
    margin-bottom: 10px;
}

.form-container p {
    margin-bottom: 20px;
    color: #666;
}

/* Inputs */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #ff7b00;
}

/* Active Nav */
nav a.active {
    color: #ff7b00;
    font-weight: 600;
}
