/* =================================================
HERO
==================================================*/

.hero{
    width:100%;
    height:auto;
    overflow:hidden;
}

.hero img{
    width:100%;
    height:auto;
    object-fit:cover;
    display:block;
}

/*==================================================
HOW WE WORK
==================================================*/

.how-we-work{

width:100;

max-width:none;

margin:60px 0;

padding:60px;

background:#ffffff;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.section-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:#E8F4FF;

    color:#0078D4;

    font-weight:600;

    margin-bottom:18px;

}

.how-we-work h2{

    font-size:24px;

    color:#0F172A;

    margin-bottom:20px;

}

.section-description{

    color:#1E293B;

    font-size:20px;

    max-width:720px;

    margin-bottom:60px;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-card{

    background:#F8FAFC;

    border:1px solid #E2E8F0;

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

.process-card:hover{

    transform:translateY(-8px);

    border-color:#0078D4;

    box-shadow:0 15px 35px rgba(0,120,212,.15);

}

.process-number{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#0078D4;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

}

.process-card h3{

    color:#0F172A;

    margin-bottom:15px;

}

.process-card p{

    color:#1E293B;

    line-height:1.8;

}

@media(max-width:992px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

.how-we-work h2{

font-size:34px;

}

}

/*==================================================
Our Commitment
==================================================*/

.our-commitment{
width:100;

max-width:none;

margin:60px 0;

padding:60px;

background:#ffffff;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);
 
}

.commitment-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.commitment-card{
    background:#F8FAFC;
    border-radius:18px;
    padding:35px;
    text-align:center;
    border:1px solid #E2E8F0;
    transition:.3s;
}

.commitment-card:hover{
    transform:translateY(-8px);
    border-color:#0078D4;
    box-shadow:0 15px 35px rgba(0,120,212,.15);
}

.commitment-card .icon{
    font-size:48px;
    margin-bottom:20px;
}

.commitment-card h3{
    color:#0F172A;
    margin-bottom:15px;
}

.commitment-card p{
    color:#1E293B;
    line-height:1.8;
}

@media(max-width:992px){
    .commitment-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .commitment-grid{
        grid-template-columns:1fr;
    }
}

/*==================================================
CONTACT US
==================================================*/

.contact-section{
width:100;

max-width:none;

margin:60px 0;

padding:60px;

background:#ffffff;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.contact-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:30px;
    margin-top:50px;
    margin-bottom:60px;
}

.contact-card{
    background:#F8FAFC;
    border:1px solid #E2E8F0;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#0078D4;
    box-shadow:0 15px 35px rgba(0,120,212,.15);
}

.contact-icon{
    font-size:42px;
    margin-bottom:20px;
}

.contact-card h3{
    color:#0F172A;
    margin-bottom:12px;
}

.contact-card p{
    color:#1E293B;
    line-height:1.8;
}

.contact-cta{
    background:linear-gradient(135deg,#0078D4,#005A9E);
    color:#fff;
    border-radius:24px;
    padding:60px;
    text-align:center;
}

.contact-cta h3{
    font-size:36px;
    margin-bottom:20px;
}

.contact-cta p{
    font-size:18px;
    max-width:700px;
    margin:0 auto 30px;
}

.contact-button{
    display:inline-block;
    background:#fff;
    color:#0078D4;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.contact-button:hover{
    background:#E8F4FF;
}

@media(max-width:992px){
    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-cta{
        padding:40px 25px;
    }

    .contact-cta h3{
        font-size:28px;
    }
}

/*==================================================
FOOTER
==================================================*/

.mms-footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:70px 0 25px;

}

.mms-footer .container{

    max-width:1200px;

    margin:auto;

    padding:0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2.5fr 1fr 1fr 2.5fr;

    gap:50px;

}

.footer-column h3,
.footer-column h4{

    color:#FFFFFF;

    margin-bottom:20px;

}

.footer-column p{

    color:#CBD5E1;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#3B82F6;

}

.mms-footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.12);

    margin:50px 0 25px;

}

.footer-bottom{

    text-align:center;

    color:#94A3B8;

    font-size:14px;

}

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

}
.navbar.navbar-static-top{

    background:#FFFFFF !important;

    min-height:72px;

    border-bottom:1px solid #E5E7EB;

    box-shadow:0 2px 10px rgba(15,23,42,.05);

}

/*==================================================
ABOUT
==================================================*/

.section{

width:100;

max-width:none;

margin:60px 0;

padding:60px;

background:#ffffff;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.card-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

margin-top:50px;

margin-bottom:60px;

}

.card{

background:#F8FAFC;

border:1px solid #E2E8F0;

border-radius:18px;

padding:35px;

transition:.3s;

}

.card:hover{

transform:translateY(-5px);

box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.card h3{

color:#0078D4;

margin-bottom:15px;

}

.card p{

line-height:1.8;

}

.cta{

padding:80px 20px;

text-align:center;

background:linear-gradient(135deg,#0078D4,#005EA6);

color:white;

}

.cta h2{

color:white;

margin-bottom:20px;

}

.cta p{

color:white;

max-width:800px;

margin:auto;

margin-bottom:30px;

}

.btn{

display:inline-block;

padding:14px 35px;

background:white;

color:#0078D4;

border-radius:8px;

text-decoration:none;

font-weight:bold;

}

.btn:hover{

background:#f5f5f5;

}

/* =====================================================
   SERVICES PAGE
===================================================== */

.services{
width:100;

max-width:none;

margin:60px 0;

padding:60px;

background:#ffffff;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.services h2{
    font-size:36px;
    color:#0F172A;
    margin-bottom:20px;
}

.services>div>p{
    font-size:18px;
    color:#475569;
    line-height:1.8;
    margin-bottom:40px;
}

/* =====================================================
   SERVICE CARD
===================================================== */

.service-card{

    background:#ffffff;

    border-radius:16px;

    padding:30px;
   
    margin-bottom:25px;
    
    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(0,0,0,.15);

}

.service-card h3{

    color:#0078D4;

    font-size:24px;

    margin-bottom:15px;

}

.service-card p{

    color:#475569;

    line-height:1.8;

    font-size:16px;

}

/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-us{

width:100;

max-width:none;

margin:60px 0;

padding:60px;

background:#ffffff;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.why-us h2{

    color:#0F172A;

    margin-bottom:30px;

    font-size:32px;

}

.why-us ul{

    background:#ffffff;

    border-radius:16px;

    padding:35px 45px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.why-us li{

    list-style:none;

    margin-bottom:18px;

    font-size:17px;

    color:#334155;

}

/* =====================================================
   CTA
===================================================== */

.cta{

    margin-top:80px;

    padding:80px 40px;

    text-align:center;

    background:linear-gradient(135deg,#0078D4,#005EA6);

    color:#ffffff;

}

.cta h2{

    color:#ffffff;

    font-size:36px;

    margin-bottom:20px;

}

.cta p{

    max-width:850px;

    margin:auto;

    line-height:1.9;

    margin-bottom:35px;

    color:#ffffff;

}

/* =====================================================
   BUTTON
===================================================== */

.btn{

    display:inline-block;

    background:#ffffff;

    color:#0078D4;

    padding:14px 34px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn:hover{

    background:#E2E8F0;

    transform:translateY(-2px);

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:768px){

.services{

padding:0 20px;

}

.why-us{

padding:0 20px;

}

.service-card{

padding:25px;

}

.services h2{

font-size:28px;

}

.service-card h3{

font-size:22px;

}

.cta{

padding:60px 20px;

}

.cta h2{

font-size:28px;

}

}


/* =====================================================
   CONTACT PAGE
===================================================== */

.contact{

width:100;

max-width:none;

margin:60px 0;

padding:60px;

background:#ffffff;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.contact h2{

    font-size:36px;
    color:#0F172A;
    margin-bottom:20px;

}

.contact p{

    color:#475569;
    line-height:1.8;
    font-size:17px;

}

/* =====================================================
   CONTACT INFORMATION
===================================================== */

.contact-information{
width:100;

max-width:none;

margin:60px 0;

padding:60px;

background:#ffffff;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.contact-information h2{

    font-size:32px;
    color:#0F172A;
    margin-bottom:25px;

}

.contact-table{

    width:100%;
    border-collapse:collapse;
    background:#ffffff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.contact-table td{

    padding:18px 24px;
    border-bottom:1px solid #E2E8F0;
    vertical-align:top;

}

.contact-table tr:last-child td{

    border-bottom:none;

}

.contact-table td:first-child{

    width:220px;
    font-weight:700;
    color:#0F172A;

}

.contact-table a{

    color:#0078D4;
    text-decoration:none;

}

.contact-table a:hover{

    text-decoration:underline;

}

/* =====================================================
   SERVICES LIST
===================================================== */

.services-contact{
width:100;

max-width:none;

margin:60px 0;

padding:60px;

background:#ffffff;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.services-contact h2{

    font-size:32px;
    color:#0F172A;
    margin-bottom:25px;

}

.service-list{

    background:#ffffff;
    border-radius:16px;
    padding:35px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.service-list ul{

    list-style:none;
    margin:0;
    padding:0;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:18px;

}

.service-list li{

    padding:14px 20px;

    background:#F8FAFC;

    border-radius:8px;

    color:#334155;

    transition:all .3s ease;

    cursor:pointer;

}

.service-list li:hover{

    border-color:#0078D4;

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,120,212,.15);

}

/* =====================================================
   CALL TO ACTION
===================================================== */

.call-to-action{

    margin-top:80px;
    padding:80px 40px;
    background:linear-gradient(135deg,#0078D4,#005EA6);
    text-align:center;
    color:#ffffff;
}

.call-to-action h2{

    color:#ffffff;
    font-size:36px;
    margin-bottom:20px;

}

.call-to-action p{

    color:#ffffff;
    max-width:850px;
    margin:0 auto 30px;
    line-height:1.9;

}

/* =====================================================
   BUTTON
===================================================== */

.btn{

    display:inline-block;
    padding:14px 36px;
    background:#ffffff;
    color:#0078D4;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    transition:0.3s;

}

.btn:hover{

    background:#E2E8F0;
    transform:translateY(-2px);

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:768px){

.contact,
.contact-information,
.services-contact{

    padding:0 20px;

}

.contact-table td{

    display:block;
    width:100%;

}

.contact-table td:first-child{

    background:#F8FAFC;
    font-weight:700;

}

.service-list ul{

    grid-template-columns:1fr;

}

.call-to-action{

    padding:60px 20px;

}

.call-to-action h2{

    font-size:28px;

}

}