/*==========================================================
01. HOME PAGE
==========================================================*/

/*==========================================================
HERO SECTION
==========================================================*/

.hero{

    position:relative;

    padding:120px 0;

    background:#ffffff;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    top:-220px;

    right:-220px;

    width:550px;

    height:550px;

    border-radius:50%;

    background:rgba(33,79,153,.05);

}

.hero::after{

    content:"";

    position:absolute;

    left:-150px;

    bottom:-150px;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(94,131,42,.05);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-container{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    align-items:center;

    gap:80px;

}

/*==========================================================
HERO CONTENT
==========================================================*/

.hero-content{

    max-width:650px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    background:#eef4ff;

    border:1px solid rgba(33,79,153,.15);

    border-radius:60px;

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    margin-bottom:28px;

}

.hero h1{

    font-size:64px;

    line-height:1.08;

    font-weight:800;

    color:var(--dark);

    margin-bottom:24px;

    letter-spacing:-1px;

}

.hero p{

    font-size:18px;

    line-height:1.9;

    color:#666;

    margin-bottom:40px;

}

/*==========================================================
BUTTONS
==========================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    background:#fff;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*==========================================================
STATS
==========================================================*/

.hero-stats{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

}

.stat-box{

    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    padding:24px;

    min-width:185px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.stat-box h3{

    font-size:38px;

    color:var(--primary);

    margin-bottom:8px;

    font-weight:700;

}

.stat-box span{

    color:#666;

    font-size:15px;

}

/*==========================================================
HERO IMAGE
==========================================================*/

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    height:680px;

    object-fit:cover;

    border-radius:24px;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

/*==========================================================
FLOATING CARDS
==========================================================*/

.hero-floating{

    position:absolute;

    background:#fff;

    border-radius:16px;

    padding:18px 22px;

    min-width:220px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    animation:floatCard 5s ease-in-out infinite;

}

.hero-floating h4{

    color:var(--primary);

    font-size:22px;

    margin-bottom:6px;

}

.hero-floating span{

    color:#666;

    font-size:14px;

}

.card-1{

    top:35px;

    left:-45px;

}

.card-2{

    right:-45px;

    bottom:120px;

}

.card-3{

    left:-25px;

    bottom:25px;

}

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==========================================================
02. SECTION TITLE
==========================================================*/

.section-title{

    max-width:820px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    padding:10px 22px;

    background:rgba(94,131,42,.08);

    color:var(--secondary);

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:18px;

}

.section-title h2{

    font-size:48px;

    line-height:1.2;

    color:var(--dark);

    margin-bottom:22px;

}

.section-title p{

    font-size:18px;

    color:#666;

    line-height:1.9;

}

/*==========================================================
03. ABOUT SECTION
==========================================================*/

.about-home{

    padding:120px 0;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:22px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-content h3{

    font-size:40px;

    color:var(--dark);

    margin-bottom:22px;

}

.about-content p{

    font-size:17px;

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

/*==========================================================
ABOUT HIGHLIGHTS
==========================================================*/

.about-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-top:35px;

}

.highlight{

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:28px;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.highlight:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.highlight h4{

    font-size:34px;

    color:var(--primary);

    margin-bottom:8px;

}

.highlight span{

    color:#666;

    font-size:15px;

}

/*==========================================================
04. SERVICES
==========================================================*/

.services-home{

    padding:120px 0;

    background:#f7f9fc;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:38px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:var(--primary);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 55px rgba(0,0,0,.10);

}

.service-card:hover::before{

    width:100%;

    opacity:.05;

}

.service-card h3{

    font-size:26px;

    color:var(--dark);

    margin-bottom:18px;

    position:relative;

    z-index:2;

}

.service-card p{

    font-size:16px;

    line-height:1.8;

    color:#666;

    position:relative;

    z-index:2;

}

/*==========================================================
05. WHY CHOOSE US
==========================================================*/

.why-choose{

    padding:120px 0;

    background:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:40px 35px;

    transition:.35s;

    position:relative;

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    background:var(--primary);

    border-radius:20px 0 0 20px;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.why-card h3{

    font-size:24px;

    color:var(--dark);

    margin-bottom:18px;

}

.why-card p{

    font-size:16px;

    color:#666;

    line-height:1.8;

}

/*==========================================================
06. CERTIFICATIONS
==========================================================*/

.certifications{

    padding:120px 0;

    background:#f8fafc;

}

.certificate-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.certificate-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.certificate-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    border-color:var(--primary);

}

.certificate-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.certificate-card h3{

    padding:25px 25px 15px;

    text-align:center;

    font-size:22px;

    color:var(--dark);

}

.certificate-card .btn{

    width:calc(100% - 40px);

    margin:0 20px 20px;

}


/*==========================================================
07. INDUSTRIES
==========================================================*/

.industries{

    padding:120px 0;

    background:#ffffff;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.industry-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.industry-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.45s;

}

.industry-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.18)
    );

}

.industry-card h3{

    position:absolute;

    left:25px;

    bottom:25px;

    z-index:2;

    color:#fff;

    font-size:24px;

    font-weight:700;

}

.industry-card:hover img{

    transform:scale(1.08);

}


/*==========================================================
08. TESTING PROCESS
==========================================================*/

.testing-process{

    padding:120px 0;

    background:#f7f9fc;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    transition:.35s;

    position:relative;

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 22px 55px rgba(0,0,0,.10);

}

.process-number{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    box-shadow:0 12px 30px rgba(33,79,153,.35);

}

.process-card h3{

    font-size:24px;

    color:var(--dark);

    margin-bottom:18px;

}

.process-card p{

    color:#666;

    line-height:1.8;

}


/*==========================================================
SECTION SPACING
==========================================================*/

.about-home,
.services-home,
.why-choose,
.certifications,
.industries,
.testing-process{

    position:relative;

}

.section-title{

    margin-bottom:70px;

}

/*==========================================================
09. CTA SECTION
==========================================================*/

.cta-section{

    padding:120px 0;

    background:#ffffff;

}

.cta-wrapper{

    background:linear-gradient(135deg,var(--primary),#173b72);

    border-radius:24px;

    padding:70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    overflow:hidden;

    position:relative;

}

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    right:-180px;

    top:-180px;

    background:rgba(255,255,255,.06);

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:700px;

}

.cta-content span{

    color:#9fd64d;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.cta-content h2{

    color:#fff;

    font-size:48px;

    margin:20px 0;

}

.cta-content p{

    color:rgba(255,255,255,.88);

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    position:relative;

    z-index:2;

}

.btn-outline-white{

    border:2px solid #fff;

    color:#fff;

    background:transparent;

}

.btn-outline-white:hover{

    background:#fff;

    color:var(--primary);

}


/*==========================================================
10. FAQ
==========================================================*/

.faq-section{

    padding:120px 0;

    background:#f7f9fc;

}

.faq-wrapper{

    max-width:950px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.35s;

}

.faq-item:hover{

    border-color:var(--primary);

}

.faq-question{

    width:100%;

    padding:28px 35px;

    background:#fff;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:20px;

    font-weight:600;

}

.faq-question span{

    color:var(--primary);

    font-size:32px;

}

.faq-answer{

    display:none;

    padding:0 35px 30px;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-answer p{

    color:#666;

    line-height:1.8;

}


/*==========================================================
11. BLOGS
==========================================================*/

.latest-blogs{

    padding:120px 0;

    background:#ffffff;

}

.blog-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.blog-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid var(--border);

    transition:.35s;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.blog-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.blog-content{

    padding:30px;

}

.blog-content span{

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

}

.blog-content h3{

    font-size:24px;

    margin:18px 0;

    color:var(--dark);

    line-height:1.5;

}

.blog-content a{

    color:var(--primary);

    font-weight:600;

}

.blog-content a:hover{

    color:var(--secondary);

}


/*==========================================================
12. RESPONSIVE
==========================================================*/

@media(max-width:1200px){

.hero h1{

font-size:56px;

}

.hero-container,
.about-grid{

gap:50px;

}

.certificate-grid{

grid-template-columns:repeat(2,1fr);

}

.industry-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:991px){

.hero{

padding:80px 0;

}

.hero-container,
.about-grid,
.cta-wrapper{

display:grid;

grid-template-columns:1fr;

}

.hero-image{

order:-1;

}

.hero-image img{

height:450px;

}

.hero h1{

font-size:46px;

}

.services-grid,
.why-grid,
.blog-grid{

grid-template-columns:repeat(2,1fr);

}

.process-grid{

grid-template-columns:repeat(2,1fr);

}

.about-highlights{

grid-template-columns:repeat(2,1fr);

}

.cta-wrapper{

padding:50px 35px;

text-align:center;

}

.cta-buttons{

justify-content:center;

}

}


@media(max-width:768px){

.hero{

padding:60px 0;

}

.hero h1{

font-size:38px;

}

.section-title h2{

font-size:34px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.services-grid,
.why-grid,
.blog-grid,
.certificate-grid,
.industry-grid,
.process-grid,
.about-highlights{

grid-template-columns:1fr;

}

.hero-image img{

height:320px;

}

.hero-floating{

display:none;

}

.cta-content h2{

font-size:36px;

}

}


@media(max-width:576px){

.section-title{

margin-bottom:45px;

}

.section-title h2{

font-size:30px;

}

.hero p{

font-size:16px;

}

.stat-box{

width:100%;

}

.about-home,
.services-home,
.why-choose,
.certifications,
.industries,
.testing-process,
.cta-section,
.faq-section,
.latest-blogs{

padding:80px 0;

}

.blog-content{

padding:22px;

}

.cta-wrapper{

padding:35px 25px;

}

}

/*==========================================================
END OF HOME PAGE CSS
==========================================================*/
