
/*
Theme Name: History Makers Premium Theme
Author: OpenAI
Version: 3.0
Description: Premium auto-install corporate WordPress theme for History Makers Business Consulting
*/

body{
    margin:0;
    font-family:Arial,sans-serif;
    color:#1f2937;
    background:#fff;
    scroll-behavior:smooth;
}

header{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 12px rgba(0,0,0,0.06);
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:70px;
}

.menu a{
    margin-left:25px;
    text-decoration:none;
    color:#111827;
    font-weight:600;
}

.hero-slider{
    position:relative;
    overflow:hidden;
    height:85vh;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    animation:fade 18s infinite;
    display:flex;
    align-items:center;
}

.slide:nth-child(2){
    animation-delay:6s;
}

.slide:nth-child(3){
    animation-delay:12s;
}

.overlay{
    background:rgba(15,23,42,0.75);
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
}

.hero-content{
    color:white;
    max-width:700px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.1;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
}

.button{
    display:inline-block;
    background:#d97706;
    color:white;
    padding:18px 34px;
    border-radius:12px;
    text-decoration:none;
    margin-top:25px;
    font-weight:bold;
}

.section{
    padding:90px 0;
}

.gray{
    background:#f8fafc;
}

.center{
    text-align:center;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:45px;
}

.card{
    background:white;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    width:100%;
    border-radius:16px;
    margin-bottom:20px;
}

.stats{
    font-size:54px;
    font-weight:bold;
    color:#b8860b;
}

.services-slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    padding:20px 0;
}

.service-slide{
    min-width:320px;
    background:white;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    padding:25px;
}

.service-slide img{
    width:100%;
    border-radius:18px;
    margin-bottom:18px;
}

.contact{
    background:linear-gradient(135deg,#1d4ed8,#0f172a);
    color:white;
}

footer{
    background:#020617;
    color:#cbd5e1;
    text-align:center;
    padding:45px 0;
}

footer img{
    height:60px;
    margin-bottom:15px;
}

@keyframes fade{
    0%{opacity:0;}
    8%{opacity:1;}
    30%{opacity:1;}
    38%{opacity:0;}
    100%{opacity:0;}
}

@media(max-width:768px){
    .hero-content h1{
        font-size:42px;
    }

    .menu{
        display:none;
    }

    .hero-slider{
        height:auto;
    }

    .slide{
        position:relative;
        min-height:600px;
    }
}
