body {
    margin: 0;
    font-family: Arial;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a1f44;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo-box {
    background: #f5f5f5;
    padding: 15px 40px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.logo-box span {
    color: orange;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
}

.nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 60px;
    left: -150px;
    width: 800px;
    background: #0a1f44;
    display: none;
    padding: 30px;
    justify-content: space-between;
}

.dropdown:hover .mega-menu {
    display: flex;
}

.column h4 {
    color: orange;
}

.column a {
    display: block;
    color: white;
    margin: 8px 0;
}

/* SOCIAL */
.social a {
    color: white;
    margin: 0 8px;
    font-size: 18px;
}

/* MENU BUTTON */
.menu-toggle {
    display: none;
    color: white;
    font-size: 25px;
    margin-right: 15px;
    cursor: pointer;
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100%;
        background: #0a1f44;
        flex-direction: column;
        padding-top: 60px;
        transition: 0.4s;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .social {
        display: none;
    }

    /* MOBILE DROPDOWN */
    .mega-menu {
        position: static;
        width: 100%;
        display: none;
        flex-direction: column;
    }

    .mega-menu.active {
        display: block;
    }

    .overlay.active {
        display: block;
    }
}  

.hero {
    background: url("") center/cover no-repeat;
    padding: 80px 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10,31,68,0.85);
}

.slide {
    display: none;
    animation: slideAnim 1s ease;
}

.slide.active {
    display: block;
}

/* ANIMATION */
@keyframes slideAnim {
    from {opacity:0; transform: translateX(80px);}
    to {opacity:1; transform: translateX(0);}
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* TEXT */
.hero-text {
    width: 45%;
}

.hero-text h1 {
    font-size: 50px;
}

.hero-text span {
    color: orange;
}

.hero-text button {
    margin-top: 15px;
    padding: 12px 25px;
    background: orange;
    border-radius: 30px;
    border: none;
}

/* IMAGE SECTION */
.hero-images {
    width: 55%;
    display: flex;
}

/* IMAGE BOX */
.img-box {
    width: 50%;
    position: relative;
    overflow: hidden;
}

/* ANGLE */
.img1 {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.img2 {
    margin-left: -80px;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

/* IMAGE */
.img-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* TEXT OVER IMAGE */
.img-box h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.img-box span {
    color: orange;
}

/* DOTS */
.dots {
    text-align: center;
    margin-top: 20px;
}

.dots span {
    width: 10px;
    height: 10px;
    background: white;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.dots .active-dot {
    background: orange;
}

/* MOBILE */
@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-images {
        width: 100%;
    }

    .hero-images {
        flex-direction: column;
    }

    .img1, .img2 {
        clip-path: none;
        margin: 0;
    }

    .img-box img {
        height: 250px;
    }
}

.footer {
    font-family: Arial;
}

/* TOP SECTION */
.footer-top {
    display: flex;
    position: relative;
}

/* LEFT WHITE ANGLE */
.footer-left {
    width: 40%;
    background: #f5f5f5;
    padding: 60px;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.footer-left h2 span {
    color: orange;
}

.footer-left p {
    color: #333;
    margin-top: 15px;
}

/* RIGHT BLUE SECTION */
.footer-right {
    width: 60%;
    background: #0a1f44;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 60px 30px;
}

/* COLUMN */
.footer-col h3 {
    margin-bottom: 15px;
    color: orange;
}

.footer-col a {
    display: block;
    color: white;
    margin: 6px 0;
    text-decoration: none;
}

.footer-col a:hover {
    color: orange;
}

/* ICON TEXT */
.footer-col p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.footer-col i {
    margin-right: 10px;
    color: white; /* 👈 ICON WHITE (as you asked) */
}

/* BOTTOM */
.footer-bottom {
    background: #071833;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
}

/* SOCIAL ICONS */
.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: orange;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        clip-path: none;
        text-align: center;
    }

    .footer-right {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
}



/* RESPONSIVE FIX */
@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
    }

    /* LEFT SECTION FIX */
    .footer-left {
        width: 100%;
        clip-path: none;   /* ❌ remove angle */
        padding: 30px 20px;
        text-align: center;
    }

    /* RIGHT SECTION FIX */
    .footer-right {
        width: 100%;
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 20px;
    }

    /* ICON CENTER */
    .footer-col p {
        justify-content: center;
    }

    /* SOCIAL CENTER */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}