* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Logo */

.logo {
  width: 200px;   /* increase or decrease as needed */
  height: auto;   /* keeps proportions */
}

/* NAV */
/*    background: linear-gradient(to right, #ffffff 0%, #ffffff 65%, #0b2a4a 100%); */
header {
	background-color: #ffffff;    
	color: #0b2a4a;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 150px;
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/*.nav img {
    height: 50px;*/


.nav a {
    color: #1e5bb8;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.nav a:hover {
    color: #0b2a4a;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(11,42,74,0.8), rgba(30,91,184,0.8)),
                url('../images/hero-bg.jpg') center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero2 {
    background: linear-gradient(rgba(11,42,74,0.9), rgba(193,18,31,0.85)),
                url('../images/office.jpg') center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero2 h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.btn {
    background: white;
    color: #0b2a4a;
    padding: 12px 24px;
    margin: 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #1e5bb8;
    color: white;
}

.btnlink {
    background: #0b2a4a;
    color: white;
    padding: 12px 24px;
    margin: 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btnlink:hover {
    background: #1e5bb8;
    color: white;
}


/* SECTIONS */
.section {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #e0e3e6;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.image-section img {
    width: 100%;
    border-radius: 10px;
}

/* FOOTER */

footer {
  background-color: #ffffff;
  color: #0b2a4a;
  padding: 20px 0;
  text-align: center;
}


/*footer {
    background: #0b2a4a;
    color: white;
    text-align: center;
    padding: 25px;
}*/

/* ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .nav {
        flex-direction: column;
    }
}