/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
* {
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #eef2fa;
    padding: 40px;
}

/* NAVBAR WRAPPER */
.nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.navbar {
    background: #ffffff;
    width: 95%;
    max-width: 1400px;
    padding: 18px 35px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 
        0 25px 35px rgba(0,0,0,0.08),
        0 8px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
    z-index: 100;

    /* for center logo */
    position: relative;
}

.left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Hamburger menu */
.hamburger {
    width: 26px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 18px;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: #000B3C;
    border-radius: 4px;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #000B3C;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Logo centered + resized */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 45px;
    object-fit: contain;
}

/* CONTACT BUTTON */
.contact-btn {
    background: #000B3C;
    color: white;
    padding: 10px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;

    display: flex;
    align-items: center;
    gap: 6px;

    transition: background 0.25s ease;
}

/* Arrow icon inside button */
.contact-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    background: #00145e;
}

/* Arrow move on hover */
.contact-btn:hover .arrow {
    transform: translateX(6px);
}

/* RESPONSIVE NAV */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

/* HERO SECTION */
.hero-section {
    width: 100%;
    padding: 70px 60px;
    background: linear-gradient(to bottom, #eef3ff, #dee7f7);
}

/* HERO TEXT */
.hero-text h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 300;
    color: #003087;
}

.hero-text span {
    font-weight: 800;
}

/* SLIDER CONTAINER */
.slider-container {
    background: #fff;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 35px rgba(0,0,0,0.08),
        0 8px 15px rgba(0,0,0,0.05);
}

/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    height: 430px;
    display: flex;
    overflow: hidden;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s ease;
    opacity: 0;
}

.slide.active {
    opacity: 1;
}

/* VIDEO STYLE */
.video-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MUTE BUTTON */
.mute-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background: black;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

/* TITLE OVERLAY */
.video-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

/* SLIDER CONTROLS */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 20px;
}

/* NEW CLASS — corrected slider arrows */
.slider-arrow {
    background: #fff;
    border: 1px solid #d5d5d5;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.slider-arrow:hover {
    background: #f3f3f3;
}

/* DOTS */
.dots {
    display: flex;
    gap: 10px;
}

.dots div {
    width: 10px;
    height: 10px;
    background: #cbd3e1;
    border-radius: 50%;
    cursor: pointer;
}

.dots div.active {
    background: #003087;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 40px;
    }

    .slider {
        height: 280px;
    }
}
