* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== FIXED CTA ===== */
.fixed-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
}

.fixed-cta a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
}

.fixed-cta .call {
    background: #f37021;
}

.fixed-cta .whatsapp {
    background: #25D366;
}

/* ===== HEADER ===== */
.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    height: 48px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.nav-links a:hover {
    color: #f37021;
}

.nav-icon {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: url("banner.png") center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 700px;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #f37021;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        width: 220px;
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-icon {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }
}
/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: #fafafa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
}

/* ===== DIRECTORS ===== */
.directors {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.director-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.director-card {
    text-align: center;
    max-width: 260px;
}

.director-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

.director-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.director-card p {
    color: #777;
    font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== PRODUCTS ===== */
.products {
    padding: 80px 0;
    background: #fafafa;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    color: #555;
    font-size: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 20px;
    margin: 20px;
}

.product-card p {
    font-size: 15px;
    color: #555;
    margin: 0 20px 20px;
    flex-grow: 1;
}

.product-btn {
    margin: 0 20px 20px;
    text-align: center;
    padding: 12px;
    background: #f37021;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

.product-btn:hover {
    background: #d85f18;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== INFRASTRUCTURE ===== */
.infrastructure {
    padding: 80px 0;
    background: #ffffff;
}

.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.infra-image img {
    width: 100%;
    border-radius: 6px;
}

.infra-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.infra-content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.infra-points {
    list-style: none;
    margin-bottom: 30px;
}

.infra-points li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #333;
}

.infra-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f37021;
    font-weight: bold;
}

.infra-cta {
    margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .infra-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 80px 0;
    background: #fafafa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.why-card i {
    font-size: 36px;
    color: #f37021;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #444;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 25px;
}

.contact-info li {
    margin-bottom: 10px;
    color: #333;
}

.contact-info a {
    color: #f37021;
    text-decoration: none;
    font-weight: 500;
}

.contact-cta {
    display: flex;
    gap: 15px;
}

.btn-outline-dark {
    border: 2px solid #f37021;
    color: #f37021;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

.contact-image img {
    width: 100%;
    border-radius: 6px;
}

/* ===== FOOTER ===== */
.footer {
    background: #162a55;
    color: #cfd6e4;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 50px;
    padding: 60px 0;
}

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-item {
    margin-bottom: 12px;
}

.footer-item i {
    margin-right: 10px;
    color: #f37021;
}

.footer a {
    color: #cfd6e4;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

/* LINKS */
.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* NEWSLETTER */
.footer-newsletter h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-newsletter form {
    display: flex;
    margin-bottom: 20px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.footer-newsletter button {
    padding: 10px 18px;
    background: #8dc63f;
    border: none;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

.footer-social a {
    margin-right: 15px;
    font-size: 18px;
    color: #ffffff;
}

/* BOTTOM */
.footer-bottom {
    background: #0f2044;
    padding: 15px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.powered {
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
