/*==================================================
GSPL WEBSITE CSS
==================================================*/

/*=========================
RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=========================
CONTAINER
=========================*/

.gspl-container{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding:0 20px;
}

/*=========================
BUTTONS
=========================*/

.gspl-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#C32026;
    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(195,32,38,.25);

}

.gspl-btn:hover{

    background:#111;

    transform:translateY(-3px);

}

.gspl-btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 30px;

    border:2px solid #C32026;

    border-radius:50px;

    color:#C32026;

    font-weight:600;

    transition:.35s;

}

.gspl-btn-outline:hover{

    background:#C32026;

    color:#fff;

}

/*=========================
HEADER
=========================*/

.gspl-header{

    position:fixed;

    top:42px;

    left:0;

    width:100%;

    height:95px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.06);

    z-index:9999;

}

.gspl-header .gspl-container{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.gspl-logo{

    display:flex;

    align-items:center;

    height:100%;

}

.gspl-logo img{

    display:block;

    height:78px !important;

    width:auto !important;

    object-fit:contain;

}

.gspl-menu{

    display:flex;

    gap:34px;

}

.gspl-menu a{

    color:#111;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.gspl-menu a:hover{

    color:#C32026;

}

.gspl-toggle{

    display:none;

    border:none;

    background:none;

    font-size:28px;

    cursor:pointer;

}
/*=========================
TOP BAR
=========================*/

.gspl-topbar{

    height:42px;

    background:#111;

    color:#fff;

    font-size:14px;

}

.gspl-topbar .gspl-container{

    height:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.gspl-topbar-left,
.gspl-topbar-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.gspl-topbar a,
.gspl-topbar span{

    color:#fff;

    display:flex;

    align-items:center;

    gap:8px;

}

.gspl-topbar i{

    color:#C32026;

}

/*======================================
MEGA MENU
======================================*/

.gspl-dropdown{

    position:relative;

}

.gspl-dropdown>a{

    display:flex;

    align-items:center;

    gap:8px;

}

.gspl-dropdown>a i{

    font-size:12px;

    transition:.3s;

}

.gspl-dropdown:hover>a i{

    transform:rotate(180deg);

}

/* Mega Panel */

.gspl-mega-menu{

    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);

    width:350px;   /* Pehle 420px tha */

    background:#fff;
    border-radius:16px;
    padding:16px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;

}

.gspl-dropdown:hover .gspl-mega-menu{

    opacity:1;

    visibility:visible;

    top:100%;

}

/* LEFT */

.mega-left{

    padding:28px;

}

.mega-item{

display:block;

padding:12px 14px;

border-radius:12px;

margin-bottom:6px;

border:1px solid transparent;

transition:.3s;

}

.mega-item:hover{

background:#fafafa;

border-color:#C32026;

padding-left:24px;

}

.mega-item h4{

    color:#111;

    font-size:16px;

    margin-bottom:4px;

}
.mega-item p{

    font-size:13px;

    color:#666;

}

/*==================================================
GSPL ABOUT SECTION
PART-2
==================================================*/

/*==============================
ABOUT SECTION
==============================*/

.gspl-about{

    position:relative;

    padding:120px 0;

    background:#fff;

    overflow:hidden;

}

/*==============================
GRID
==============================*/

.gspl-about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

/*==============================
LEFT IMAGES
==============================*/

.about-images{

    position:relative;

}

.about-image-main{

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(0,0,0,.12);

}

.about-image-main img{

    width:100%;

    display:block;

    transition:.5s;

}

.about-image-main:hover img{

    transform:scale(1.05);

}

/*==============================
FLOATING IMAGE
==============================*/

.about-image-small{

    position:absolute;

    right:-40px;

    bottom:45px;

    width:230px;

    border-radius:20px;

    overflow:hidden;

    border:8px solid #fff;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.about-image-small img{

    width:100%;

    display:block;

}

/*==============================
EXPERIENCE BOX
==============================*/

.experience-box{

    position:absolute;

    left:-30px;

    bottom:35px;

    width:180px;

    padding:28px;

    background:#C32026;

    color:#fff;

    border-radius:18px;

    text-align:center;

    box-shadow:0 20px 45px rgba(195,32,38,.35);

}

.experience-box h2{

    font-size:52px;

    line-height:1;

    margin-bottom:10px;

    font-family:"Space Grotesk",sans-serif;

}

.experience-box span{

    display:block;

    font-size:15px;

    line-height:1.6;

}

/*==============================
RIGHT CONTENT
==============================*/

.about-content{

    position:relative;

}

.section-tag{

    display:inline-block;

    margin-bottom:20px;

    color:#C32026;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.about-content h2{

    font-size:46px;

    line-height:1.2;

    margin-bottom:25px;

    color:#111;

    font-family:"Space Grotesk",sans-serif;

}

.about-content p{

    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:22px;

}

/*==============================
FEATURES
==============================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.about-feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:16px;

    font-weight:600;

    color:#222;

}

.about-feature i{

    color:#C32026;

    font-size:18px;

}

/*==================================================
OUR PRODUCTS
==================================================*/

.gspl-products{

    padding:120px 0;

    background:#f8f9fc;

}

/*==========================
Heading
==========================*/

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-heading h2{

    font-size:46px;

    line-height:1.2;

    margin:18px 0;

    color:#111;

}

.section-heading p{

    font-size:17px;

    line-height:1.8;

    color:#666;

}

/*==========================
Grid
==========================*/

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==========================
Card
==========================*/

.product-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #ececec;

    transition:.35s ease;

    box-shadow:0 15px 45px rgba(0,0,0,.05);

}

.product-card:hover{

    transform:translateY(-8px);

    border-color:#C32026;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*==========================
Image
==========================*/

.product-image{

    position:relative;

    width:100%;

    height:260px;

    overflow:hidden;

    background:#fff;

}

.product-image img{

    display:block;

    width:100%;

    height:100%;

    object-fit:contain;

    transition:transform .5s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.05);

}

/*==========================
Content
==========================*/

.product-content{

    padding:28px;

}

.product-content h3{

    font-size:28px;

    color:#111;

    margin-bottom:15px;

    line-height:1.3;

}

.product-content p{

    font-size:15px;

    color:#666;

    line-height:1.8;

    margin-bottom:24px;

    min-height:78px;

}

/*==========================
Link
==========================*/

.product-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#C32026;

    font-weight:700;

    transition:.3s;

}

.product-content a i{

    transition:.3s;

}

.product-card:hover .product-content a{

    color:#111;

}

.product-card:hover .product-content a i{

    transform:translateX(8px);

}

/*==========================
Bottom Button
==========================*/

.products-btn{

    margin-top:60px;

    text-align:center;

}

/*==================================================
INDUSTRIES SECTION
==================================================*/

.gspl-industries{

    padding:120px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

/*==============================
GRID
==============================*/

.industries-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

/*==============================
CARD
==============================*/

.industry-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:45px 35px;

    text-align:center;

    transition:.35s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;

}

.industry-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#C32026;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.industry-card:hover::before{

    transform:scaleX(1);

}

.industry-card:hover{

    transform:translateY(-10px);

    border-color:#C32026;

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

/*==============================
ICON
==============================*/

.industry-icon{

    width:90px;

    height:90px;

    margin:0 auto 28px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#C32026,#8E1116);

    box-shadow:0 15px 35px rgba(195,32,38,.25);

    transition:.35s;

}

.industry-icon i{

    font-size:36px;

    color:#fff;

}

.industry-card:hover .industry-icon{

    transform:rotateY(180deg);

}

/*==============================
CONTENT
==============================*/

.industry-card h3{

    font-size:24px;

    color:#111;

    margin-bottom:18px;

    font-family:"Space Grotesk",sans-serif;

}

.industry-card p{

    color:#666;

    font-size:15px;

    line-height:1.8;

}
.industry-card:hover .industry-icon{

    background:linear-gradient(135deg,#111,#333);

}
/*==================================================
WHY CHOOSE GSPL
==================================================*/

.gspl-why{

    padding:120px 0;

    background:#f8f9fc;

    position:relative;

    overflow:hidden;

}

/*==============================
GRID
==============================*/

.gspl-why-wrapper{

    display:grid;

    grid-template-columns:48% 52%;

    gap:80px;

    align-items:center;

}

/*==============================
IMAGE
==============================*/

.why-image{

    position:relative;

}

.why-image img{

    width:100%;

    display:block;

    border-radius:24px;

    box-shadow:0 25px 70px rgba(0,0,0,.12);

}

/*==============================
BADGE
==============================*/

.why-badge{

    position:absolute;

    right:-25px;

    bottom:40px;

    width:170px;

    padding:28px 20px;

    background:#C32026;

    color:#fff;

    border-radius:20px;

    text-align:center;

    box-shadow:0 18px 45px rgba(195,32,38,.35);

}

.why-badge h2{

    font-size:52px;

    line-height:1;

    margin-bottom:10px;

    font-family:"Space Grotesk",sans-serif;

}

.why-badge span{

    display:block;

    font-size:15px;

    line-height:1.6;

}

/*==============================
CONTENT
==============================*/

.why-content h2{

    font-size:46px;

    line-height:1.2;

    color:#111;

    margin:18px 0 24px;

    font-family:"Space Grotesk",sans-serif;

}

.why-content>p{

    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:40px;

}

/*==============================
FEATURE GRID
==============================*/

.why-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

/*==============================
FEATURE CARD
==============================*/

.why-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px;

    background:#fff;

    border-radius:18px;

    border:1px solid #ececec;

    transition:.35s ease;

}

.why-item:hover{

    transform:translateY(-8px);

    border-color:#C32026;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

/*==============================
ICON
==============================*/

.why-icon{

    width:62px;

    height:62px;

    flex-shrink:0;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#C32026;

    color:#fff;

    font-size:24px;

    transition:.35s;

}

.why-item:hover .why-icon{

    background:#111;

    transform:rotateY(180deg);

}

/*==============================
TEXT
==============================*/

.why-text h4{

    font-size:18px;

    color:#111;

    margin-bottom:8px;

    font-family:"Space Grotesk",sans-serif;

}

.why-text p{

    font-size:14px;

    line-height:1.7;

    color:#666;

}

/*==============================
BUTTON
==============================*/

.why-btn{

    margin-top:45px;

}
/*==================================================
MANUFACTURING PROCESS
==================================================*/

.gspl-process{

    padding:120px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

/*==============================
GRID
==============================*/

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

    position:relative;

}

/* Connecting Line */

.process-grid::before{

    content:"";

    position:absolute;

    top:65px;

    left:12%;

    width:76%;

    height:2px;

    background:#e5e5e5;

    z-index:0;

}

/*==============================
CARD
==============================*/

.process-card{

    position:relative;

    z-index:2;

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:35px 28px;

    text-align:center;

    transition:.35s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:#C32026;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*==============================
STEP NUMBER
==============================*/

.process-number{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    width:46px;

    height:46px;

    border-radius:50%;

    background:#111;

    color:#fff;

    font-size:16px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

/*==============================
ICON
==============================*/

.process-icon{

    width:90px;

    height:90px;

    margin:30px auto 24px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#C32026,#8E1116);

    color:#fff;

    font-size:34px;

    box-shadow:0 15px 35px rgba(195,32,38,.25);

    transition:.35s;

}

.process-card:hover .process-icon{

    transform:rotateY(180deg);

    background:#111;

}

/*==============================
CONTENT
==============================*/

.process-card h3{

    font-size:22px;

    color:#111;

    margin-bottom:15px;

    line-height:1.35;

    font-family:"Space Grotesk",sans-serif;

}

.process-card p{

    font-size:15px;

    color:#666;

    line-height:1.8;

}

/*==============================
HOVER TOP BAR
==============================*/

.process-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#C32026;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.process-card:hover::before{

    transform:scaleX(1);

}
/*==================================================
INFRASTRUCTURE & FACILITY
==================================================*/

.gspl-infra{

    padding:120px 0;

    background:#f8f9fc;

    overflow:hidden;

}

/*==============================
GRID
==============================*/

.infra-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    grid-template-rows:repeat(3,220px);

    gap:22px;

    margin-top:70px;

}

/*==============================
ITEM
==============================*/

.infra-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.infra-large{

    grid-row:1 / 4;

}

/*==============================
IMAGE
==============================*/

.infra-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .7s ease;

}

.infra-item:hover img{

    transform:scale(1.08);

}

/*==============================
OVERLAY
==============================*/

.infra-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:30px;

    background:linear-gradient(
    to top,
    rgba(0,0,0,.78),
    rgba(0,0,0,.10),
    transparent
    );

    transition:.35s;

}

.infra-item:hover .infra-overlay{

    background:linear-gradient(
    to top,
    rgba(195,32,38,.82),
    rgba(195,32,38,.18),
    transparent
    );

}

/*==============================
TITLE
==============================*/

.infra-overlay h3{

    color:#fff;

    font-size:26px;

    font-family:"Space Grotesk",sans-serif;

    line-height:1.3;

}

/*==============================
BOTTOM
==============================*/

.infra-bottom{

    margin-top:70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.infra-text{

    max-width:700px;

}

.infra-text h3{

    font-size:40px;

    margin-bottom:20px;

    color:#111;

    font-family:"Space Grotesk",sans-serif;

}

.infra-text p{

    font-size:17px;

    color:#666;

    line-height:1.9;

}

.infra-button{

    flex-shrink:0;

}

/*==============================
HOVER BORDER
==============================*/

.infra-item::after{

    content:"";

    position:absolute;

    inset:0;

    border:3px solid transparent;

    border-radius:24px;

    transition:.35s;

}

.infra-item:hover::after{

    border-color:#C32026;

}
/*==================================================
CALL TO ACTION
==================================================*/

.gspl-cta{

    padding:120px 0;

    position:relative;

    background:url("../images/cta/cta-bg.webp") center center/cover no-repeat;

    overflow:hidden;

}

/*==============================
OVERLAY
==============================*/

.gspl-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(17,17,17,.92),
        rgba(195,32,38,.88)
    );

}

.gspl-cta .gspl-container{

    position:relative;

    z-index:2;

}

/*==============================
WRAPPER
==============================*/

.cta-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:center;

}

/*==============================
LEFT
==============================*/

.cta-content{

    color:#fff;

}

.cta-content .section-tag{

    color:#fff;

    border-color:rgba(255,255,255,.25);

}

.cta-content h2{

    font-size:54px;

    line-height:1.18;

    margin:22px 0;

    color:#fff;

    font-family:"Space Grotesk",sans-serif;

}

.cta-content p{

    font-size:17px;

    line-height:1.9;

    color:rgba(255,255,255,.85);

    max-width:700px;

    margin-bottom:40px;

}

/*==============================
BUTTONS
==============================*/

.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.cta-buttons .hero-btn-outline{

    border-color:#fff;

    color:#fff;

}

.cta-buttons .hero-btn-outline:hover{

    background:#fff;

    color:#111;

}

/*==============================
RIGHT BOX
==============================*/

.cta-box{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:24px;

    padding:35px;

}

/*==============================
ITEM
==============================*/

.cta-item{

    display:flex;

    align-items:center;

    gap:18px;

    color:#fff;

    padding:18px 0;

}

.cta-item:not(:last-child){

    border-bottom:1px solid rgba(255,255,255,.12);

}

.cta-item i{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    color:#C32026;

    font-size:24px;

    flex-shrink:0;

    transition:.35s;

}

.cta-item:hover i{

    background:#111;

    color:#fff;

    transform:rotate(360deg);

}

.cta-item span{

    display:block;

    font-size:14px;

    color:rgba(255,255,255,.70);

    margin-bottom:5px;

}

.cta-item h4{

    font-size:20px;

    color:#fff;

    font-family:"Space Grotesk",sans-serif;

}

/*==============================
HOVER EFFECT
==============================*/

.cta-box:hover{

    transform:translateY(-8px);

    transition:.35s ease;

}
/*==================================================
FOOTER
==================================================*/

.gspl-footer{

    background:#111;

    color:#fff;

    padding:90px 0 0;

    position:relative;

    overflow:hidden;

}

/*==============================
GRID
==============================*/

.footer-grid{

    display:grid;

    grid-template-columns:1.4fr 1fr 1fr 1.2fr;

    gap:50px;

    padding-bottom:60px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

/*==============================
LOGO
==============================*/

.footer-logo{

    display:inline-block;

    margin-bottom:25px;

}

.footer-logo img{

    height:65px;

}

/*==============================
COMPANY TEXT
==============================*/

.footer-col p{

    color:rgba(255,255,255,.70);

    line-height:1.9;

    font-size:15px;

}

/*==============================
HEADING
==============================*/

.footer-col h3{

    font-size:22px;

    color:#fff;

    margin-bottom:30px;

    position:relative;

    font-family:"Space Grotesk",sans-serif;

}

.footer-col h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-12px;

    width:45px;

    height:3px;

    background:#C32026;

    border-radius:30px;

}

/*==============================
LINKS
==============================*/

.footer-col ul{

    list-style:none;

}

.footer-col ul li{

    margin-bottom:16px;

}

.footer-col ul li a{

    color:rgba(255,255,255,.75);

    transition:.35s;

}

.footer-col ul li a:hover{

    color:#fff;

    padding-left:8px;

}

/*==============================
CONTACT
==============================*/

.footer-contact li{

    display:flex;

    gap:15px;

    align-items:flex-start;

}

.footer-contact i{

    color:#C32026;

    width:20px;

    margin-top:4px;

    flex-shrink:0;

}

.footer-contact span{

    color:rgba(255,255,255,.75);

    line-height:1.8;

}

/*==============================
SOCIAL
==============================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#C32026;

    transform:translateY(-5px);

}

/*==============================
BOTTOM
==============================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:28px 0;

    flex-wrap:wrap;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.65);

    font-size:14px;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.footer-bottom-links a{

    color:rgba(255,255,255,.65);

    font-size:14px;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#fff;

}

.footer-bottom p a{

    color:#C32026;

    font-weight:600;

}

.footer-bottom p a:hover{

    color:#fff;

}
