/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
    position: relative;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .logo img {
    max-height: 60px;
}
.menu ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
.menu ul li a {
    text-decoration: none;
    color: #093f6d;
    font-weight: bold;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.menu ul.show {
    display: block;
}
@media(max-width:768px) {
    .menu ul {
        display: none;
        flex-direction: column;
        background: #ffffff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 10px;
        border: 1px solid #ccc;
    }
}

/* Banner */
.banner {
    width: 100%;
}
.banner-img {
    width: 100%;
    display: block;
}

/* About + Video */
.about-video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
}
.about-us, .video {
    flex: 1 1 45%;
}
.about-us h2 {
    color: #093f6d;
}
.about-us a {
    color: #f7a708;
    text-decoration: none;
}

/* Segments */
.top-segments {
    padding: 40px 0;
}
.top-segments .section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #093f6d;
}
.segments-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.segment {
    background: #f7a708;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}
.segment h3 {
    color: #ffffff;
    margin-top: 10px;
}

/* Why Choose Us */
.why-choose-us {
    background: #093f6d;
    padding: 40px 0;
}
.why-choose-us .section-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
}
.choose-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.choose-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
}
.choose-box h3 {
    color: #093f6d;
    margin-bottom: 10px;
}

/* Get In Touch */
.get-in-touch {
    padding: 40px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.contact-box {
    background: #093f6d;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: #093f6d;
    color: #ffffff;
    padding: 40px 0;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-logo, .footer-links, .footer-contact {
    flex: 1 1 30%;
}
.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 8px;
}

/* Responsive */
@media(max-width:768px){
    .about-video-container, .segments-grid, .choose-grid, .contact-grid, .footer-container {
        grid-template-columns: 1fr !important;
    }
}
