/* ===================================================
   ADO MANAGEMENT SERVICES
   STYLE.CSS
=================================================== */

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#1d2939;
    background:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* Container */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   COLORS
=========================== */

:root{

--primary:#0A4C96;

--secondary:#00AEEF;

--dark:#051B37;

--text:#475467;

--light:#F8FAFC;

--white:#ffffff;

--shadow:0 15px 40px rgba(0,0,0,.08);

--radius:16px;

}

/* ===========================
      HEADER
=========================== */

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.35s;

    padding:22px 0;

}

#header.scrolled{

    background:#ffffff;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    padding:15px 0;

}

/* ===========================
      NAVBAR
=========================== */

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    color:#ffffff;

    font-size:30px;

    font-weight:800;

    letter-spacing:-1px;

}

.logo span{

    color:var(--secondary);

}

#header.scrolled .logo{

    color:var(--dark);

}

.nav-links{

    display:flex;

    align-items:center;

    gap:38px;

}

.nav-links a{

    color:#ffffff;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

#header.scrolled .nav-links a{

    color:#333;

}

.nav-links a:hover{

    color:var(--secondary);

}

/* Quote Button */

.quote-btn{

    background:var(--secondary);

    color:#fff!important;

    padding:14px 30px;

    border-radius:50px;

    transition:.3s;

    font-weight:600;

}

.quote-btn:hover{

    background:var(--primary);

    transform:translateY(-3px);

}

/* ===========================
     MOBILE BUTTON
=========================== */

.menu-toggle{

    display:none;

    cursor:pointer;

}

.menu-toggle span{

    width:30px;

    height:3px;

    background:#ffffff;

    display:block;

    margin:6px 0;

    transition:.3s;

}

#header.scrolled .menu-toggle span{

    background:#111;

}

/* ===========================
        HERO
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    background:linear-gradient(
    135deg,
    #051B37 0%,
    #0A4C96 100%);

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-250px;

    right:-180px;

}

.hero::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    bottom:-120px;

    left:-120px;

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:760px;

    color:#ffffff;

    padding-top:120px;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.12);

    color:#ffffff;

    padding:12px 20px;

    border-radius:50px;

    margin-bottom:25px;

    font-size:14px;

    backdrop-filter:blur(10px);

}

.hero h1{

    font-size:64px;

    line-height:1.15;

    font-weight:700;

    margin-bottom:25px;

}

.hero p{

    font-size:19px;

    color:rgba(255,255,255,.88);

    max-width:650px;

    margin-bottom:40px;

}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:var(--secondary);

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    background:#ffffff;

    color:var(--dark);

}

.btn-light{

    border:2px solid #ffffff;

    color:#ffffff;

    padding:16px 34px;

    border-radius:50px;

    transition:.3s;

}

.btn-light:hover{

    background:#ffffff;

    color:#051B37;
/*====================================================
                SECTION TITLES
====================================================*/

section{
    padding:100px 0;
}

.section-title{
    max-width:700px;
    margin:0 auto 70px;
    text-align:center;
}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:12px;

}

.section-title h2{

    font-size:44px;

    color:var(--dark);

    margin-bottom:18px;

    font-weight:700;

}

.section-title p{

    color:var(--text);

    font-size:17px;

}

/*====================================================
                ABOUT SECTION
====================================================*/

.about{

    background:#ffffff;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-content h2{

    font-size:42px;

    color:var(--dark);

    margin-bottom:25px;

}

.about-content p{

    color:var(--text);

    margin-bottom:20px;

    font-size:17px;

}

.about-list{

    margin-top:35px;

}

.about-list li{

    display:flex;

    align-items:center;

    margin-bottom:18px;

    font-size:16px;

}

.about-list i{

    width:42px;

    height:42px;

    background:rgba(0,174,239,.12);

    color:var(--secondary);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-right:15px;

}

.about-boxes{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.about-card{

    background:#fff;

    padding:35px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:.35s;

}

.about-card:hover{

    transform:translateY(-10px);

}

.about-card i{

    font-size:38px;

    color:var(--primary);

    margin-bottom:20px;

}

.about-card h3{

    margin-bottom:15px;

    color:var(--dark);

}

/*====================================================
                SERVICES
====================================================*/

.services{

    background:var(--light);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    padding:45px 35px;

    border-radius:18px;

    transition:.35s;

    box-shadow:var(--shadow);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:0;

    background:var(--secondary);

    transition:.4s;

}

.service-card:hover::before{

    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-icon{

    width:75px;

    height:75px;

    background:rgba(0,174,239,.12);

    color:var(--primary);

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:15px;

    color:var(--dark);

    font-size:24px;

}

.service-card p{

    color:var(--text);

    margin-bottom:25px;

}

.service-card a{

    color:var(--primary);

    font-weight:600;

}

.service-card a:hover{

    color:var(--secondary);

}

/*====================================================
                WHY US
====================================================*/

.why{

    background:#ffffff;

}

.why-wrapper{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.why-item{

    display:flex;

    gap:20px;

    padding:30px;

    background:#fff;

    border-radius:16px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.why-item:hover{

    transform:translateY(-8px);

}

.why-icon{

    min-width:65px;

    height:65px;

    border-radius:50%;

    background:rgba(10,76,150,.1);

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

}

.why-item h3{

    margin-bottom:12px;

    color:var(--dark);

}

.why-item p{

    color:var(--text);

}

/*====================================================
            RESPONSIVE
====================================================*/

@media(max-width:991px){

.services-grid{

grid-template-columns:1fr 1fr;

}

.about-wrapper{

grid-template-columns:1fr;

}

.why-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.section-title h2{

font-size:34px;

}

.services-grid{

grid-template-columns:1fr;

}

.about-boxes{

grid-template-columns:1fr;

}

.hero h1{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,
.btn-light{

width:100%;

text-align:center;

}
/*====================================================
                    FOOTER
====================================================*/

footer{

    background:#051B37;

    color:#fff;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:50px;

}

.footer-logo{

    font-size:32px;

    margin-bottom:20px;

}

.footer-logo span{

    color:#00AEEF;

}

.footer-about p{

    color:rgba(255,255,255,.75);

    line-height:1.8;

    margin-bottom:30px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#00AEEF;

}

.footer-grid h3{

    margin-bottom:25px;

    font-size:20px;

}

.footer-grid ul li{

    margin-bottom:15px;

}

.footer-grid ul li a{

    color:rgba(255,255,255,.75);

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:#00AEEF;

}

.contact-list li{

    display:flex;

    gap:12px;

    align-items:flex-start;

    color:rgba(255,255,255,.75);

}

.footer-bottom{

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;

    color:rgba(255,255,255,.6);

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

/*==============================
PAGE HERO
==============================*/

.page-hero{

padding:180px 0 120px;

background:linear-gradient(135deg,#051B37,#0A4C96);

text-align:center;

color:#fff;

}

.page-content{

max-width:800px;

margin:auto;

}

.page-content span{

display:inline-block;

padding:10px 18px;

background:rgba(255,255,255,.12);

border-radius:30px;

margin-bottom:25px;

font-weight:600;

}

.page-content h1{

font-size:58px;

line-height:1.2;

margin-bottom:25px;

}

.page-content p{

font-size:18px;

color:rgba(255,255,255,.85);

}

}