/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling to sections */
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

p, span, body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #444;
}

.btn {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 100;
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF5F1F;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
}

.hero-content h1 {
    font-size: clamp(1.2rem, 3vw, 3.5rem);
    color: #FF5F1F;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: clamp(1.2rem, 2vw, 3.5rem);
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: #FF5F1F;
    color: white;
    font-size: 0.8rem;
    padding: 10px 25px;
    text-decoration: none;
    border: 1px solid #FF5F1F;
    border-radius: 6px;
    font-weight: bold;
    transition: transform 0.2s, background 0.3s;
}

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

.btn-secondary{
    display: inline-block;
    background: white;
    color: #FF5F1F;
    font-size: 0.8rem;
    padding: 10px 25px;
    text-decoration: none;
    border: 1px solid lightgray;
    border-radius: 6px;
    font-weight: bold;
    transition: transform 0.2s, background 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 80px 10%;
    gap: 30px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #222;
}

/* Responsive Tablet/Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .features {
        flex-direction: column;
    }
}