

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#ffffff;

    color:#333;

    line-height:1.7;

}


/* ==========================================================
   COLORS

   Dark Blue     #003B73

   Ocean Blue    #005B96

   Light Blue    #0077B6

   Accent        #00A8E8

========================================================== */



/* ==========================================================
   GLOBAL
========================================================== */

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

.section{

    padding:100px 0;

}

.light{

    background:#f5f8fa;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:38px;

    color:#003B73;

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

}



/* ==========================================================
   MAINTENANCE BANNER
========================================================== */

.maintenance-banner{

    background:#FFD54F;

    color:#000;

    text-align:center;

    padding:12px;

    font-weight:bold;

}



/* ==========================================================
   HEADER
========================================================== */

header{

    position:sticky;

    top:0;

    z-index:999;

    background:white;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:90px;

}



/* ==========================================================
   LOGO
========================================================== */

.logo img{

    height:80px;

    width:auto;

}



/* ==========================================================
   NAVIGATION
========================================================== */

nav ul{

    list-style:none;

    display:flex;

    gap:35px;

}

nav a{

    text-decoration:none;

    color:#003B73;

    font-weight:bold;

    transition:.3s;

}

nav a:hover{

    color:#00A8E8;

}



/* ==========================================================
   HERO
========================================================== */

.hero{

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    position:relative;

    background:

        linear-gradient(

        rgba(0,40,80,.65),

        rgba(0,40,80,.65)

        ),

        url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

}



/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content{

    width:90%;

    max-width:800px;

}

.hero h1{

    font-size:60px;

    margin-bottom:20px;

}

.hero p{

    font-size:22px;

    margin-bottom:40px;

}



/* ==========================================================
   BUTTON
========================================================== */

.btn{

    display:inline-block;

    background:#0077B6;

    color:white;

    padding:16px 38px;

    border-radius:5px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.btn:hover{

    background:#005B96;

}



/* ==========================================================
   ABOUT
========================================================== */

.about-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:12px;

}



/* ==========================================================
   CARDS
========================================================== */

.cards{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.card{

    background:white;

    padding:35px;

    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    color:#003B73;

    margin-bottom:15px;

}



/* ==========================================================
   CONTACT
========================================================== */

.contact-box{

    max-width:700px;

    margin:auto;

    background:white;

    padding:40px;

    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.contact-box p{

    margin-bottom:20px;

}



/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:#003B73;

    color:white;

    text-align:center;

    padding:35px;

}



/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:900px){

header .container{

    flex-direction:column;

    padding:20px;

}

nav ul{

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

}

.hero h1{

    font-size:42px;

}

.hero p{

    font-size:18px;

}

.about-content{

    grid-template-columns:1fr;

}

.section{

    padding:70px 0;

}

}