/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#f8fafc;
    color:#1f2937;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   TOPBAR
=========================== */

.topbar{

    background:#0f172a;
    color:#fff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;

    padding:10px 6%;

    font-size:14px;

}

.top-left{

    display:flex;
    gap:25px;
    flex-wrap:wrap;

}

.top-left a,
.top-left span{

    color:#e5e7eb;
    transition:.3s;

}

.top-left a:hover{

    color:#f59e0b;

}

.top-left i{

    color:#f59e0b;
    margin-right:6px;

}

.trust{

    color:#fbbf24;
    font-weight:600;

}

.trust i{

    margin-right:6px;

}

/* ===========================
   NAVBAR
=========================== */

nav{

    background:#fff;

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:0 3px 18px rgba(0,0,0,.08);

}

.nav-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    width:70px;

}

.logo-text h2{

    font-size:26px;

    color:#1e293b;

    line-height:1;

    font-weight:900;

}

.logo-text span{

    color:#d97706;

    letter-spacing:2px;

    font-size:13px;

    font-weight:700;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

}

.nav-links a{

    color:#1f2937;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover,
.nav-links .active{

    color:#d97706;

}

.quote-btn{

    background:#d97706;

    color:#fff;

    padding:13px 24px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.quote-btn:hover{

    background:#b45309;

    transform:translateY(-2px);

}

/* ===========================
   HERO
=========================== */

.hero{

    height:80vh;

    background:
    linear-gradient(rgba(4,18,45,.75),
    rgba(4,18,45,.75)),
    url("images/lalit-kumar-HpPmiduLDC0-unsplash.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

}

.hero-content{

    position:relative;

    z-index:2;

    color:white;

    width:90%;

    max-width:850px;

}

.hero-tag{

    display:inline-block;

    padding:10px 22px;

    background:rgba(217,119,6,.18);

    color:#fbbf24;

    border:1px solid rgba(251,191,36,.4);

    border-radius:40px;

    margin-bottom:20px;

    font-size:14px;

    letter-spacing:1px;

}

.hero h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}

.hero h1 span{

    color:#f59e0b;

}

.hero p{

    color:#d1d5db;

    font-size:20px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.primary-btn{

    background:#d97706;

    color:#fff;

    padding:15px 35px;

    border-radius:8px;

    transition:.3s;

    font-weight:600;

}

.primary-btn:hover{

    background:#b45309;

    transform:translateY(-3px);

}

.secondary-btn{

    background:#25D366;

    color:white;

    padding:15px 35px;

    border-radius:8px;

    transition:.3s;

    font-weight:600;

}

.secondary-btn:hover{

    background:#1DA851;

    transform:translateY(-3px);

}

/* ===========================
   ABOUT COMPANY
=========================== */

.about-company{

    padding:100px 0;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.section-tag{

    display:inline-block;

    background:#fff4e6;

    color:#d97706;

    padding:8px 18px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:18px;

}

.about-content h2{

    font-size:42px;

    margin-bottom:20px;

    color:#1e293b;

}

.about-content p{

    margin-bottom:18px;

    color:#64748b;

}

.about-points{

    margin-top:30px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.about-points div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.about-points i{

    color:#22c55e;

}

/* ===========================
   STATS
=========================== */

.stats{

    background:#d97706;

    padding:70px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-card{

    background:white;

    border-radius:16px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.stat-card h2{

    font-size:42px;

    color:#d97706;

    margin-bottom:10px;

}

.stat-card p{

    font-weight:600;

    color:#475569;

}
/* ===========================
   WHY CHOOSE US
=========================== */

.why-us{
    padding:100px 0;
    background:#f8fafc;
}

.section-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    background:#fff4e6;
    color:#d97706;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    color:#1e293b;
    margin-bottom:18px;
}

.section-title p{
    color:#64748b;
    font-size:17px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:18px;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.why-card i{
    width:80px;
    height:80px;
    background:#fff4e6;
    color:#d97706;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:0 auto 25px;
}

.why-card h3{
    margin-bottom:15px;
    color:#1e293b;
}

.why-card p{
    color:#64748b;
}

/* ===========================
   MISSION & VISION
=========================== */

.mission-vision{
    padding:90px 0;
    background:#fff;
}

.mv-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.mv-card{
    background:#0f172a;
    color:#fff;
    padding:50px;
    border-radius:20px;
    transition:.35s;
}

.mv-card:hover{
    transform:translateY(-8px);
}

.mv-card i{
    font-size:50px;
    color:#f59e0b;
    margin-bottom:25px;
}

.mv-card h2{
    color:#fff;
    margin-bottom:20px;
}

.mv-card p{
    color:#d1d5db;
}

/* ===========================
   PROCESS
=========================== */

.process-section{
    background:#f8fafc;
    padding:100px 0;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.process-card{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:40px 25px;
    position:relative;
    transition:.35s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.process-card:hover{
    transform:translateY(-10px);
}

.number{
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    width:40px;
    height:40px;
    border-radius:50%;
    background:#d97706;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
}

.process-card i{
    font-size:45px;
    color:#d97706;
    margin:25px 0;
}

.process-card h3{
    margin-bottom:15px;
}

.process-card p{
    color:#64748b;
}

/* ===========================
   VALUES
=========================== */

.values{
    background:#0f172a;
    color:#fff;
    padding:100px 0;
}

.values .section-title h2{
    color:#fff;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.value-grid div{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    transition:.35s;
}

.value-grid div:hover{
    background:#d97706;
}

.value-grid i{
    font-size:42px;
    margin-bottom:20px;
    color:#fbbf24;
}

.value-grid h3{
    margin-bottom:15px;
}

.value-grid p{
    color:#e5e7eb;
}

/* ===========================
   CTA
=========================== */

.cta{
    background:linear-gradient(135deg,#d97706,#b45309);
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.cta h2{
    color:#fff;
    font-size:44px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    color:#f8fafc;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#020617;
    color:#cbd5e1;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:50px;
    padding-bottom:60px;
}

.footer-grid h3{
    color:#ffffff;
    font-size:24px;
    margin-bottom:20px;
    position:relative;
}

.footer-grid h3::after{
    content:"";
    width:50px;
    height:3px;
    background:#d97706;
    display:block;
    margin-top:10px;
    border-radius:10px;
}

.footer-grid a{
    display:block;
    color:#cbd5e1;
    margin-bottom:14px;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-grid a:hover{
    color:#f59e0b;
    transform:translateX(6px);
}

.footer-grid p{
    margin-bottom:15px;
    line-height:1.8;
}

.footer-grid i{
    color:#f59e0b;
    margin-right:10px;
    width:18px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    padding:22px;
    text-align:center;
    font-size:14px;
    color:#94a3b8;
}

/* Mobile */

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.footer-grid h3::after{
    margin:10px auto 0;
}

.footer-grid a:hover{
    transform:none;
}

}
/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1100px){

.why-grid,
.value-grid{
    grid-template-columns:repeat(2,1fr);
}

.process-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:900px){

.about-grid,
.mv-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

.nav-links{
    display:none;
}

.hero h1{
    font-size:48px;
}

.about-content h2,
.section-title h2,
.cta h2{
    font-size:34px;
}

}

@media(max-width:600px){

.topbar{
    justify-content:center;
    text-align:center;
    gap:12px;
}

.top-left{
    justify-content:center;
}

.hero{
    height:70vh;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:17px;
}

.hero-buttons,
.cta-buttons{
    flex-direction:column;
}

.about-points{
    grid-template-columns:1fr;
}

.stats-grid,
.why-grid,
.value-grid,
.process-grid{
    grid-template-columns:1fr;
}

.primary-btn,
.secondary-btn,
.quote-btn{
    width:100%;
    text-align:center;
}

.logo img{
    width:60px;
}

.logo-text h2{
    font-size:20px;
}

.logo-text span{
    font-size:11px;
}

}