
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f7fa;
    color:#111;
}

/* HEADER */

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:22px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:100;
}

.logo{
    color:#fff;
}

.logo h1{
    font-size:38px;
    font-weight:800;
}

.logo h1 span{
    color:#ff8800;
}

.logo p{
    font-size:12px;
    letter-spacing:1px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#ff8800;
}

.contact-btn{
    background:#ff8800;
    color:#fff;
    padding:14px 30px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
}

/* HERO */

.hero{
    width:100%;
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),
    url('../images/banner-front-1.png');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:0 7%;
}

.hero-content{
    color:#fff;
    max-width:700px;
}

.hero-content h5{
    color:#ff8800;
    font-size:20px;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:65px;
    font-weight:800;
    line-height:1;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#ff8800;
}

.hero-content p{
    font-size:28px;
    line-height:1.6;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    border:2px solid #fff;
    padding:16px 35px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover{
    background:#ff8800;
    border-color:#ff8800;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:35px;
    color:#0a1c44;
    font-weight:800;
}

.section-title p{
    color:#ff8800;
    font-weight:600;
    margin-bottom:10px;
}

/* COMPANIES */

.companies{
    padding:90px 7%;
    background:#fff;
}

.company-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.company-card{
    position:relative;
    border-radius:10px;
    overflow:hidden;
    height:450px;
}

.company-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    color:#fff;
}

.overlay h3{
    font-size:26px;
    margin-bottom:15px;
}

.overlay p{
    line-height:1.8;
    margin-bottom:25px;
    color:#ddd;
}

.overlay a{
    width:fit-content;
    border:1px solid #fff;
    padding:12px 24px;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.overlay a:hover{
    background:#ff8800;
    border-color:#ff8800;
}

.company-card .overlay h3 span{
    font-size:14px;
    margin-top:0;
	display:grid;
}

/* ABOUT */

.about{
    padding:90px 7%;
    background:#f6f8fb;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-content h2{
    font-size:35px;
    color:#0a1c44;
    margin-bottom:25px;
    line-height:1.2;
}

.about-content p{
    color:#555;
    line-height:2;
    margin-bottom:30px;
}

.about-btn{
    display:inline-block;
    background:#0a1c44;
    color:#fff;
    padding:14px 28px;
    text-decoration:none;
}


/* =========================
   THREE BUSINESS SECTION
========================= */

.business-section{
    padding:100px 7%;
    background:#ffffff;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#ff8800;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
}

.section-heading h2{
    font-size:52px;
    font-weight:800;
    color:#0a1c44;
    margin-top:10px;
}

.business-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.business-card{
    position:relative;
    height:500px;
    border-radius:18px;
    overflow:hidden;
    cursor:pointer;
    transition:0.4s;
}

.business-card:hover{
    transform:translateY(-10px);
}

.business-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.2)
    );
}

.content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:35px;
    color:#fff;
    z-index:2;
}

.content h3{
    font-size:38px;
    margin-bottom:12px;
    font-weight:700;
}

.content h4{
    font-size:22px;
    margin-bottom:18px;
    color:#ff8800;
    font-weight:500;
}

.content p{
    font-size:15px;
    line-height:1.9;
    color:#ddd;
    margin-bottom:28px;
}

.content a{
    display:inline-block;
    padding:14px 28px;
    border:1px solid #fff;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.content a:hover{
    background:#ff8800;
    border-color:#ff8800;
}
.stats{
	  max-width:900px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
}

/* .stats-section{
      max-width:900px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
    } */

.stat-box{
      background:#fff;
      border:1px solid #ddd;
      border-radius:4px;
      padding:30px 25px;
      display:flex;
      align-items:center;
      gap:20px;
      transition:0.3s;
}
.stat-box:hover{
      transform:translateY(-3px);
      box-shadow:0 5px 15px rgba(0,0,0,0.08);
}
.stat-icon{
      font-size:42px;
      color:#ff7a00;
      min-width:50px;
      text-align:center;
}

.stat-content h2{
      font-size:26px;
      color:#0b1b3f;
      margin-bottom:5px;
      font-weight:700;
}

.stat-content p{
      color:#333;
      font-size:14px;
    }


/* ===== VALUES SECTION ===== */
.values-section{
    background:linear-gradient(to right,#081b35,#0a2348);
    padding:50px 7%;
}


.values-title{
    text-align:center;
    color:#ff9c1a;
    font-size:16px;
    font-weight:bold;
    margin-bottom:35px;
    letter-spacing:1px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:30px;
}

.value-box{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.icon{
    font-size:38px;
    line-height:1;
	color:#fff;
}

.value-box h3{
    font-size:18px;
    margin-bottom:10px;
	color:#fff;
}

.value-box p{
    font-size:14px;
    line-height:1.6;
    color:#d2d7df;
}

/* ===== FOOTER ===== */
.footer{
    background:#050f1f;
    padding:60px 7% 0;
}
.footer .left-border {
    border-left:1px solid rgba(255,255,255,0.1);
    padding-left: 16px;
}
.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:40px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.logo{
    font-size:30px;
    font-weight:800;
}

.logo span{
    color:#ff8c00;
}

.footer-box p{
    margin-top:15px;
    line-height:1.8;
    color:#d3d7de;
	font-size:14px;
}

.footer-box h3{
    margin-bottom:20px;
    font-size:18px;
	color:#fff;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
	color:#fff;
	font-size:14px;
}

.footer-box ul li a{
    color:#d3d7de;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#ff8c00;
}

.social-icons{
    margin-top:25px;
    display:flex;
    gap:12px;
}

.social-icons a{
    width:40px;
    height:40px;
    border:1px solid rgba(255,255,255,0.3);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:#ff8c00;
    border-color:#ff8c00;
}

.contact-info li{
    line-height:1.8;
}

/* Newsletter */
.newsletter{
    display:flex;
    margin-top:20px;
}

.newsletter input{
    width:100%;
    padding:14px;
    border:none;
    outline:none;
    background:#0d1c33;
    color:#fff;
}

.newsletter button{
    width:60px;
    border:none;
    background:#ff8c00;
    color:#fff;
    cursor:pointer;
    font-size:18px;
}

/* Bottom Footer */
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    padding:25px 0;
    color:#c7cbd3;
    font-size:14px;
}

.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:#c7cbd3;
    text-decoration:none;
}

.footer-links a:hover{
    color:#ff8c00;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    nav{
        display:none;
    }

    .hero-content h1{
        font-size:65px;
    }

    .hero-content p{
        font-size:22px;
    }

    .about-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .hero-content h1{
        font-size:48px;
    }

    .section-title h2,
    .about-content h2,
    .values h2{
        font-size:38px;
    }

}



/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .section-heading h2{
        font-size:36px;
    }

    .business-card{
        height:450px;
    }

    .content h3{
        font-size:30px;
    }

}