/* Import Google Fonts */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

/* Hero Section */
.hero {
    background: url('https://reanasingh.com/office-865091_1280.jpg') center center/cover no-repeat;
    color: #fff;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1rem;
    color: #fff;
    background-color: #007acc;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #005a99;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}


/* About Section */
.about, .why, .services, .contact {
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about h2, .why h2, .services h2, .contact h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #007acc;
}

.about p {
    font-size: 1rem;
    line-height: 1.6;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}


/* Services Section */
.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    font-size: 1rem;
    padding: 10px 0;
    font-weight: 400;
}

/* Why Section */
.why ul {
    list-style: none;
    padding: 0;
}

.why li {
    font-size: 1rem;
    padding: 10px 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about h2, .services h2, .contact h2 {
        font-size: 1.8rem;
    }
}

/* Footer Styling */
.footer {
    background-color: #000;  /* Black background */
    color: #fff;  /* White text */
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

.footer a {
    color: #fff;  /* White text for links */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;  /* Underline on hover */
}