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

/* BODY */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}

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

/* HEADER */
header {
    background: #0d1b2a;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h2 {
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #fca311;
}

/* HERO SECTION */
.hero {
    min-height: 90vh;
    background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('../images/hero.png') center/cover no-repeat;

    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    margin-bottom: 30px;
    max-width: 650px;
    font-size: 18px;
}

.hero-badge {
    display: inline-block;
    background: rgba(252,163,17,0.15);
    color: #fca311;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
}

/* BUTTONS */
.btn {
    background: #fca311;
    color: #000;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

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

.secondary-btn {
    background: #14213d;
    color: white;
}

/* GENERAL SECTION */
section {
    padding: 80px 0;
}

h2 {
    margin-bottom: 20px;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #fca311;
    font-weight: bold;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 40px;
}

/* FEATURES */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 50px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

/* SERVICES */
.service-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card,
.service-box {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover,
.service-box:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-box h3 {
    margin-bottom: 15px;
    color: #0d1b2a;
}

.service-box p {
    margin-bottom: 20px;
}

.service-box ul {
    list-style: none;
}

.service-box ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 22px;
}

.service-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fca311;
    font-weight: bold;
}

/* STATS */
.stats-section {
    background: #0d1b2a;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-box h2 {
    font-size: 50px;
    color: #fca311;
}

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-btn {
    text-align: center;
    margin-top: 40px;
}

/* PAGE BANNER */
.page-banner {
    background: #14213d;
    color: white;
    text-align: center;
    padding: 100px 0;
}

/* SERVICES HERO */
.services-hero {
    background:
    linear-gradient(rgba(13,27,42,0.85), rgba(13,27,42,0.85)),
    url('../images/services-bg.jpg') center/cover no-repeat;

    color: white;
    text-align: center;
    padding: 140px 0;
}

.services-hero h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

.services-hero p {
    max-width: 800px;
    margin: auto;
}

/* WHY CHOOSE US */
.why-choose-us {
    background: #f8f9fb;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.choose-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* CTA */
.cta-section,
.services-cta {
    background:
    linear-gradient(rgba(13,27,42,0.9), rgba(13,27,42,0.9)),
    url('../images/cta-bg.jpg') center/cover no-repeat;

    color: white;
    text-align: center;
}

.cta-section p,
.services-cta p {
    max-width: 700px;
    margin: 20px auto;
}

/* CONTACT */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact-form button {
    background: #fca311;
    border: none;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
}

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

/* MOBILE */
@media(max-width: 768px) {

    .nav-container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        text-align: center;
        padding: 120px 0;
    }

    .hero-content h1,
    .services-hero h1 {
        font-size: 38px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

.hero {
    .service-icon {
        font-size: 45px;
        margin-bottom: 20px;
    }
    
    .about-image img {
        width: 100%;
        border-radius: 12px;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-title span {
        color: #fca311;
        font-weight: bold;
        letter-spacing: 1px;
    }
    
    .stats-section {
        background: #0d1b2a;
        color: white;
        text-align: center;
    }
    
    .stat-box h2 {
        font-size: 50px;
        color: #fca311;
    }
    
    .portfolio-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
    }
    
    .portfolio-content {
        padding-top: 20px;
    }
    
    .portfolio-btn {
        text-align: center;
        margin-top: 40px;
    }
    
    .cta-section {
        background: linear-gradient(rgba(13,27,42,0.9), rgba(13,27,42,0.9)),
        url('../images/cta-bg.jpg') center/cover no-repeat;
    
        color: white;
        text-align: center;
    }
    
    .cta-section p {
        max-width: 700px;
        margin: 20px auto;
    }
    
    @media(max-width: 768px) {
    
        .hero {
            height: auto;
            padding: 120px 0;
        }
    
        .hero-content {
            text-align: center;
        }
    
        .hero-buttons {
            justify-content: center;
            flex-wrap: wrap;
        }
    
        .hero-content h1 {
            font-size: 40px;
        }
    }
}

/* PORTFOLIO GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD */
.portfolio-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.portfolio-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.portfolio-content {
    padding: 20px;
}

.portfolio-content h3 {
    margin-bottom: 10px;
    color: #0d1b2a;
}

.portfolio-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* LINK BUTTON */
.portfolio-link {
    display: inline-block;
    padding: 10px 15px;
    background: #fca311;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.portfolio-link:hover {
    background: #e38f00;
}

/* MOBILE */
@media(max-width: 768px) {
    .portfolio-image img {
        height: 200px;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-content h2 {
    margin-bottom: 15px;
    color: #0d1b2a;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.mission-vision {
    background: #f8f9fb;
}

/* CONTACT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

/* CONTACT INFO */
.contact-info h2 {
    margin-bottom: 15px;
    color: #0d1b2a;
}

.contact-card {
    background: white;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-card h3 {
    margin-bottom: 10px;
    color: #0d1b2a;
}

.contact-card a {
    color: #0d1b2a;
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    color: #fca311;
}

/* FORM BOX */
.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form-box h2 {
    margin-bottom: 20px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.contact-form button {
    width: 100%;
    background: #fca311;
    border: none;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #e38f00;
}

/* MOBILE */
@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* TEAM GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* TEAM CARD */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* CONTENT */
.team-content {
    padding: 20px;
}

.team-content h3 {
    margin-bottom: 5px;
    color: #0d1b2a;
}

.team-content h4 {
    color: #fca311;
    font-size: 14px;
    margin-bottom: 10px;
}

.team-content p {
    font-size: 14px;
    line-height: 1.6;
}