/* ===========================
   EQUINOX ADVISORY STYLE.CSS
   PART 1
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:#081b33;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo h2{
    color:#d4af37;
    font-size:28px;
    font-weight:700;
    letter-spacing:1px;
}

nav ul{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#d4af37;
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    min-height:100vh;
    background:
    linear-gradient(rgba(6,20,42,.78),rgba(6,20,42,.82)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:120px 20px;
}

.hero-content{
    max-width:850px;
    z-index:2;
}

.hero h4{
    color:#d4af37;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:15px;
    font-weight:600;
}

.hero h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:800;
}

.hero p{
    font-size:18px;
    opacity:.95;
    margin-bottom:30px;
}

.hero-highlight{
    display:inline-block;
    padding:14px 28px;
    background:#d4af37;
    color:#081b33;
    font-weight:700;
    border-radius:50px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    background:#d4af37;
    color:#081b33;
    padding:14px 34px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.25);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:14px 34px;
    border-radius:40px;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#081b33;
}

.contact-box{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top:45px;
    font-size:17px;
}

.contact-box i{
    color:#d4af37;
    margin-right:8px;
}

/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    color:#081b33;
    margin-bottom:12px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.section-title.white h2{
    color:#fff;
}

/* ================= SERVICES ================= */

.services{
    padding:100px 0;
    background:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:48px;
    color:#d4af37;
    margin-bottom:20px;
}

.service-card h3{
    color:#081b33;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
}

/* ================= WHY US ================= */

.why-us{
    background:#081b33;
    padding:100px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.12);
}

.why-card i{
    font-size:45px;
    color:#d4af37;
    margin-bottom:18px;
}

.why-card h3{
    color:#fff;
    margin-bottom:10px;
}

.why-card p{
    color:#d9d9d9;
}


/* ===========================
   INDUSTRIES
=========================== */

.industries{
    padding:100px 0;
    background:#f5f7fb;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.industry{
    background:#fff;
    padding:40px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.industry:hover{
    transform:translateY(-8px);
}

.industry i{
    font-size:50px;
    color:#d4af37;
    margin-bottom:18px;
}

.industry h3{
    color:#081b33;
    font-size:22px;
}

/* ===========================
   STATS
=========================== */

.stats{
    background:#081b33;
    color:#fff;
    padding:90px 0;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:35px;
    text-align:center;
}

.stat h2{
    font-size:50px;
    color:#d4af37;
    margin-bottom:10px;
}

.stat p{
    font-size:18px;
    color:#ddd;
}

/* ===========================
   CTA
=========================== */

.cta{
    padding:100px 20px;
    background:linear-gradient(135deg,#d4af37,#c69d17);
    text-align:center;
}

.cta h2{
    font-size:42px;
    color:#081b33;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    color:#222;
    margin-bottom:35px;
    font-size:18px;
}

/* ===========================
   PAGE BANNER
=========================== */

.page-banner{
    background:#081b33;
    color:#fff;
    padding:160px 20px 80px;
    text-align:center;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:15px;
}

.page-banner p{
    max-width:700px;
    margin:auto;
    color:#ddd;
}

/* ===========================
   ABOUT PAGE
=========================== */

.about{
    padding:90px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.about h2{
    color:#081b33;
    margin-bottom:20px;
}

.about p{
    color:#555;
    margin-bottom:20px;
}

.about ul{
    padding-left:20px;
}

.about ul li{
    margin-bottom:10px;
}

/* ===========================
   PROCESS
=========================== */

.process{
    background:#fff;
    padding:90px 0;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.process-card{
    background:#f5f7fb;
    padding:35px;
    border-radius:15px;
    text-align:center;
}

.process-card span{
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#d4af37;
    color:#081b33;
    font-size:26px;
    font-weight:bold;
    border-radius:50%;
    margin:auto auto 20px;
}

/* ===========================
   CONTACT FORM
=========================== */

.contact{
    padding:100px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info{
    background:#081b33;
    color:#fff;
    padding:40px;
    border-radius:18px;
}

.contact-info h2{
    color:#d4af37;
    margin-bottom:25px;
}

.contact-info p{
    margin-bottom:18px;
}

.contact-info i{
    color:#d4af37;
    width:28px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    font-family:Poppins,sans-serif;
}

.contact-form textarea{
    height:170px;
    resize:vertical;
}

.contact-form button{
    width:100%;
    padding:16px;
    border:none;
    background:#d4af37;
    color:#081b33;
    font-size:17px;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#081b33;
    color:#fff;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#061528;
    color:#ddd;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:40px;
    padding-bottom:50px;
}

.footer-grid h3,
.footer-grid h4{
    color:#fff;
    margin-bottom:18px;
}

.footer-grid a{
    color:#ccc;
    transition:.3s;
}

.footer-grid a:hover{
    color:#d4af37;
}

.footer-grid li{
    margin-bottom:12px;
}

.footer-grid i{
    color:#d4af37;
    margin-right:10px;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px;
    font-size:14px;
    color:#aaa;
}
/* ===========================
   ANIMATIONS
=========================== */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

.hero-content{
    animation:fadeUp 1s ease;
}

.service-card,
.why-card,
.industry,
.stat,
.process-card{
    animation:fadeUp .8s ease;
}

/* ===========================
   HOVER EFFECTS
=========================== */

.service-card:hover,
.industry:hover,
.process-card:hover{
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.btn,
.btn-outline,
.contact-form button{
    transition:all .3s ease;
}

.btn:hover{
    transform:translateY(-4px) scale(1.02);
}

.btn-outline:hover{
    transform:translateY(-4px);
}

/* ===========================
   FORM FOCUS
=========================== */

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#d4af37;
    box-shadow:0 0 0 3px rgba(212,175,55,.15);
}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#b99321;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

.hero h1{
    font-size:46px;
}

.hero p{
    font-size:17px;
}

.about-grid{
    grid-template-columns:1fr;
}

.contact-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.stats .container{
    grid-template-columns:repeat(2,1fr);
}

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

header .container{
    height:75px;
}

.menu-btn{
    display:block;
}

nav{
    position:absolute;
    top:75px;
    left:0;
    width:100%;
    background:#081b33;
    display:none;
}

nav.active{
    display:block;
}

nav ul{
    flex-direction:column;
    gap:0;
}

nav ul li{
    border-top:1px solid rgba(255,255,255,.08);
}

nav ul li a{
    display:block;
    padding:18px 20px;
}

.hero{
    padding:140px 20px 100px;
}

.hero h1{
    font-size:38px;
}

.hero h4{
    font-size:14px;
    letter-spacing:2px;
}

.hero p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
    width:100%;
}

.contact-box{
    flex-direction:column;
    gap:15px;
}

.section-title h2{
    font-size:32px;
}

.page-banner h1{
    font-size:38px;
}

.cta h2{
    font-size:32px;
}

.stats .container{
    grid-template-columns:1fr;
}

.service-grid,
.why-grid,
.industry-grid,
.process-grid{
    grid-template-columns:1fr;
}

}

/* ===========================
   SMALL PHONES
=========================== */

@media(max-width:480px){

.container{
    width:92%;
}

.logo h2{
    font-size:22px;
}

.hero h1{
    font-size:30px;
}

.hero-highlight{
    font-size:15px;
    padding:12px 20px;
}

.btn,
.btn-outline{
    padding:13px 20px;
    font-size:15px;
}

.section-title h2{
    font-size:28px;
}

.page-banner h1{
    font-size:30px;
}

.cta{
    padding:70px 20px;
}

.cta h2{
    font-size:28px;
}

.contact-form,
.contact-info{
    padding:25px;
}

}

/* ===========================
   UTILITIES
=========================== */

.text-center{
    text-align:center;
}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.py-5{
    padding:80px 0;
}

.bg-dark{
    background:#081b33;
    color:#fff;
}

.bg-light{
    background:#f5f7fb;
}

/* ===========================
   END OF FILE
=========================== */