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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-heading {
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-body {
    padding: 2rem;
    text-align: center;
}

/* Icons */
[data-feather] {
    width: 24px;
    height: 24px;
    stroke: #007bff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Contact Section */
.contact-info {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

.hero {
    /* Set the background image */
    background-image: url('https://samvinas.com/static/images/banner.png'); 

    /* Control how the image scales */
    background-size: cover; /* This makes the image cover the entire element, cropping if necessary */

    /* Position the image */
    background-position: center center; /* Centers the image both horizontally and vertically */

    /* Prevent the image from repeating */
    background-repeat: no-repeat; 

    /* Optional: Add a fallback background color in case the image doesn't load */
    background-color: #f0f0f0; /* Or a color that complements your image */

    /* Optional: Add an overlay for better text readability (especially if the image is busy) */
    position: relative; /* Needed for positioning the overlay */
}

/* Optional: Overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black overlay with 40% opacity */
    z-index: 1; /* Ensure the overlay is behind the text */
}

/* Ensure hero text is above the overlay */
.hero .container {
    position: relative;
    z-index: 2; 
}
