/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family:Arial, sans-serif;
    background:#f4f4f4;
    color:#111;
}

/* HERO */
.hero{
    height:390px;

    background-image:
    linear-gradient(
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.25)),
    url("background.png");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:flex-start;
    justify-content:flex-start;

    padding:40px 70px;
}

/* TOP AREA */
.top-logo{
    display:flex;
    align-items:center;
    gap:25px;
}

/* LOGO */
.logo{
    width:170px;
}

/* LOGO TEXT */
.logo-text h1{
    font-size:72px;
    color:#0b2b5c;
    font-weight:bold;
}

.logo-text h2{
    font-size:42px;
    color:#0b2b5c;
    font-weight:bold;
}

.logo-text p{
    font-size:28px;
    color:#0b2b5c;
    margin-top:10px;
}

/* NAVBAR */
.navbar{
    background:#082a59;
    padding:20px 70px;
}

/* NAV LINKS */
.nav-links{
    display:flex;
    list-style:none;
    gap:70px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:30px;
    font-weight:bold;
}

.nav-links a:hover{
    color:#ffd700;
}

.active{
    border-bottom:4px solid white;
    padding-bottom:8px;
}

/* MAIN CONTENT */
.main-content{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;

    padding:50px 70px;
}

/* LEFT SECTION */
.left-section h2{
    font-size:60px;
    color:#082a59;
    margin-bottom:25px;
}

.left-section p{
    font-size:28px;
    line-height:1.7;
    margin-bottom:30px;
}

.left-section h3{
    font-size:45px;
    color:#082a59;
    margin-bottom:25px;
}

.services{
    list-style:none;
}

.services li{
    margin-bottom:30px;
    font-size:26px;
    line-height:1.6;
}

/* SLIDESHOW */
.slideshow-container{
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 0 10px rgba(0,0,0,0.15);
}

.slide{
    display:none;
}

.slide img{
    width:100%;
    border-radius:12px;
    height:650px;
    object-fit:cover;
}

/* THUMBNAILS */
.thumbnails{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.thumbnails img{
    width:16%;
    height:120px;
    object-fit:cover;
    border-radius:8px;
}

/* FOOTER */
.footer{
    background:#082a59;
    color:white;
    text-align:center;
    padding:35px;
}

.footer p{
    font-size:26px;
    margin-bottom:15px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    font-size:24px;
}

.footer-links a:hover{
    color:#ffd700;
}

/* FADE EFFECT */
.fade{
    animation:fade 1s;
}

@keyframes fade{
    from{
        opacity:0.4;
    }

    to{
        opacity:1;
    }
}

/* RESPONSIVE */
@media(max-width:1000px){

    .main-content{
        grid-template-columns:1fr;
    }

    .logo-text h1{
        font-size:40px;
    }

    .logo-text h2{
        font-size:24px;
    }

    .logo{
        width:100px;
    }

    .nav-links{
        gap:25px;
        flex-wrap:wrap;
    }

    .nav-links a{
        font-size:18px;
    }

    .left-section h2{
        font-size:35px;
    }

    .left-section p,
    .services li{
        font-size:18px;
    }

    .slide img{
        height:350px;
    }

}
/* ===== INTRO LIST CLEAN ===== */
.intro-section h2{
    font-size:60px;
    color:#082a59;
    margin-bottom:10px;
}

.intro-section h3{
    font-size:35px;
    margin-bottom:25px;
    color:#0b2b5c;
}

.services-list{
    list-style:none;
}

.services-list li{
    margin-bottom:25px;
}

.services-list h4{
    font-size:28px;
    color:#082a59;
    margin-bottom:8px;
}

.services-list p{
    font-size:20px;
    line-height:1.6;
}

/* ===== IMAGE GALLERY GRID ===== */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
    margin-top:20px;
}

.gallery-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    transition:0.3s ease;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

/* ===== VIDEO GRID (5 VIDEOS) ===== */
.video-grid video{
    width:100%;
    height:220px;
    border-radius:12px;
    object-fit:cover;
    background:black;
}
/* ===== CONTACT PAGE LAYOUT ===== */
.contact-main{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:60px 70px;
    background:#f4f4f4;
}

/* ===== CONTACT CARD ===== */
.contact-card{
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.contact-card h2{
    font-size:40px;
    color:#082a59;
    margin-bottom:25px;
}

.contact-card p{
    font-size:20px;
    margin-bottom:15px;
}

.contact-card a{
    color:#082a59;
    font-weight:bold;
    text-decoration:none;
}

.contact-card a:hover{
    text-decoration:underline;
}

.contact-note{
    margin-top:25px;
    padding:15px;
    background:#e8f0ff;
    border-left:5px solid #082a59;
    font-size:18px;
}

/* ===== FORM CARD ===== */
.form-card{
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.form-card h2{
    font-size:40px;
    color:#082a59;
    margin-bottom:25px;
}

/* ===== FORM ELEMENTS ===== */
.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    font-size:18px;
    margin-bottom:8px;
    font-weight:bold;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

/* RADIO BUTTONS */
.radio-group{
    display:flex;
    gap:20px;
}

/* SUBMIT BUTTON */
button{
    width:100%;
    padding:15px;
    background:#082a59;
    color:white;
    border:none;
    font-size:20px;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#0b3a7a;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1000px){
    .contact-main{
        grid-template-columns:1fr;
        padding:30px;
    }
}