/* MWFM Facilities Management */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#222;
    background:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HEADER
=========================== */

header{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(15,47,87,.95);
    backdrop-filter:blur(10px);
    z-index:1000;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    height: 85px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#4aa3ff;
}

.phone{
    background:#2e75c7;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.phone:hover{
    background:#1d5ea8;
}

/* ===========================
   HERO
=========================== */
 
.hero{
    height:100vh;
    background:url("../images/hero.jpg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(10,35,70,.70);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    text-align:center;
    width:90%;
    max-width:900px;
}

.hero-content h1{
    font-size:54px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-content p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:40px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{

    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    transition:.3s;
    font-weight:700;
}

.primary-btn{
    background:#2e75c7;
    color:white;
}

.primary-btn:hover{
    transform:translateY(-3px);
}

.secondary-btn{
    border:2px solid white;
    color:white;
}

.secondary-btn:hover{
    background:white;
    color:#0f2f57;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:900px){

nav{
display:none;
}

.phone{
display:none;
}

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:18px;
}

.logo{
height:55px;
}

}
/* ===========================
   HOMEPAGE SECTIONS
=========================== */


.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#0f2f57;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:18px;
}


/* ABOUT */

.about-section{
    padding:90px 0;
    background:white;
}

.about-content{
    max-width:850px;
    margin:auto;
    text-align:center;
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.about-content p{
    margin-bottom:20px;
}


/* SERVICES */

.services-section{
    padding:90px 0;
    background:#f4f7fb;
}


.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}


.service-card{

    background:white;
    padding:35px 25px;
    border-radius:12px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    transition:.3s;

    border-top:4px solid #2e75c7;

}


.service-card:hover{

    transform:translateY(-8px);

}


.service-card h3{

    color:#0f2f57;
    margin-bottom:15px;
    font-size:22px;

}


.service-card p{

    color:#666;
    line-height:1.7;

}


/* WHY SECTION */


.why-section{

    padding:90px 0;
    background:#0f2f57;
    color:white;

}


.why-section .section-title h2{

    color:white;

}


.why-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    gap:20px;

}


.why-grid h3{

    font-size:48px;
    margin-bottom:10px;
    color:#4aa3ff;

}


.why-grid p{

    font-size:18px;

}


/* CTA */


.cta-section{

    padding:80px 0;
    background:#2e75c7;
    text-align:center;
    color:white;

}


.cta-section h2{

    font-size:36px;
    margin-bottom:15px;

}


.cta-section p{

    font-size:20px;
    margin-bottom:30px;

}


.cta-section a{

    display:inline-block;
    background:white;
    color:#0f2f57;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

}


/* MOBILE */


@media(max-width:900px){


.service-grid{

grid-template-columns:1fr;

}


.why-grid{

grid-template-columns:repeat(2,1fr);

}


.section-title h2{

font-size:32px;

}


}
.hero-content{
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp{

from{
    opacity:0;
    transform:translateY(30px);
}

to{
    opacity:1;
    transform:translateY(0);
}

}
/* TRUST BAR */

.trust-bar{
    background:#ffffff;
    padding:50px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.trust-grid h3{
    font-size:32px;
    color:#0f2f57;
    margin-bottom:8px;
}

.trust-grid p{
    color:#666;
    font-weight:600;
}


@media(max-width:900px){

.trust-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

}
/* ===========================
   TRUST BAR
=========================== */

.trust-bar{
    background:#ffffff;
    padding:50px 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    gap:30px;
}

.trust-grid h3{
    font-size:32px;
    color:#0f2f57;
    margin-bottom:10px;
    font-weight:800;
}

.trust-grid p{
    color:#666;
    font-weight:600;
}


/* MOBILE */

@media(max-width:900px){

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .trust-grid{
        grid-template-columns:1fr;
    }

}
/* ===========================
   ABOUT SECTION
=========================== */

.about-grid{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
    align-items:center;

}

.about-text{

    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;

}

.about-box{

    background:#0f2f57;
    color:white;

    padding:40px;

    border-radius:15px;

}

.about-box h3{

    margin-bottom:25px;
    font-size:26px;

}

.about-box ul{

    list-style:none;

}

.about-box li{

    margin-bottom:18px;
    font-size:17px;

}

@media(max-width:900px){

.about-grid{

grid-template-columns:1fr;

}

}
.service-icon{
    font-size:48px;
    margin-bottom:20px;
}

.service-card{
    text-align:center;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}
/* ===========================
   FOOTER
=========================== */

.footer{
    background:#081a31;
    color:#fff;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    height:70px;
    margin-bottom:20px;
}

.footer h3{
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer li{
    margin-bottom:12px;
    color:#d8d8d8;
}

.footer p{
    color:#d8d8d8;
    line-height:1.8;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:40px;
    padding-top:20px;
    color:#bbb;
}

@media(max-width:900px){

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

}
.service-icon{
    font-size:48px;
    color:#2e75c7;
    margin-bottom:20px;
}
/* ===========================
   INNER PAGES
=========================== */


.page-hero{

height:55vh;
background:url("../images/hero.jpg") center/cover;
display:flex;
align-items:center;
justify-content:center;
position:relative;

}


.page-title{

position:relative;
z-index:2;
color:white;
text-align:center;

}


.page-title h1{

font-size:55px;
margin-bottom:15px;

}


.page-title p{

font-size:22px;

}


.about-page{

padding:90px 0;

}


.about-page h2{

font-size:36px;
color:#0f2f57;
margin-bottom:20px;
margin-top:40px;

}


.about-page p{

font-size:18px;
line-height:1.8;
color:#555;
max-width:900px;

}
/* ===========================
   SERVICES PAGE
=========================== */


.services-page{

padding:90px 0;

}


.services-page h2{

font-size:36px;
color:#0f2f57;
margin-bottom:20px;

}


.services-page > .container > p{

font-size:18px;
color:#555;
line-height:1.8;
margin-bottom:50px;

}


.service-detail-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}


.service-detail{

background:#f4f7fb;
padding:35px;
border-radius:12px;
border-top:4px solid #2e75c7;

}


.service-detail h3{

color:#0f2f57;
margin-bottom:15px;
font-size:22px;

}


.service-detail p{

color:#666;
line-height:1.7;

}


@media(max-width:900px){

.service-detail-grid{

grid-template-columns:1fr;

}

}
/* ===========================
   CONTACT PAGE
=========================== */


.contact-section{

padding:90px 0;

}


.contact-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;

}


.contact-info h2,
.contact-form h2{

color:#0f2f57;
font-size:36px;
margin-bottom:25px;

}


.contact-info p{

font-size:18px;
line-height:1.8;
color:#555;
margin-bottom:25px;

}


.contact-info a{

color:#2e75c7;
text-decoration:none;
font-weight:600;

}


.contact-form form{

display:flex;
flex-direction:column;
gap:15px;

}


.contact-form input,
.contact-form select,
.contact-form textarea{

padding:15px;
border:1px solid #ddd;
border-radius:8px;
font-family:inherit;
font-size:16px;

}


.contact-form textarea{

height:140px;
resize:none;

}


.contact-form button{

background:#2e75c7;
color:white;
border:none;
padding:16px;
border-radius:50px;
font-size:16px;
font-weight:700;
cursor:pointer;

}


.contact-form button:hover{

background:#0f2f57;

}


@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

}