@charset "utf-8";
/* CSS Document */



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Plus Jakarta Sans',sans-serif;
    background:#f4f7fb;
    color:#0f172a;
    overflow-x:hidden;
}

.container{
    width:92%;
    max-width:1450px;
    margin:auto;
}

section{
    padding:40px 0;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* HERO */

.gst-hero{
    background:linear-gradient(135deg,#eff6ff,#f8fbff);
}

.gst-hero-wrap{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
}

.gst-tag{
    display:inline-block;
    background:#dbeafe;
    color:#2563eb;
    padding:12px 24px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:30px;
}

.gst-hero-content h1{
    font-size:56px;
    line-height:1.05;
    margin-bottom:30px;
    font-family:'Sora',sans-serif;
}

.gst-hero-content h1 span{
    color:#2563eb;
}

.gst-hero-content p{
    font-size:18px;
    line-height:2;
    color:#475569;
    margin-bottom:40px;
}

.gst-hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.gst-btn{
    padding:18px 36px;
    border-radius:18px;
    font-weight:700;
    transition:.4s;
}

.gst-btn-primary{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
}

.gst-btn-outline{
    border:1px solid #cbd5e1;
    background:#fff;
    color:#0f172a;
}

.gst-btn:hover{
    transform:translateY(-5px);
}

.gst-counter-wrap{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.gst-counter-box{
    background:#fff;
    padding:28px;
    border-radius:26px;
    min-width:190px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.gst-counter-box h3{
    font-size:34px;
    color:#2563eb;
    margin-bottom:10px;
}

.gst-hero-image img{
    height:760px;
    object-fit:cover;
    border-radius:42px;
    box-shadow:0 40px 100px rgba(0,0,0,.12);
}



/* LEAD FORM */

.gst-lead-box{
    background:#fff;
    border-radius:40px;
    padding:70px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    box-shadow:0 20px 70px rgba(0,0,0,.06);
}

.gst-lead-left h2{
    font-size:54px;
    margin-bottom:30px;
    line-height:1.1;
}

.gst-lead-left p{
    line-height:2;
    color:#64748b;
    margin-bottom:35px;
}

.gst-lead-left img{
    height:520px;
    object-fit:cover;
    border-radius:35px;
}

.gst-input-box{
    margin-bottom:24px;
}

.gst-input-box label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.gst-input-box input,
.gst-input-box textarea{
    width:100%;
    padding:18px;
    border-radius:16px;
    border:1px solid #dbe4f0;
    font-size:16px;
}

.gst-input-box textarea{
    height:180px;
    resize:none;
}

.gst-submit-btn{
    width:100%;
    padding:20px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

/* FAQ */

.gst-faq{
    background:#fff;
}

.gst-faq-wrap{
    max-width:1100px;
    margin:auto;
}

.gst-faq-item{
    background:#f8fbff;
    padding:35px;
    border-radius:24px;
    margin-bottom:24px;
}

.gst-faq-item h3{
    font-size:24px;
    margin-bottom:14px;
}

.gst-faq-item p{
    line-height:1.9;
    color:#64748b;
}

/* RESPONSIVE */

@media(max-width:1100px){

.gst-hero-wrap,
.gst-about-wrap,
.gst-info-wrap,
.gst-custom-wrap,
.gst-lead-box{
    grid-template-columns:1fr;
}

.gst-feature-grid{
    grid-template-columns:1fr 1fr;
}

.gst-hero-content h1,
.gst-about-content h2,
.gst-info-content h2,
.gst-custom-content h2,
.gst-heading h2{
    font-size:44px;
}

}

@media(max-width:768px){

section{
    padding:40px 0;
}
.gst-btn {
    padding: 13px 12px;
    border-radius: 18px;
    font-weight: 500;
    transition: .4s;
}


.gst-feature-grid{
    grid-template-columns:1fr;
}

.gst-hero-content h1,
.gst-about-content h2,
.gst-info-content h2,
.gst-custom-content h2,
.gst-heading h2,
.gst-lead-left h2{
    font-size:34px;
}

.gst-hero-image img,
.gst-about-image img,
.gst-info-image img,
.gst-custom-image img{
    height:360px;
}

.gst-lead-box{
    padding:35px 25px;
}

.gst-lead-left img{
    height:320px;
}

}
/* ======================================
STATS
====================================== */

.stats{
    margin-top:-70px;
    position:relative;
    z-index:5;
}

.stats-wrap{
    background:#fff;
    border-radius:30px;
    padding:45px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.stat-box{
    text-align:center;
}

.stat-box h3{
    font-size:42px;
    color:#2563eb;
    margin-bottom:10px;
}

.stat-box p{
    color:#64748b;
    line-height:1.6;
}

/* ======================================
CONTENT SECTION
====================================== */

.section{
    padding:50px 0;
}

.grid-2{
    display:grid;
    grid-template-columns:58% 42%;
    gap:70px;
    align-items:center;
}

.content h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:28px;
    font-family:'Sora',sans-serif;
}

.content p{
    font-size:17px;
    line-height:2;
    color:#475569;
    margin-bottom:25px;
}

.big-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:35px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* ======================================
FEATURES
====================================== */

.features{
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:54px;
    margin-bottom:20px;
    font-family:'Sora',sans-serif;
}

.section-title p{
    max-width:850px;
    margin:auto;
    color:#64748b;
    line-height:1.9;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.feature-card{
    background:#f8fbff;
    padding:45px;
    border-radius:30px;
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 60px rgba(37,99,235,.12);
}

.feature-card img{
    width:70px;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.feature-card p{
    color:#64748b;
    line-height:1.9;
}

/* ======================================
WHY SECTION
====================================== */

.why{
    background:#0f172a;
}

.why .content h2,
.why .content p,
.why-list li{
    color:#fff;
}

.why-list{
    margin-top:30px;
}

.why-list li{
    list-style:none;
    margin-bottom:18px;
    font-size:18px;
}

/* ======================================
INDUSTRIES
====================================== */

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.07);
}

.industry-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.industry-card h3{
    padding:28px;
    font-size:24px;
}

/* ======================================
CTA
====================================== */

.cta{
    padding:100px 0;
}

.cta-wrap{
    background:linear-gradient(135deg,#2563eb,#1e3a8a);
    border-radius:40px;
    padding:40px 70px;
    text-align:center;
}

.cta-wrap h2{
    font-size:56px;
    color:#fff;
    margin-bottom:25px;
}

.cta-wrap p{
    color:#dbeafe;
    font-size:18px;
    line-height:1.8;
    max-width:900px;
    margin:auto auto 40px;
}

/* ======================================
FAQ
====================================== */

.faq{
    background:#fff;
}

.faq-item{
    background:#f8fbff;
    padding:35px;
    border-radius:24px;
    margin-bottom:25px;
}


.faq-item h3{
    font-size:24px;
    margin-bottom:15px;
}

.faq-item p{
    color:#64748b;
    line-height:1.9;
}

/* ======================================
FORM
====================================== */

.form-wrap{
    background:#fff;
    padding:60px;
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.form-wrap h2{
    font-size:50px;
    margin-bottom:15px;
}

.form-wrap p{
    color:#64748b;
    margin-bottom:40px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:18px 22px;
    border:none;
    background:#f1f5f9;
    border-radius:16px;
    font-size:16px;
    outline:none;
}

.form-group textarea{
    height:160px;
    resize:none;
}

.full{
    grid-column:1/-1;
}

/* ======================================
RESPONSIVE
====================================== */

@media(max-width:1200px){

    .inventory-hero .container,
    .grid-2,
    .feature-grid,
    .industry-grid,
    .stats-wrap{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .inventory-hero .container,
    .grid-2,
    .feature-grid,
    .industry-grid,
    .stats-wrap,
    .form-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1,
    .section-title h2,
    .content h2,
    .cta-wrap h2,
    .form-wrap h2{
        font-size:38px;
    }

    .hero-image img,
    .big-image img{
        height:400px;
    }

    .cta-wrap,
    .form-wrap{
        padding:35px;
    }

}


.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border-radius:16px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:.4s ease;
}

.btn-primary{
    background:linear-gradient(135deg,#2196F3, #03A9F4);
    color:#fff;
    box-shadow:0 18px 40px rgba(37,99,235,.25);
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-outline{
    border:2px solid rgba(255,255,255,.3);
    color:#fff;
    backdrop-filter:blur(10px);
}

/* ======================================
HERO
====================================== */

.busy-hero{
    position:relative;
    overflow:hidden;
    padding:120px 0 90px;
    background:
    linear-gradient(135deg,#0f172a 0%,#111827 100%);
}

.busy-hero::before{
    content:'';
    position:absolute;
    width:800px;
    height:800px;
    background:radial-gradient(circle,#2563eb35 0%,transparent 70%);
    right:-250px;
    top:-250px;
}

.busy-hero .container{
    display:grid;
    grid-template-columns:55% 45%;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-content span{
    display:inline-block;
    padding:12px 22px;
    border-radius:999px;
    background:#1e3a8a;
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.05;
    color:#fff;
    font-family:'Sora',sans-serif;
    font-weight:800;
    margin-bottom:30px;
}

.hero-content h1 span{
    color:#60a5fa;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#cbd5e1;
    margin-bottom:40px;
    max-width:700px;
}

.hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-image img{
    height:680px;
    object-fit:cover;
    border-radius:35px;
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

/* ======================================
STATS
====================================== */

.stats{
    margin-top:-70px;
    position:relative;
    z-index:5;
}

.stats-wrap{
    background:#fff;
    border-radius:35px;
    padding:45px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}

.stat-box{
    text-align:center;
}

.stat-box h3{
    font-size:42px;
    color:#2563eb;
    margin-bottom:10px;
    font-weight:800;
}

.stat-box p{
    color:#64748b;
    line-height:1.6;
}

/* ======================================
SECTIONS
====================================== */

.section{
    padding:50px 0;
}

.grid-2{
    display:grid;
    grid-template-columns:58% 42%;
    gap:70px;
    align-items:center;
}

.content h2{
    font-size:54px;
    line-height:1.15;
    margin-bottom:30px;
    font-family:'Sora',sans-serif;
}

.content p{
    font-size:17px;
    line-height:2;
    color:#475569;
    margin-bottom:25px;
}

.big-image img{
    height:760px;
    object-fit:cover;
    border-radius:35px;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
}

/* ======================================
FEATURES
====================================== */

.features{
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:56px;
    margin-bottom:20px;
    font-family:'Sora',sans-serif;
}

.section-title p{
    color:#64748b;
    max-width:850px;
    margin:auto;
    line-height:1.9;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.feature-card{
    background:#f8fbff;
    border-radius:32px;
    padding:45px;
    transition:.4s ease;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 60px rgba(37,99,235,.12);
}

.feature-card img{
    width:72px;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.feature-card p{
    color:#64748b;
    line-height:1.9;
}

/* ======================================
WHY US
====================================== */

.why{
    background:#0f172a;
}

.why .content h2,
.why .content p,
.why-list li{
    color:#fff;
}

.why-list{
    margin-top:30px;
}

.why-list li{
    list-style:none;
    margin-bottom:18px;
    font-size:18px;
}

/* ======================================
INDUSTRIES
====================================== */

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.07);
}

.industry-card img{
    height:260px;
    object-fit:cover;
}

.industry-card h3{
    padding:28px;
    font-size:24px;
}

/* ======================================
ADVANCED SECTION
====================================== */

.alt-row{
    display:grid;
    grid-template-columns:50% 50%;
    gap:60px;
    align-items:center;
    margin-bottom:100px;
}

.alt-row.reverse{
    direction:rtl;
}

.alt-row.reverse .alt-content{
    direction:ltr;
}

.alt-image img{
    height:520px;
    object-fit:cover;
    border-radius:35px;
}

.alt-content h3{
    font-size:42px;
    margin-bottom:20px;
    font-family:'Sora',sans-serif;
}

.alt-content p{
    font-size:17px;
    line-height:2;
    color:#475569;
}

/* ======================================
BENEFITS
====================================== */

.benefits{
    background:#fff;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.benefit-card{
    padding:45px;
    border-radius:30px;
    background:linear-gradient(135deg,#2563eb,#1e3a8a);
    color:#fff;
}

.benefit-card h3{
    font-size:28px;
    margin-bottom:15px; color: #fff;
}

.benefit-card p{
    line-height:1.9;
    color:#dbeafe;
}

/* ======================================
CTA
====================================== */

.cta{
    padding:110px 0;
}

.cta-wrap{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    padding:80px;
    border-radius:40px;
    text-align:center;
}

.cta-wrap h2{
    font-size:58px;
    color:#fff;
    margin-bottom:25px;
    font-family:'Sora',sans-serif;
}

.cta-wrap p{
    color:#dbeafe;
    line-height:1.9;
    max-width:900px;
    margin:auto auto 40px;
}

/* ======================================
FAQ
====================================== */

.faq{
    background:#fff;
}

.faq-item{
    background:#f8fbff;
    padding:35px;
    border-radius:24px;
    margin-bottom:25px;
}

.faq-item h3{
    font-size:24px;
    margin-bottom:15px;
}

.faq-item p{
    color:#64748b;
    line-height:1.9;
}

/* ======================================
FORM
====================================== */

.form-wrap{
    background:#fff;
    border-radius:35px;
    padding:65px;
    box-shadow:0 20px 70px rgba(0,0,0,.08);
}

.form-wrap h2{
    font-size:52px;
    margin-bottom:15px;
    font-family:'Sora',sans-serif;
}

.form-wrap p{
    color:#64748b;
    margin-bottom:40px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:none;
    background:#f1f5f9;
    border-radius:18px;
    padding:18px 22px;
    font-size:16px;
    outline:none;
}

.form-group textarea{
    height:160px;
    resize:none;
}

.full{
    grid-column:1/-1;
}

/* ======================================
RESPONSIVE
====================================== */

@media(max-width:1200px){

    .busy-hero .container,
    .grid-2,
    .feature-grid,
    .industry-grid,
    .stats-wrap,
    .benefit-grid,
    .alt-row{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .busy-hero .container,
    .grid-2,
    .feature-grid,
    .industry-grid,
    .stats-wrap,
    .benefit-grid,
    .alt-row,
    .form-grid{
        grid-template-columns:1fr; margin-bottom:0px;
    }
	

    .hero-content h1,
    .section-title h2,
    .content h2,
    .cta-wrap h2,
    .form-wrap h2{
        font-size:38px;
    }

    .hero-image img,
    .big-image img,
    .alt-image img{
        height:380px;
    }

    .cta-wrap,
    .form-wrap{
        padding:35px;
    }

}

