/* ------------------------------
   GLOBAL STYLES
------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #f7f7f7;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ------------------------------
   HEADER & NAVBAR
------------------------------ */
header {
    background: #111;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Navigation links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ca8a04;
}

.cta-btn {
    padding: 8px 16px;
    background: #ca8a04;
    color: #111 !important;
    border-radius: 4px;
}

.cta-btn:hover {
    background: #ca8a04;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.about-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7)),
        url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 1rem;
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.about-content p {
    font-size: 1.2rem;
    color: #fff;
}

/* ------------------------------
   ABOUT SECTION
------------------------------ */
.about-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    max-width: 800px;
    margin: 10px auto 40px;
    font-size: 1.1rem;
    color: #555;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-text h3 {
    font-size: 1.4rem;
    margin: 15px 0 5px;
}

.about-text p {
    margin-bottom: 15px;
    color: #e8e8e8;
}

.about-text ul {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

.about-text ul li {
    margin: 8px 0;
    font-size: 1rem;
}

/* ------------------------------
   INFO BANNER
------------------------------ */
.info-banner {
    background: #ca8a04;
    padding: 40px 0;
    text-align: center;
}

.info-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.info-item h3 {
    font-size: 2rem;
    font-weight: bold;
}

.info-item p {
    font-size: 1rem;
}

/* ------------------------------
   WHY CHOOSE US (FEATURE CARDS)
------------------------------ */
.why-choose {
    padding: 60px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    color: #ca8a04;
    margin-bottom: 15px;
}

/* ------------------------------
   FOOTER
------------------------------ */
footer {
    background: #111;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------ */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #111;
        width: 200px;
        flex-direction: column;
        padding: 15px;
        gap: 15px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        color: #fff;
    }

    .info-grid {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content h1 {
        font-size: 2rem;
    }
}
