/*==========================================
        GOOGLE FONT & RESET
==========================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#08111d;
color:#ffffff;
overflow-x:hidden;

}

a{
text-decoration:none;
color:inherit;
}

img{
max-width:100%;
display:block;
}

ul{
list-style:none;
}

.container{

width:90%;
max-width:1400px;
margin:auto;

}

/*==========================================
        FKG PREMIUM LOADER
==========================================*/

#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#041221,#0a2747,#103d69);

z-index:999999;

overflow:hidden;

transition:1s;

}

.loader-content{

text-align:center;

animation:fadeUp 1s ease;

}

.loader-logo{

width:90px;

margin-bottom:20px;

animation:floatLogo 2s infinite;

}

.loader-content h1{

font-size:58px;

font-weight:800;

letter-spacing:4px;

color:#ffffff;

margin-bottom:10px;

}

.loader-content h2{

font-size:17px;

letter-spacing:6px;

font-weight:500;

color:#00c8ff;

margin-bottom:35px;

text-transform:uppercase;

}

.loader-world{

font-size:55px;

color:#00c8ff;

margin-bottom:35px;

animation:spin 8s linear infinite;

}

.loader-bar{

width:320px;

height:5px;

background:#173756;

border-radius:30px;

overflow:hidden;

margin:auto;

}

.loader-fill{

width:0;

height:100%;

background:linear-gradient(90deg,#0077ff,#00f2ff);

box-shadow:0 0 25px #00c8ff;

animation:load 2.8s forwards;

}

.loader-bottom{

margin-top:25px;

font-size:14px;

letter-spacing:4px;

color:#ffffff;

animation:blink 1.5s infinite;

}

@keyframes load{

100%{

width:100%;

}

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

@keyframes floatLogo{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

@keyframes blink{

50%{

opacity:.4;

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@media(max-width:768px){

.loader-logo{

width:70px;

}

.loader-content h1{

font-size:38px;

}

.loader-content h2{

font-size:13px;

letter-spacing:3px;

}

.loader-bar{

width:230px;

}

.loader-bottom{

font-size:12px;

}

}
/*==========================================
        FLOATING PARTICLES
==========================================*/

.particles{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
overflow:hidden;
z-index:-1;

}

.particles span{

position:absolute;
display:block;
border-radius:50%;
background:rgba(0,183,255,.15);
animation:float 18s linear infinite;

}

.particles span:nth-child(1){

width:15px;
height:15px;
left:8%;
animation-duration:14s;

}

.particles span:nth-child(2){

width:28px;
height:28px;
left:20%;
animation-duration:18s;

}

.particles span:nth-child(3){

width:18px;
height:18px;
left:35%;
animation-duration:20s;

}

.particles span:nth-child(4){

width:30px;
height:30px;
left:48%;
animation-duration:15s;

}

.particles span:nth-child(5){

width:12px;
height:12px;
left:60%;
animation-duration:22s;

}

.particles span:nth-child(6){

width:24px;
height:24px;
left:74%;
animation-duration:17s;

}

.particles span:nth-child(7){

width:35px;
height:35px;
left:88%;
animation-duration:23s;

}

.particles span:nth-child(8){

width:16px;
height:16px;
left:96%;
animation-duration:19s;

}

@keyframes float{

0%{

transform:translateY(110vh) scale(.2);
opacity:0;

}

15%{

opacity:1;

}

85%{

opacity:1;

}

100%{

transform:translateY(-120vh) scale(1.8);
opacity:0;

}

}


/*==========================================
        HEADER
==========================================*/

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding: 15px;
    background:rgba(8,16,25,.25);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    transition:transform .35s ease;
}
#header.active{

background:rgba(8,17,29,.75);
backdrop-filter:blur(18px);
box-shadow:0 8px 35px rgba(0,0,0,.35);

}


#header.scrolled{
    background:#ffffff;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.nav{

display:flex;
align-items:center;
justify-content:space-between;

}

.logo img{

height:65px;

}

nav ul{

display:flex;
gap:40px;

}

nav ul li a{

font-weight:500;
transition:.3s;

}

nav ul li a:hover{

color:#00b7ff;

}

.quote-btn{

padding:14px 32px;
border-radius:50px;
background:linear-gradient(135deg,#0077ff,#00b7ff);
font-weight:600;
transition:.35s;

}

.quote-btn:hover{

transform:translateY(-3px);
box-shadow:0 15px 30px rgba(0,183,255,.35);

}

.menu-btn{

display:none;
flex-direction:column;
gap:5px;
cursor:pointer;

}

.menu-btn span{

width:28px;
height:3px;
background:#fff;
border-radius:30px;

}


@media (max-width:767px){

#header{

    padding:0;

}

#header .nav{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 15px;

}

/* Logo */

.logo img{

width:100px;
height:70px;
max-width:140px;
object-fit:contain;
display:block;

}

/* Hide Desktop Menu */

nav{

    display:none;

}

/* Hide Desktop Button */

.quote-btn{

    display:none;

}

/*==========================================
        HAMBURGER ANIMATION
==========================================*/

.menu-btn{
    width:36px;
    height:28px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
    z-index:10001;
}

.menu-btn span{
    width:100%;
    height:3px;
    background:#fff;
    border-radius:50px;
    transition:.35s ease;
    transform-origin:center;
}

/* X Animation */

.menu-btn.active span:nth-child(1){
    transform:translateY(12px) rotate(45deg);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
}

.menu-btn.active span:nth-child(3){
    transform:translateY(-12px) rotate(-45deg);
}

}
/*==========================================
        GLOBAL MOBILE HEADER FIX
==========================================*/

@media (max-width:768px){

    #header{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:78px;
        box-sizing:border-box;
        z-index:9999;
    }

    /* Push the page content below the fixed header */
    body{
        padding-top:78px;
    }

}
/*==========================================
        HERO SECTION
==========================================*/

.hero{
width:100%;
min-height:100vh;
display:grid;
grid-template-columns:1.1fr 1fr;
align-items:center;
gap:80px;
padding:170px 8% 120px;
position:relative;
overflow:hidden;
}


.hero-left{
position:relative;
z-index:2;
animation:fadeLeft 1.2s ease;

}

.mini-title{
display:inline-block;
padding:10px 22px;
background:rgba(0,183,255,.12);
border:1px solid rgba(0,183,255,.35);
border-radius:40px;
color:#00b7ff;
font-size:13px;
font-weight:600;
letter-spacing:2px;
margin-bottom:30px;
text-transform:uppercase;
backdrop-filter:blur(12px);
}

.hero h1{
font-size:72px;
font-weight:800;
line-height:1.08;
color:#fff;
margin-bottom:28px;
}

.hero h1 span{
color:#00b7ff;
}

.hero p{
font-size:18px;
line-height:1.9;
color:#a9bdd4;
max-width:640px;
margin-bottom:45px;
}

.hero-buttons{
display:flex;
gap:22px;
margin-bottom:60px;
flex-wrap:wrap;
}

.btn1,
.btn2{
padding:18px 42px;
border-radius:60px;
font-weight:700;
font-size:15px;
transition:.45s;
position:relative;
overflow:hidden;
text-decoration:none;
}





/* Keep button width fixed */
.btn1,
.btn2{
    min-width:190px;
    text-align:center;
    white-space:nowrap;
}

/*tablet btn*/


@media (max-width:1200px){
.hero-buttons{
    justify-content:center;
    gap:18px;
}

.btn1,
.btn2{
    min-width:190px;
    width:auto;
}
}
/*mobile btn*/


@media (max-width:767px){

.hero-buttons{
    display:flex;
    flex-direction:column;
    align-content:center;
    justify-content:center;
    gap:14px;
}

.btn1,
.btn2{
    width:auto;          /* Don't stretch */
    min-width:220px;     /* Same width */
    max-width:220px;     /* Keep equal width */
    text-align:center;
    margin:0 auto;
}

}

.btn1{
background:linear-gradient(135deg,#00b7ff,#0077ff);
color:#fff;
box-shadow:0 20px 50px rgba(0,120,255,.35);
}

.btn1:hover{
transform:translateY(-8px);
box-shadow:0 35px 70px rgba(0,120,255,.5);
}

.btn2{
border:2px solid rgba(255,255,255,.18);
color:#fff;
background:rgba(255,255,255,.05);
backdrop-filter:blur(12px);
}

.btn2:hover{
background:#fff;
color:#08111d;
transform:translateY(-8px);
}

.hero-info{
display:flex;
gap:45px;
flex-wrap:wrap;
}

.hero-info div{
padding-right:25px;
border-right:1px solid rgba(255,255,255,.15);
}

.hero-info div:last-child{
border-right:none;
}

.hero-info h2{
font-size:36px;
color:#fff;
margin-bottom:8px;
}

.hero-info span{
font-size:15px;
color:#8da7c5;
}


/*==========================
RIGHT SIDE
==========================*/

.hero-right{
position:relative;
display:flex;
justify-content:center;
align-items:center;
animation:fadeRight 1.2s ease;
}

.hero-circle{
position:absolute;
width:560px;
height:560px;
border-radius:50%;
background:radial-gradient(circle,#00b7ff55,transparent 70%);
filter:blur(15px);
animation:circleMove 7s infinite ease-in-out;
}

.hero-right img{
width:100%;
max-width:520px;
position:relative;
z-index:3;
animation:floatImage 5s ease-in-out infinite;
filter:drop-shadow(0 40px 80px rgba(0,0,0,.45));
}

/*==========================
FLOATING BADGES
==========================*/

.floating-card{
position:absolute;
padding:16px 24px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.12);
border-radius:18px;
color:#fff;
font-weight:700;
letter-spacing:1px;
box-shadow:0 20px 45px rgba(0,0,0,.3);
animation:floatCard 4s infinite ease-in-out;
z-index:5;
}

.card1{
top:10%;
left:-30px;
}

.card2{
top:55%;
right:-40px;
animation-delay:1.5s;
}

.card3{
bottom:30px;
left:50%;
transform:translateX(-50%);
animation-delay:3s;
}

/*==========================
ANIMATIONS
==========================*/

@keyframes fadeLeft{

0%{
opacity:0;
transform:translateX(-80px);
}

100%{
opacity:1;
transform:translateX(0);
}

}

@keyframes fadeRight{

0%{
opacity:0;
transform:translateX(80px);
}

100%{
opacity:1;
transform:translateX(0);
}

}

@keyframes floatImage{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(-22px);
}

}

@keyframes circleMove{

0%,100%{
transform:scale(1);
}

50%{
transform:scale(1.12);
}

}

@keyframes floatCard{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(-15px);
}

}

/*==========================================
        COMPANY SECTION
==========================================*/

.company{
padding:120px 8%;
position:relative;
overflow:hidden;
}

.company::before{
content:"";
position:absolute;
width:700px;
height:700px;
background:radial-gradient(circle,#0077ff22,transparent 70%);
left:-300px;
top:-200px;
pointer-events:none;
}

.company-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:90px;
align-items:center;
position:relative;
z-index:2;
}

.company-image{
position:relative;
}

.image-frame{
position:relative;
border-radius:35px;
overflow:hidden;
box-shadow:0 35px 80px rgba(0,0,0,.45);
}

.image-frame img{
width:100%;
display:block;
transition:1s;
}

.image-frame:hover img{
transform:scale(1.08);
}

.image-frame::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(to top,
rgba(0,0,0,.35),
transparent);
}

.experience-badge{
position:absolute;
right:-20px;
bottom:35px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.15);
padding:25px;
border-radius:22px;
text-align:center;
box-shadow:0 25px 50px rgba(0,0,0,.35);
animation:floatCard 5s infinite;
}

.experience-badge h2{
font-size:44px;
color:#00b7ff;
margin-bottom:5px;
}

.experience-badge span{
color:#fff;
font-size:14px;
}

.company-text{
animation:fadeRight 1s ease;
}

.section-mini{
display:inline-block;
padding:8px 18px;
border-radius:30px;
background:rgba(0,183,255,.12);
border:1px solid rgba(0,183,255,.3);
color:#00b7ff;
font-size:13px;
font-weight:600;
letter-spacing:2px;
margin-bottom:20px;
}

.company-text h2{
font-size:52px;
color:#fff;
margin-bottom:25px;
line-height:1.2;
}

.company-text p{
font-size:17px;
line-height:1.9;
color:#9fb4cb;
margin-bottom:35px;
}

.company-list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-bottom:45px;
}

.company-list div{
display:flex;
align-items:center;
gap:12px;
font-size:16px;
color:#fff;
transition:.35s;
}

.company-list div:hover{
transform:translateX(10px);
color:#00b7ff;
}

.company-list i{
font-size:18px;
color:#00b7ff;
}

/*==========================================
        STATISTICS
==========================================*/

.stats{
padding:80px 8% 120px;
position:relative;
}

.stats-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.stat-box{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(18px);
padding:45px 25px;
border-radius:25px;
text-align:center;
transition:.45s;
position:relative;
overflow:hidden;
}

.stat-box::before{
content:"";
position:absolute;
width:180px;
height:180px;
background:radial-gradient(circle,#00b7ff55,transparent);
top:-80px;
right:-80px;
transition:.45s;
}

.stat-box:hover{
transform:translateY(-12px);
border-color:#00b7ff;
box-shadow:0 30px 70px rgba(0,183,255,.18);
}

.stat-box:hover::before{
transform:scale(1.4);
}

.stat-box h2{
font-size:52px;
font-weight:800;
color:#00b7ff;
margin-bottom:10px;
}

.stat-box p{
font-size:17px;
color:#d7e6f5;
}

/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:1100px){

.company-container{
grid-template-columns:1fr;
gap:60px;
}

.stats-container{
grid-template-columns:repeat(2,1fr);
}

.company-list{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.company{
padding:90px 6%;
}

.company-text h2{
font-size:38px;
}

.stats-container{
grid-template-columns:1fr;
}

.experience-badge{
position:relative;
right:auto;
bottom:auto;
margin-top:20px;
display:inline-block;
}

}

/*==========================================
        SECTION TITLE
==========================================*/

.section-title{
text-align:center;
margin-bottom:80px;
}

.section-title p{
display:inline-block;
padding:10px 22px;
background:rgba(0,183,255,.12);
border:1px solid rgba(0,183,255,.35);
border-radius:40px;
color:#00b7ff;
font-size:13px;
font-weight:600;
letter-spacing:2px;
margin-bottom:20px;
text-transform:uppercase;
}

.section-title h2{
font-size:52px;
color:#fff;
font-weight:800;
}

/*==========================================
        PROCESS SECTION
==========================================*/

.process{
padding:130px 8%;
position:relative;
overflow:hidden;
}

.process::before{
content:"";
position:absolute;
width:700px;
height:700px;
background:radial-gradient(circle,#0077ff22,transparent 70%);
right:-250px;
top:-250px;
pointer-events:none;
}

/*==========================================
        TIMELINE
==========================================*/

.process-line{
position:relative;
max-width:1200px;
margin:auto;
}

.process-line::before{
content:"";
position:absolute;
left:50%;
top:0;
width:4px;
height:100%;
background:linear-gradient(#00b7ff,#0077ff);
transform:translateX(-50%);
border-radius:30px;
}

/*==========================================
        STEP
==========================================*/

.step{
display:flex;
justify-content:flex-start;
position:relative;
margin-bottom:80px;
}

.step:nth-child(even){
justify-content:flex-end;
}

.step-box{
width:43%;
background:rgba(255,255,255,.05);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.08);
padding:35px;
border-radius:25px;
transition:.45s;
position:relative;
overflow:hidden;
}

.step-box::before{
content:"";
position:absolute;
width:180px;
height:180px;
background:radial-gradient(circle,#00b7ff55,transparent);
right:-80px;
top:-80px;
transition:.4s;
}

.step-box:hover{
transform:translateY(-12px);
border-color:#00b7ff;
box-shadow:0 25px 60px rgba(0,183,255,.25);
}

.step-box:hover::before{
transform:scale(1.4);
}

.step-box i{
font-size:42px;
color:#00b7ff;
margin-bottom:20px;
}

.step-box h3{
font-size:28px;
color:#fff;
margin-bottom:15px;
}

.step-box p{
font-size:16px;
line-height:1.9;
color:#9fb4cb;
}

/*==========================================
        STEP NUMBER
==========================================*/

.step-number{
position:absolute;
left:50%;
top:25px;
transform:translateX(-50%);
width:70px;
height:70px;
border-radius:50%;
background:linear-gradient(135deg,#00b7ff,#0077ff);
display:flex;
justify-content:center;
align-items:center;
font-size:22px;
font-weight:700;
color:#fff;
box-shadow:0 15px 40px rgba(0,183,255,.35);
z-index:5;
animation:pulseStep 2.5s infinite;
}

@keyframes pulseStep{

0%{
transform:translateX(-50%) scale(1);
}

50%{
transform:translateX(-50%) scale(1.12);
}

100%{
transform:translateX(-50%) scale(1);
}

}

/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:1100px){

.process-line::before{
left:35px;
}

.step,
.step:nth-child(even){
justify-content:flex-start;
padding-left:90px;
}

.step-box{
width:100%;
}

.step-number{
left:35px;
transform:none;
}

}

@media(max-width:768px){

.section-title h2{
font-size:38px;
}

.process{
padding:90px 6%;
}

.step-box{
padding:28px;
}

.step-box h3{
font-size:24px;
}

.step-box i{
font-size:34px;
}

}


/*==========================================
        PRODUCT CATEGORIES
==========================================*/

.categories{
    padding:130px 8%;
    position:relative;
    overflow:hidden;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;
}

.category-card{
    position:relative;
    display:block;
    width:100%;
    height:auto;
    border-radius:28px;
    overflow:hidden;
    cursor:pointer;
    text-decoration:none;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    transition:.5s;
    background:#111820;
}

/*==========================================
        CATEGORY IMAGE
==========================================*/

.category-card img{
    display:block;
    width:100%;
    height:auto;
    max-width:100%;

    object-fit:initial;
    object-position:center;

    filter:none;
    opacity:1;

    transition:transform .8s ease;
}

/*==========================================
        HOVER OVERLAY
==========================================*/

.category-card::before{
    content:"";
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.20);

    opacity:0;
    transition:.35s;

    z-index:1;
}

/*==========================================
        CATEGORY TEXT
==========================================*/

.category-overlay{
    position:absolute;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:2;

    pointer-events:none;
}

.category-overlay h3{
    color:#fff;

    font-size:30px;
    font-weight:700;

    text-align:center;

    transform:translateY(25px);
    opacity:0;

    transition:.35s;

    text-shadow:0 3px 15px rgba(0,0,0,.8);
}

/*==========================================
        HOVER
==========================================*/

.category-card:hover{
    transform:translateY(-15px);
}

.category-card:hover img{
    transform:scale(1.06);
}

.category-card:hover::before{
    opacity:1;
}

.category-card:hover .category-overlay h3{
    opacity:1;
    transform:translateY(0);
}


/*==========================
        TABLET
==========================*/

@media(max-width:1100px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:22px;
    }

}

@media (max-width: 768px){

    .category-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:12px;
    }

    .category-card{
        height:170px;
        border-radius:16px;
    }

    .category-card img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .category-overlay h3{
        font-size:16px;
    }


}


@media (max-width: 768px){

    .categories{
        padding: 60px 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .category-grid{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
        margin-top: 30px;
    }

    .category-card{
        width: 100%;
        height: 155px;
        min-height: 155px;
        aspect-ratio: auto;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
    }

    .category-card img{
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        filter: none !important;
        opacity: 1 !important;
        transform: none;
    }

    /* Show title on mobile without hover */
    .category-overlay{
        position: absolute;
        inset: auto 0 0 0;
        height: auto;
        padding: 35px 8px 10px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        background: linear-gradient(
            to top,
            rgba(0,0,0,.75),
            transparent
        );
    }

    .category-overlay h3{
        font-size: 14px;
        line-height: 1.2;
        opacity: 1;
        transform: none;
        margin: 0;
        text-align: center;
    }

    /* Disable desktop hover movement on mobile */
    .category-card:hover{
        transform: none;
    }

    .category-card:hover img{
        transform: none;
    }

    .category-card:hover::before{
        opacity: 0;
    }

}/* ==========================================
   FIX CATEGORY IMAGE DARKNESS
========================================== */

.category-card {
    background: transparent !important;
}

/* Keep original image colors */
.category-card img {
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

/* Remove dark layer */
.category-card::before {
    background: transparent !important;
    opacity: 0 !important;
}

/* Keep overlay only for text if needed */
.category-overlay {
    background: transparent !important;
}

/*==========================================
      FEATURED PRODUCTS
==========================================*/

.featured-products{
    padding:130px 0;
    overflow:hidden;

}
.myCoverflow{
    width:100%;
    overflow:visible;
}

.myCoverflow .swiper-slide{
    width:320px;
    height:auto;
    transition:.45s;
}

.featured-card{
    display:block;
    text-decoration:none;
    background:#101827;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.featured-image{
    height:280px;
    overflow:hidden;
}

.featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.featured-info{
    padding:22px;
    text-align:center;
}

.featured-badge{
    display:inline-block;
    padding:6px 16px;
    border-radius:30px;
    background:#00b7ff;
    color:#fff;
    font-size:12px;
    margin-bottom:12px;
}

.featured-info h3{
    font-size:24px;
    color:#fff;
    margin-bottom:8px;
}

.featured-info p{
    color:#b8c4d8;
    font-size:14px;
}

.swiper-slide-active{
    transform:scale(1.08) translateY(-18px);
    z-index:100;
}

.swiper-slide-active .featured-card{
    box-shadow:0 25px 70px rgba(0,183,255,.35);
}

/* ---------- Desktop ---------- */

@media(min-width:1400px){

.myCoverflow .swiper-slide{
    width:250px;
}

.swiper-button-prev{
    left:5px;
}

.swiper-button-next{
    right:5px;
}
}

/* ---------- Laptop ---------- */

@media(max-width:1200px){

.myCoverflow .swiper-slide{
    width:300px;
}

}

/* ---------- Tablet ---------- */

@media(max-width:768px){

.myCoverflow .swiper-slide{
    width:50%;
}

}

/* ---------- Mobile ---------- */

@media(max-width:576px){

.myCoverflow .swiper-slide{
    width:50%;
}

.featured-image{
    height:220px;
}

.featured-info h3{
    font-size:20px;
}

.swiper-slide-active{
    transform:scale(1);
}

}
/*==========================================
        WHY CHOOSE US
==========================================*/

.why-us{

padding:130px 8%;

position:relative;

overflow:hidden;

}

.why-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.why-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:28px;

padding:45px 35px;

transition:.45s;

position:relative;

overflow:hidden;

backdrop-filter:blur(15px);

}

.why-card::before{

content:"";

position:absolute;

width:220px;

height:220px;

background:radial-gradient(circle,#00b7ff55,transparent);

top:-120px;

right:-120px;

transition:.5s;

}

.why-card:hover{

transform:translateY(-15px);

border-color:#00b7ff;

box-shadow:0 30px 70px rgba(0,183,255,.2);

}

.why-card:hover::before{

transform:scale(1.4);

}

.why-icon{

width:85px;

height:85px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#00b7ff,#0077ff);

font-size:34px;

color:#fff;

margin-bottom:28px;

transition:.4s;

}

.why-card:hover .why-icon{

transform:rotate(360deg);

}

.why-card h3{

font-size:28px;

color:#fff;

margin-bottom:18px;

}

.why-card p{

font-size:16px;

line-height:1.9;

color:#a8bdd4;

}

/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:1100px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

.why-card{

padding:35px 28px;

}

}


/*==========================================
        FACTORY GALLERY
==========================================*/

.factory-gallery{

padding:130px 8%;

}

.gallery-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

grid-auto-rows:280px;

gap:25px;

margin-top:70px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:25px;

cursor:pointer;

box-shadow:0 20px 60px rgba(0,0,0,.30);

}

.gallery-item.large{

grid-row:span 2;

}

.gallery-item img{

width:100%;

height:100%;

object-fit:cover;

transition:1s;

}

.gallery-item::after{

content:"";

position:absolute;

inset:0;

background:linear-gradient(to top,

rgba(0,0,0,.65),

transparent);

opacity:.6;

transition:.4s;

}

.gallery-item:hover img{

transform:scale(1.12);

}

.gallery-item:hover::after{

opacity:1;

background:linear-gradient(to top,

rgba(0,183,255,.30),

rgba(0,0,0,.15));

}

@media(max-width:1100px){

.gallery-grid{

grid-template-columns:1fr 1fr;

}

.gallery-item.large{

grid-row:auto;

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

grid-auto-rows:260px;

}

}


/*==========================================
        TESTIMONIALS
==========================================*/

.testimonials{

padding:130px 8%;

position:relative;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.testimonial-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(15px);

padding:40px;

border-radius:25px;

transition:.45s;

}

.testimonial-card:hover{

transform:translateY(-12px);

border-color:#00b7ff;

box-shadow:0 25px 60px rgba(0,183,255,.18);

}

.stars{

margin-bottom:25px;

}

.stars i{

color:#FFD700;

margin-right:4px;

font-size:18px;

}

.testimonial-card p{

color:#cfdceb;

line-height:1.9;

font-size:16px;

margin-bottom:30px;

font-style:italic;

}

.client{

display:flex;

align-items:center;

gap:15px;

}

.client img{

width:65px;

height:65px;

border-radius:50%;

object-fit:cover;

border:3px solid #00b7ff;

}

.client h4{

color:#fff;

margin-bottom:5px;

}

.client span{

color:#9fb4cb;

font-size:14px;

}

@media(max-width:1100px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonial-grid{

grid-template-columns:1fr;

}

}


/*==========================================
        CALL TO ACTION
==========================================*/

.cta{

padding:130px 8%;

position:relative;

overflow:hidden;

}

.cta-container{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:70px;

align-items:center;

background:linear-gradient(135deg,#0f1b2d,#152742);

padding:70px;

border-radius:35px;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 35px 80px rgba(0,0,0,.30);

}

.cta h2{

font-size:54px;

color:#fff;

margin:20px 0;

line-height:1.2;

}

.cta p{

font-size:17px;

color:#a9bdd4;

line-height:1.9;

margin-bottom:35px;

}

.cta-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.contact-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

padding:35px;

margin-bottom:25px;

transition:.4s;

backdrop-filter:blur(15px);

}

.contact-card:hover{

transform:translateY(-10px);

border-color:#00b7ff;

box-shadow:0 25px 60px rgba(0,183,255,.18);

}

.contact-card i{

font-size:42px;

color:#00b7ff;

margin-bottom:20px;

}

.contact-card h3{

font-size:26px;

color:#fff;

margin-bottom:12px;

}

.contact-card p{

margin:0;

color:#c6d7ea;

line-height:1.7;

word-break:break-word;

}

@media(max-width:1100px){

.cta-container{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.cta{

padding:90px 6%;

}

.cta-container{

padding:40px 30px;

}

.cta h2{

font-size:38px;

}

}

/*==========================================
        FOOTER
==========================================*/

.footer{

padding:90px 8% 30px;

background:#07101c;

border-top:1px solid rgba(255,255,255,.08);

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:45px;

margin-bottom:60px;

}

.footer-logo img{
    width:150px;
    max-width:100%;
    height:auto;
}

.footer-column h3{

color:#fff;

font-size:24px;

margin-bottom:25px;

}

.footer-column p{

color:#9fb4cb;

line-height:1.9;

margin-bottom:15px;

}

.footer-column ul{

list-style:none;

padding:0;

}

.footer-column ul li{

margin-bottom:15px;

}

.footer-column ul li a{

color:#9fb4cb;

text-decoration:none;

transition:.35s;

}

.footer-column ul li a:hover{

color:#00b7ff;

padding-left:8px;

}

.footer-social{

display:flex;

gap:15px;

margin-top:25px;

}

.footer-social a{

width:45px;

height:45px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:#0f1b2d;

color:#fff;

text-decoration:none;

transition:.35s;

}

.footer-social a:hover{

background:#00b7ff;

transform:translateY(-6px);

}

.footer-btn{

display:inline-block;

margin-top:20px;

padding:14px 28px;

background:linear-gradient(135deg,#00b7ff,#0077ff);

color:#fff;

text-decoration:none;

border-radius:40px;

font-weight:600;

transition:.35s;

}

.footer-btn:hover{

transform:translateY(-5px);

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

padding-top:25px;

text-align:center;

}

.footer-bottom p{

color:#8fa8c4;

}

@media(max-width:1100px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer{

padding:70px 6% 25px;

}

.footer-grid{

grid-template-columns:1fr;

}

}

/* Sticky Header */

header.sticky{

background:rgba(7,16,28,.96);

backdrop-filter:blur(18px);

box-shadow:0 15px 40px rgba(0,0,0,.25);

}

/* Mobile Navigation */

nav.show{

display:block !important;

position:absolute;

top:90px;

left:5%;

width:90%;

background:#0f1b2d;

padding:30px;

border-radius:20px;

}

nav.show ul{

display:flex;

flex-direction:column;

gap:20px;

}

/* Active Menu */

nav ul li a.active{

color:#00b7ff;

}

/*==========================================
        TRUST BAR
==========================================*/

.trust-bar{

width:84%;

margin:-70px auto 120px;

background:#0f1b2d;

border-radius:30px;

display:grid;

grid-template-columns:repeat(4,1fr);

padding:45px;

gap:30px;

position:relative;

z-index:100;

box-shadow:0 35px 70px rgba(0,0,0,.35);

border:1px solid rgba(255,255,255,.08);

}

.trust-item{

text-align:center;

transition:.4s;

}

.trust-item:hover{

transform:translateY(-10px);

}

.trust-item i{

font-size:42px;

color:#00b7ff;

margin-bottom:20px;

}

.trust-item h3{

color:#fff;

margin-bottom:10px;

font-size:24px;

}

.trust-item p{

color:#9fb4cb;

}

@media(max-width:1000px){

.trust-bar{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.trust-bar{

grid-template-columns:1fr;

margin-top:40px;

}

}

/*==========================================
        MANUFACTURING CAPABILITIES
==========================================*/

.capabilities{

padding:130px 8%;

display:grid;

grid-template-columns:1fr 1fr;

gap:90px;

align-items:center;

}

.cap-left{

position:relative;

}

.cap-left img{

width:100%;

border-radius:30px;

display:block;

transition:.8s;

box-shadow:0 30px 80px rgba(0,0,0,.35);

}

.cap-left:hover img{

transform:scale(1.05);

}

.experience-box{

position:absolute;

bottom:30px;

right:-20px;

background:#00b7ff;

padding:25px;

border-radius:20px;

color:#fff;

text-align:center;

box-shadow:0 20px 60px rgba(0,183,255,.4);

}

.experience-box h2{

font-size:48px;

margin-bottom:5px;

}

.cap-right h2{

font-size:52px;

color:#fff;

margin:20px 0;

line-height:1.2;

}

.cap-right p{

color:#9fb4cb;

line-height:1.9;

margin-bottom:35px;

}

.cap-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:40px;

}

.cap-list div{

background:rgba(255,255,255,.05);

padding:18px;

border-radius:15px;

color:#fff;

transition:.35s;

}

.cap-list div:hover{

background:#00b7ff;

transform:translateX(8px);

}

.cap-list i{

margin-right:10px;

}

@media(max-width:1000px){

.capabilities{

grid-template-columns:1fr;

}

.cap-list{

grid-template-columns:1fr;

}

.experience-box{

right:20px;

}

}

/*==========================================
        FABRICS & PRINTING
==========================================*/

.fabric-printing{

padding:130px 8%;

}

.fp-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

margin-top:70px;

}

.fp-box{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

padding:40px;

backdrop-filter:blur(15px);

transition:.4s;

}

.fp-box:hover{

transform:translateY(-10px);

border-color:#00b7ff;

box-shadow:0 25px 60px rgba(0,183,255,.15);

}

.fp-box h3{

font-size:32px;

color:#fff;

margin-bottom:30px;

text-align:center;

}

.fp-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.fp-item{

display:flex;

align-items:center;

gap:15px;

padding:18px;

background:#111d30;

border-radius:15px;

transition:.35s;

color:#fff;

}

.fp-item:hover{

background:#00b7ff;

transform:translateX(8px);

}

.fp-item i{

font-size:24px;

color:#00b7ff;

transition:.35s;

}

.fp-item:hover i{

color:#fff;

}

@media(max-width:900px){

.fp-container{

grid-template-columns:1fr;

}

}

@media(max-width:600px){

.fp-grid{

grid-template-columns:1fr;

}

}

/*==========================================
        FACTORY PRODUCTION
==========================================*/

.production{

padding:130px 8%;

position:relative;

}

.production-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.production-card{

background:linear-gradient(145deg,#0d1727,#15253d);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

padding:40px 30px;

text-align:center;

transition:.45s;

position:relative;

overflow:hidden;

}

.production-card::before{

content:"";

position:absolute;

top:-80px;

right:-80px;

width:180px;

height:180px;

background:radial-gradient(circle,rgba(0,183,255,.25),transparent);

transition:.5s;

}

.production-card:hover{

transform:translateY(-12px);

border-color:#00b7ff;

box-shadow:0 25px 60px rgba(0,183,255,.20);

}

.production-card:hover::before{

transform:scale(1.5);

}

.production-card i{

font-size:48px;

color:#00b7ff;

margin-bottom:25px;

}

.production-card h3{

font-size:26px;

color:#fff;

margin-bottom:15px;

}

.production-card p{

color:#000000;

line-height:1.8;

font-size:15px;

}

@media(max-width:1100px){

.production-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.production-grid{

grid-template-columns:1fr;

}

}

/*==========================================
        GLOBAL EXPORT
==========================================*/

.export{

padding:130px 8%;

}

.export-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

margin-top:70px;

}

.export-left img{

width:100%;

display:block;

}

.export-right{

display:flex;

flex-direction:column;

gap:25px;

}

.export-item{

display:flex;

gap:20px;

padding:25px;

background:rgba(255,255,255,.05);

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.export-item:hover{

transform:translateX(10px);

border-color:#00b7ff;

}

.export-item i{

font-size:36px;

color:#00b7ff;

min-width:45px;

margin-top:5px;

}

.export-item h3{

color:#fff;

margin-bottom:10px;

font-size:24px;

}

.export-item p{

color:#9fb4cb;

line-height:1.8;

}

@media(max-width:1000px){

.export-container{

grid-template-columns:1fr;

}

}



/*==========================================
        EXPORT IMAGE
==========================================*/

.export-left{

position:relative;

}

.export-left img{

width:100%;

border-radius:30px;

box-shadow:0 30px 70px rgba(0,0,0,.35);

transition:.5s;

}

.export-left:hover img{

transform:scale(1.03);

}

/*==========================================
        EXPORT ITEMS
==========================================*/

.export-item{

align-items:flex-start;

}

.export-item div{

flex:1;

}

.export-item:hover{

background:rgba(0,183,255,.08);

box-shadow:0 15px 40px rgba(0,183,255,.15);

}

.export-item:hover i{

transform:rotate(10deg) scale(1.1);

transition:.35s;

}

/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:768px){

.export{

padding:90px 6%;

}

.export-item{

padding:20px;

}

.export-item h3{

font-size:20px;

}

.export-item p{

font-size:15px;

}

}





/*==========================================
        QUOTE SECTION
==========================================*/

.quote-section{

padding:130px 8%;

}

.quote-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

margin-top:70px;

align-items:center;

}

.quote-info h3{

font-size:42px;

color:#fff;

margin-bottom:25px;

}

.quote-info p{

color:#9fb4cb;

line-height:1.9;

margin-bottom:30px;

}

.quote-feature{

display:flex;

align-items:center;

gap:15px;

margin-bottom:20px;

color:#fff;

}

.quote-feature i{

color:#00b7ff;

font-size:20px;

}

.quote-form{

display:grid;

gap:20px;

}

.quote-form input,
.quote-form textarea{

padding:18px;

background:#101b2e;

border:1px solid rgba(255,255,255,.08);

border-radius:12px;

color:#fff;

font-size:16px;

outline:none;

}

.quote-form input:focus,
.quote-form textarea:focus{

border-color:#00b7ff;

}

.quote-form button{

padding:18px;

border:none;

border-radius:50px;

background:linear-gradient(135deg,#00b7ff,#0077ff);

color:#fff;

font-size:18px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.quote-form button:hover{

transform:translateY(-5px);

}

@media(max-width:900px){

.quote-container{

grid-template-columns:1fr;

}

}





/*==========================================
        ABOUT HERO
==========================================*/

.about-hero{

height:65vh;

background:url("photo/factory/1.jpg") center center/cover no-repeat;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

position:relative;

}

.about-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.65);

}

.about-hero-content{

position:relative;

z-index:2;

width:90%;

max-width:900px;

}

.about-hero-content p{

color:#00b7ff;

font-size:18px;

font-weight:600;

letter-spacing:2px;

margin-bottom:20px;

}

.about-hero-content h1{

font-size:60px;

color:#fff;

line-height:1.2;

margin-bottom:20px;

}

.about-hero-content span{

font-size:22px;

color:#d6e5f7;

}

@media(max-width:768px){

.about-hero{

height:55vh;

padding:0 20px;

}

.about-hero-content h1{

font-size:38px;

}

.about-hero-content span{

font-size:18px;

}

}

/*==========================================
        ABOUT COMPANY
==========================================*/

.about-company{

padding:120px 8%;

}

.about-company-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-company-image{

position:relative;

}

.about-company-image img{

width:100%;

border-radius:25px;

display:block;

box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.experience-badge{

position:absolute;

bottom:25px;

right:-20px;

background:#00b7ff;

padding:22px;

border-radius:18px;

text-align:center;

color:#fff;

box-shadow:0 15px 40px rgba(0,183,255,.35);

}

.experience-badge h2{

font-size:42px;

margin-bottom:5px;

}

.about-company-text h2{

font-size:48px;

color:#fff;

margin:20px 0;

line-height:1.2;

}

.about-company-text p{

color:#9fb4cb;

line-height:1.9;

margin-bottom:20px;

}

.about-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin:35px 0;

}

.about-features div{

background:#101b2e;

padding:16px;

border-radius:12px;

color:#fff;

transition:.35s;

}

.about-features div:hover{

background:#00b7ff;

transform:translateX(8px);

}

.about-features i{

color:#00b7ff;

margin-right:10px;

}

.about-features div:hover i{

color:#fff;

}

@media(max-width:900px){

.about-company-container{

grid-template-columns:1fr;

}

.about-features{

grid-template-columns:1fr;

}

.experience-badge{

right:20px;

}

}

/*==========================================
        MISSION & VISION
==========================================*/

.mission{

padding:120px 8%;

}

.mission-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.mission-card{

background:linear-gradient(145deg,#101b2e,#16253d);

padding:45px 35px;

border-radius:25px;

text-align:center;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.mission-card:hover{

transform:translateY(-12px);

border-color:#00b7ff;

box-shadow:0 20px 50px rgba(0,183,255,.18);

}

.mission-card i{

font-size:52px;

color:#00b7ff;

margin-bottom:25px;

}

.mission-card h3{

font-size:28px;

color:#fff;

margin-bottom:20px;

}

.mission-card p{

color:#9fb4cb;

line-height:1.9;

}

@media(max-width:992px){

.mission-grid{

grid-template-columns:1fr;

}

}

/*==========================================
        ABOUT STATISTICS
==========================================*/

.about-stats{

padding:120px 8%;

}

.about-stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:70px;

}

.about-stat-card{

background:linear-gradient(145deg,#0f1b2d,#162842);

padding:40px 25px;

border-radius:22px;

text-align:center;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.about-stat-card:hover{

transform:translateY(-10px);

border-color:#00b7ff;

box-shadow:0 20px 50px rgba(0,183,255,.20);

}

.about-stat-card h2{

font-size:54px;

color:#00b7ff;

margin-bottom:12px;

}

.about-stat-card h4{

font-size:24px;

color:#fff;

margin-bottom:15px;

}

.about-stat-card p{

color:#9fb4cb;

line-height:1.8;

font-size:15px;

}

@media(max-width:1100px){

.about-stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.about-stats-grid{

grid-template-columns:1fr;

}

}

/*==========================================
        ABOUT WHY CHOOSE US
==========================================*/

.about-why{

padding:120px 8%;

}

.about-why-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

margin-top:70px;

}

.about-why-image img{

width:100%;

border-radius:25px;

display:block;

box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.why-point{

display:flex;

gap:20px;

margin-bottom:35px;

padding:20px;

background:rgba(255,255,255,.05);

border-radius:18px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.why-point:hover{

transform:translateX(10px);

border-color:#00b7ff;

box-shadow:0 15px 40px rgba(0,183,255,.15);

}

.why-point i{

font-size:34px;

color:#00b7ff;

min-width:45px;

margin-top:5px;

}

.why-point h3{

font-size:24px;

color:#fff;

margin-bottom:10px;

}

.why-point p{

color:#9fb4cb;

line-height:1.8;

}

@media(max-width:1000px){

.about-why-container{

grid-template-columns:1fr;

}

}


/*==========================================
        ABOUT CTA
==========================================*/

.about-cta{

padding:120px 8%;

text-align:center;

}

.about-cta-content{

max-width:850px;

margin:auto;

background:linear-gradient(135deg,#0f1b2d,#162842);

padding:70px 50px;

border-radius:30px;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.about-cta-content>p:first-child{

color:#00b7ff;

font-weight:600;

letter-spacing:2px;

margin-bottom:15px;

}

.about-cta-content h2{

font-size:48px;

color:#fff;

margin-bottom:25px;

line-height:1.2;

}

.about-cta-text{

color:#9fb4cb;

line-height:1.9;

margin-bottom:40px;

}

.about-cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

@media(max-width:768px){

.about-cta{

padding:90px 6%;

}

.about-cta-content{

padding:45px 25px;

}

.about-cta-content h2{

font-size:34px;

}

}



/*==========================================
        PRODUCTS HERO
==========================================*/

.products-hero{

height:65vh;

background:url("photo/banner/products-banner.jpg") center center/cover no-repeat;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

position:relative;

}

.products-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.65);

}

.products-content{

position:relative;

z-index:2;

width:90%;

max-width:900px;

}

.products-content p{

color:#00b7ff;

font-size:18px;

font-weight:600;

letter-spacing:2px;

margin-bottom:20px;

}

.products-content h1{

font-size:60px;

color:#fff;

line-height:1.2;

margin-bottom:20px;

}

.products-content span{

font-size:22px;

color:#d8e7f8;

}

@media(max-width:768px){

.products-hero{

height:55vh;

padding:0 20px;

}

.products-content h1{

font-size:38px;

}

.products-content span{

font-size:18px;

}

}

/* ==========================================
   PRODUCT CATEGORIES
========================================== */

.product-categories {
    width: 100%;
    padding: 80px 5%;
}

/* Section heading */

.product-categories .section-title {
    text-align: center;
    margin-bottom: 45px;
}

.product-categories .section-title p {
    margin-bottom: 8px;
}

.product-categories .section-title h2 {
    margin: 0;
}


/* ==========================================
   CATEGORY GRID
========================================== */

.product-category-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 26px;
}


/* ==========================================
   CATEGORY CARD
========================================== */

.product-category-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    text-decoration: none;

    border-radius: 20px;

    background: #111d2d;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Hover */

.product-category-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35);
}


/* ==========================================
   SQUARE IMAGE BOX
========================================== */

.product-category-card img {
    width: 100%;

    aspect-ratio: 1 / 1;

    display: block;

    object-fit: contain;

    background: #f3f4f6;
}


/* ==========================================
   CARD CONTENT
========================================== */

.product-category-card h3 {
    margin: 20px 18px 8px;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.25;
}

.product-category-card p {
    margin: 0 18px;

    color: #b8c5d8;

    font-size: 14px;

    line-height: 1.6;
}


/* ==========================================
   EXPLORE LINK
========================================== */

.product-category-card span {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin: 20px 18px 22px;

    color: #00aaff;

    font-size: 14px;

    font-weight: 600;
}

.product-category-card span i {
    transition: transform 0.3s ease;
}

.product-category-card:hover span i {
    transform: translateX(5px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .product-category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .product-category-card h3 {
        font-size: 18px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .product-categories {
        padding: 55px 16px;
    }

    .product-category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    /*
       Still square on mobile
    */

    .product-category-card img {
        aspect-ratio: 1 / 1;

        object-fit: contain;
    }

    .product-category-card {
        border-radius: 14px;
    }

    .product-category-card h3 {
        margin: 13px 10px 6px;

        font-size: 14px;
    }

    .product-category-card p {
        margin: 0 10px;

        font-size: 11px;

        line-height: 1.45;
    }

    .product-category-card span {
        margin: 13px 10px 15px;

        font-size: 11px;

        gap: 5px;
    }

}


/* ==========================================
   VERY SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .product-category-grid {
        gap: 9px;
    }

    .product-category-card h3 {
        font-size: 13px;
    }

    .product-category-card p {
        font-size: 10px;
    }

    .product-category-card span {
        font-size: 10px;
    }

}
/*==========================================
        FEATURED PRODUCTS
==========================================*/

.featured-products{

padding:120px 8%;

}

.featured-products-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}

.featured-product-card{

background:#101b2e;

border-radius:25px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.featured-product-card:hover{

transform:translateY(-12px);

border-color:#00b7ff;

box-shadow:0 20px 50px rgba(0,183,255,.20);

}

.featured-product-image{

overflow:hidden;

}

.featured-product-image img{

width:100%;

height:320px;

object-fit:cover;

display:block;

transition:.5s;

}

.featured-product-card:hover img{

transform:scale(1.08);

}

.featured-product-content{

padding:30px;

}

.featured-product-content h3{

font-size:28px;

color:#fff;

margin-bottom:15px;

}

.featured-product-content p{

color:#9fb4cb;

line-height:1.8;

margin-bottom:25px;

}

.featured-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}

@media(max-width:1100px){

.featured-products-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.featured-products-grid{

grid-template-columns:1fr;

}

.featured-product-image img{

height:260px;

}

}

/*==========================================
        OEM MANUFACTURING
==========================================*/

.oem-section{

padding:120px 8%;

}

.oem-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:70px;

}

.oem-card{

background:linear-gradient(145deg,#101b2e,#162842);

padding:40px 30px;

border-radius:22px;

text-align:center;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.oem-card:hover{

transform:translateY(-10px);

border-color:#00b7ff;

box-shadow:0 20px 50px rgba(0,183,255,.20);

}

.oem-card i{

font-size:50px;

color:#00b7ff;

margin-bottom:25px;

}

.oem-card h3{

font-size:26px;

color:#fff;

margin-bottom:15px;

}

.oem-card p{

color:#9fb4cb;

line-height:1.8;

}

@media(max-width:1100px){

.oem-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.oem-grid{

grid-template-columns:1fr;

}

}


/*==========================================
        PRODUCT INQUIRY
==========================================*/

.product-inquiry{

padding:120px 8%;

}

.product-inquiry-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.product-inquiry-left h2{

font-size:46px;

color:#fff;

margin:20px 0;

line-height:1.2;

}

.product-inquiry-left p{

color:#9fb4cb;

line-height:1.9;

margin-bottom:25px;

}

.inquiry-list{

list-style:none;

padding:0;

margin-top:30px;

}

.inquiry-list li{

margin-bottom:18px;

color:#fff;

font-size:17px;

}

.inquiry-list i{

color:#00b7ff;

margin-right:10px;

}

.product-inquiry-right form{

display:grid;

gap:20px;

}

.product-inquiry-right input,
.product-inquiry-right textarea{

padding:18px;

background:#101b2e;

border:1px solid rgba(255,255,255,.08);

border-radius:14px;

color:#fff;

font-size:16px;

outline:none;

}

.product-inquiry-right input:focus,
.product-inquiry-right textarea:focus{

border-color:#00b7ff;

}

.product-inquiry-right button{

padding:18px;

border:none;

border-radius:50px;

background:linear-gradient(135deg,#00b7ff,#0077ff);

color:#fff;

font-size:18px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.product-inquiry-right button:hover{

transform:translateY(-5px);

}

@media(max-width:900px){

.product-inquiry-container{

grid-template-columns:1fr;

}

}


/*==========================================
        PRODUCTS CTA
==========================================*/

.products-cta{

padding:120px 8%;

}

.products-cta-box{

max-width:950px;

margin:auto;

padding:70px 60px;

text-align:center;

border-radius:30px;

background:linear-gradient(135deg,#101b2e,#162842);

border:1px solid rgba(255,255,255,.08);

box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.products-cta-box>p:first-child{

color:#00b7ff;

font-weight:600;

letter-spacing:2px;

margin-bottom:18px;

}

.products-cta-box h2{

font-size:48px;

color:#fff;

line-height:1.2;

margin-bottom:25px;

}

.products-cta-text{

max-width:760px;

margin:auto;

color:#9fb4cb;

line-height:1.9;

margin-bottom:40px;

}

.products-cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

@media(max-width:768px){

.products-cta{

padding:90px 6%;

}

.products-cta-box{

padding:45px 25px;

}

.products-cta-box h2{

font-size:34px;

}

}





/*==========================================
        CONTACT HERO
==========================================*/

.contact-hero{

height:65vh;

background:url("photo/banner/contact-banner.jpg") center center/cover no-repeat;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

position:relative;

}

.contact-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.65);

}

.contact-hero-content{

position:relative;

z-index:2;

width:90%;

max-width:900px;

}

.contact-hero-content p{

color:#00b7ff;

font-size:18px;

font-weight:600;

letter-spacing:2px;

margin-bottom:20px;

}

.contact-hero-content h1{

font-size:60px;

color:#fff;

line-height:1.2;

margin-bottom:20px;

}

.contact-hero-content span{

font-size:22px;

color:#d8e7f8;

}

@media(max-width:768px){

.contact-hero{

height:55vh;

padding:0 20px;

}

.contact-hero-content h1{

font-size:38px;

}

.contact-hero-content span{

font-size:18px;

}

}


/*==========================================
        CONTACT INFO
==========================================*/

.contact-info{

padding:120px 8%;

}

.contact-info-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:70px;

}

.contact-card{

background:linear-gradient(145deg,#101b2e,#162842);

padding:40px 30px;

border-radius:25px;

text-align:center;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.contact-card:hover{

transform:translateY(-10px);

border-color:#00b7ff;

box-shadow:0 20px 50px rgba(0,183,255,.20);

}

.contact-card i{

font-size:48px;

color:#00b7ff;

margin-bottom:20px;

}

.contact-card h3{

font-size:26px;

color:#fff;

margin-bottom:15px;

}

.contact-card p{

color:#9fb4cb;

line-height:1.8;

margin-bottom:15px;

}

.contact-card a{

color:#00b7ff;

text-decoration:none;

font-weight:600;

word-break:break-word;

}

.contact-card small{

color:#7d90a8;

}

@media(max-width:1100px){

.contact-info-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-info-grid{

grid-template-columns:1fr;

}

}

/*==========================================
        CONTACT FORM
==========================================*/

.contact-form-section{

padding:120px 8%;

}

.contact-form-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.contact-form-left h2{

font-size:48px;

color:#fff;

margin:20px 0;

line-height:1.2;

}

.contact-form-left p{

color:#9fb4cb;

line-height:1.9;

margin-bottom:35px;

}

.contact-feature{

display:flex;

align-items:center;

gap:15px;

margin-bottom:18px;

color:#fff;

font-size:17px;

}

.contact-feature i{

color:#00b7ff;

font-size:20px;

}

.contact-form-right{

background:#101b2e;

padding:40px;

border-radius:25px;

border:1px solid rgba(255,255,255,.08);

}

.contact-form-right form{

display:grid;

gap:18px;

}

.contact-form-right input,

.contact-form-right textarea{

width:100%;

padding:18px;

border:none;

outline:none;

border-radius:12px;

background:#162842;

color:#fff;

font-size:16px;

}

.contact-form-right input::placeholder,

.contact-form-right textarea::placeholder{

color:#90a4bd;

}

.contact-form-right textarea{

resize:vertical;

}

.contact-form-right button{

padding:18px;

border:none;

border-radius:50px;

background:linear-gradient(135deg,#00b7ff,#0077ff);

color:#fff;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.contact-form-right button:hover{

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(0,183,255,.30);

}

.contact-form-right button i{

margin-right:10px;

}

@media(max-width:992px){

.contact-form-container{

grid-template-columns:1fr;

}

.contact-form-left{

text-align:center;

}

.contact-feature{

justify-content:center;

}

}





/*==========================================
        CUSTOM SELECT
==========================================*/

#contactForm select,
select#printing{

    width:100%;
    height:52px;

    padding:0 45px 0 16px;

    background:#142844;
    color:#9fc1e8;

    border:1px solid #213c5d;
    border-radius:12px;

    font-family:'Poppins', sans-serif;
    font-size:14px;

    outline:none;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    cursor:pointer;

    margin-bottom:16px;

    /* custom arrow */
    background-image:
        linear-gradient(45deg, transparent 50%, #19a9ff 50%),
        linear-gradient(135deg, #19a9ff 50%, transparent 50%);

    background-position:
        calc(100% - 20px) 22px,
        calc(100% - 14px) 22px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat:no-repeat;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

#contactForm select:hover,
select#printing:hover{

    border-color:#19a9ff;

}

#contactForm select:focus,
select#printing:focus{

    border-color:#19a9ff;

    box-shadow:
        0 0 0 3px rgba(25,169,255,.12);

}

/* option colors */
#contactForm select option,
select#printing option{

    background:#142844;
    color:#fff;

}



@media (max-width:768px){

    #contactForm select,
    select#printing{

        height:50px;

        padding-left:14px;

        font-size:13px;

        border-radius:11px;

    }

}
/*==========================================
        FAQ
==========================================*/

.faq{

padding:120px 8%;

}

.faq-container{

max-width:1000px;

margin:70px auto 0;

}

.faq-item{

background:#101b2e;

padding:30px;

margin-bottom:25px;

border-radius:18px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.faq-item:hover{

border-color:#00b7ff;

transform:translateY(-5px);

box-shadow:0 15px 40px rgba(0,183,255,.15);

}

.faq-item h3{

color:#fff;

font-size:24px;

margin-bottom:15px;

display:flex;

align-items:center;

gap:12px;

}

.faq-item h3 i{

color:#00b7ff;

}

.faq-item p{

color:#9fb4cb;

line-height:1.9;

}

/*==========================================
        LOCATION
==========================================*/

.location-section{

padding:120px 8%;

}

.location-grid{

display:grid;

grid-template-columns:1fr 1.3fr;

gap:50px;

margin-top:70px;

align-items:center;

}

.location-info{

background:#101b2e;

padding:40px;

border-radius:25px;

border:1px solid rgba(255,255,255,.08);

}

.location-info h3{

font-size:30px;

color:#fff;

margin-bottom:30px;

}

.location-info p{

margin-bottom:20px;

color:#9fb4cb;

line-height:1.8;

}

.location-info i{

color:#00b7ff;

margin-right:12px;

width:22px;

}

.location-info a{

color:#00b7ff;

text-decoration:none;

}

.location-map iframe{

width:100%;

height:450px;

border:none;

border-radius:25px;

}

@media(max-width:900px){

.location-grid{

grid-template-columns:1fr;

}

.location-map iframe{

height:320px;

}

}

/*==========================================
        CATEGORY HERO
==========================================*/

.category-hero{

height:65vh;

background:url("photo/banner/team-sports-banner.jpg") center/cover;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

position:relative;

}

.category-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.65);

}

.category-hero-content{

position:relative;

z-index:2;

max-width:900px;

padding:20px;

}

.category-hero-content p{

color:#00b7ff;

font-weight:600;

letter-spacing:2px;

margin-bottom:20px;

}

.category-hero-content h1{

font-size:60px;

color:#fff;

line-height:1.2;

margin-bottom:20px;

}

.category-hero-content span{

font-size:22px;

color:#dbe8f5;

}

@media(max-width:768px){

.category-hero{

height:55vh;

}

.category-hero-content h1{

font-size:38px;

}

.category-hero-content span{

font-size:18px;

}

}


/*==========================================
        FEATURED PRODUCTS
==========================================*/

.featured-products{
    padding:100px 8%;
}

.section-subtitle{
    max-width:760px;
    margin:18px auto 0;
    color:#9fb4cb;
    font-size:16px;
    line-height:1.8;
    text-align:center;
}

/*==========================================
        PRODUCT GRID
==========================================*/

/* PRODUCT GRID */

.product-grid{
         max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
    display:grid;
    gap:24px;
    background-color:#08111d;
}

/* Mobile */

@media (max-width:768px){

.product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    padding:0 12px;
}

}

/* Tablet & Desktop */

@media (min-width:641px){

.product-grid{

grid-template-columns:repeat(4,1fr);

}

}


/*==========================================
        PRODUCT CARD
==========================================*/

.product-card{
    background:#101b2e;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:#00b7ff;
    box-shadow:0 20px 40px rgba(0,183,255,.18);
}

/*==========================================
        PRODUCT IMAGE
==========================================*/
@media (max-width:768px){

.product-img{

height:150px;

}

.product-img img{

width:100%;
height:100%;
object-fit:cover;

}

}
.product-card:hover .product-img img{
    transform:scale(1.08);
}

/*==========================================
        PRODUCT INFO
==========================================*/

.product-info{
    padding:20px;
    text-align:center;
}

.product-info h3{
    font-size:22px;
    color:#fff;
    margin-bottom:18px;
}

@media (max-width:768px){

.product-btn{

display:block;
width:100%;
padding:10px 8px;
font-size:13px;
border-radius:8px;
text-align:center;

}

}

.product-btn:hover{
    transform:translateY(-3px);
}

/*==========================================
        RESPONSIVE
==========================================*/


@media (max-width:768px){

.product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    padding:0 12px;
}

}
/* Badge */

.product-img span{
    position:absolute;
    top:18px;
    left:18px;
    background:#00b7ff;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* Content */

.product-info{
    padding:22px;
}

@media (max-width:768px){

.product-info h3{

font-size:14px;
line-height:1.3;
min-height:38px;

}

}

.product-info p{
    color:#9fb4cb;
    line-height:1.7;
    font-size:15px;
    margin-bottom:22px;
}

/* Button */

.product-btn{
    display:inline-block;
    width:100%;
    text-align:center;
    padding:13px 0;
    background:linear-gradient(135deg,#0077ff,#00b7ff);
    color:#fff;
    text-decoration:none;
    border-radius:35px;
    font-weight:600;
    transition:.3s;
}

.product-btn:hover{
    transform:translateY(-3px);
}

/*==========================
        Responsive
===========================*/

@media(max-width:1100px){

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.product-grid{
    grid-template-columns:1fr;
}

.product-img img{
    height:240px;
}

.product-info{
    padding:20px;
}

.product-info h3{
    font-size:20px;
}

}

@media(max-width:480px){

.featured-products{
    padding:80px 5%;
}

.product-img img{
    height:220px;
}

.product-info h3{
    font-size:18px;
}

.product-info p{
    font-size:14px;
}

}



/*==========================================
        SPORT DETAIL
==========================================*/

.sport-detail{

padding:120px 8%;

}

.sport-detail-grid{

display:grid;

grid-template-columns:1.2fr 1fr;

gap:60px;

align-items:center;

}

.sport-gallery{

display:grid;

grid-template-columns:2fr 1fr;

gap:18px;

}

.gallery-main img{

width:100%;

height:520px;

object-fit:cover;

border-radius:18px;

}

.gallery-side{

display:grid;

gap:18px;

}

.gallery-side img{

width:100%;

height:500px;

object-fit:cover;

border-radius:18px;

}

.sport-content p{

color:#9fb4cb;

line-height:1.9;

margin-bottom:35px;

}

.spec-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

margin-bottom:35px;

}

.spec-grid div{

background:#101b2e;

padding:15px;

border-radius:12px;

color:#fff;

}

.spec-grid i{

color:#00b7ff;

margin-right:8px;

}

.sport-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

@media(max-width:900px){

.sport-detail-grid{

grid-template-columns:1fr;

}

.sport-gallery{

grid-template-columns:1fr;

}

.gallery-main img{

height:320px;

}

.gallery-side{

grid-template-columns:repeat(3,1fr);

}

.gallery-side img{

height:110px;

}

.spec-grid{

grid-template-columns:1fr;

}

}


.section-subtitle{
max-width:750px;
margin:20px auto 0;
color:#9fb4cb;
font-size:17px;
line-height:1.8;
text-align:center;
}








/*==========================================
        REQUEST QUOTE
==========================================*/

.quote-section{

padding:80px 8%;

text-align:center;

}

.quote-section h2{

font-size:38px;

color:#fff;

margin-bottom:15px;

}

.quote-section p{

max-width:700px;

margin:0 auto 30px;

color:#9fb4cb;

font-size:16px;

line-height:1.8;

}

.quote-buttons{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}

.btn-outline{

display:inline-block;

padding:14px 32px;

border:2px solid #00b7ff;

border-radius:35px;

color:#00b7ff;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn-outline:hover{

background:#00b7ff;

color:#fff;

}

@media(max-width:768px){

.quote-section{

padding:80px 8%;

text-align:center;

margin-bottom:80px;

}
.quote-section h2{

font-size:28px;

}

.quote-buttons{

flex-direction:column;

}

.quote-buttons a{

width:100%;

text-align:center;

}

}



/*==========================================
        BACK TO TOP
==========================================*/

#backToTop{

position:fixed;

bottom:35px;

right:35px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:linear-gradient(135deg,#00b7ff,#0077ff);

color:#fff;

font-size:22px;

cursor:pointer;

display:flex;

align-items:center;

justify-content:center;

box-shadow:0 12px 30px rgba(0,119,255,.35);

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.35s ease;

z-index:9999;

}

#backToTop:hover{

transform:translateY(-6px);

box-shadow:0 18px 40px rgba(0,119,255,.45);

}

#backToTop.show{

opacity:1;

visibility:visible;

transform:translateY(0);

}

html{

scroll-behavior:smooth;

}

@media(max-width:768px){

#backToTop{

width:48px;

height:48px;

font-size:18px;

right:20px;

bottom:20px;

}

}







/* ==========================
   DESKTOP (768px+)
========================== */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* ==========================
 tablet
========================== */

@media (max-width:1200px){

.product-grid{
    grid-template-columns:repeat(3,1fr);
}

}
.product-card{
    background:#081019;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:.35s;
}



@media (max-width:1200px){

.product-btn{

    width:100%;

    font-size:14px;

    padding:12px 8px;

}

.product-info h3{

    min-height:70px;

}

}
/* Hover */
.product-card:hover{
    transform:translateY(-8px);
}

/* Image Box */
.product-img{
    height:300px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
}

/* Image */
.product-img img{
    max-width:90%;
    max-height:90%;
    width:auto;
    height:auto;
    object-fit:contain;
}

/* Product Info */
.product-info{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    flex:1;
    padding:18px;
}

/* Title */
.product-info h3{
    font-size:28px;
    font-weight:700;
    line-height:1.35;
    text-align:center;
    margin-bottom:20px;

    /* Same title height for all cards */
    min-height:76px;
}

/* Button */
.product-btn{
    display:block;
    width:100%;
    padding:14px;
    border-radius:999px;
    text-align:center;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
  background:linear-gradient(135deg,#0077ff,#00b7ff);
    color:#fff;
    transition:.3s;

    /* Keeps every button aligned */
    margin-top:auto;
}

.product-btn:hover{
     background:linear-gradient(135deg,#0077ff,#00b7ff);
}


/* ==========================
   MOBILE (0px - 767px)
========================== */

@media (max-width:767px){

.product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}


.product-card{
    background:#081019;
    border-radius:14px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:.3s;
}

/* Image Box */
.product-img{
    height:170px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px;
}



/* Image */
.product-img img{
    max-width:90%;
    max-height:90%;
    width:auto;
    height:auto;
    object-fit:contain;
}

/* Product Info */
.product-info{
    padding:12px;
    text-align:center;
}

.product-info h3{
    font-size:17px;
    font-weight:700;
    line-height:1.3;
    margin:0;
}

/* Hide Button On Mobile */
.product-btn{
    display:none;
}

}
















/*==========================================
        HERO TABLET
==========================================*/

@media (min-width:768px) and (max-width:1199px){

.hero{
    display:grid;
    grid-template-columns:1fr;
    text-align:center;
    gap:50px;
    padding:140px 5% 80px;
}

.hero-left{
    order:2;
}

.hero-right{
    order:1;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-right img{
    width:100%;
    max-width:430px;
    height:auto;
}

.hero-circle{
    width:420px;
    height:420px;
}

.hero-buttons{
    justify-content:center;
}

.hero-info{
    justify-content:center;
}

}

/*==========================================
        HERO MOBILE
==========================================*/


@media (max-width:767px){

.hero{
    display:flex;
    flex-direction:column;
    gap:35px;
    padding:120px 20px 70px;
    text-align:center;
}
.hero-left{
    order:1;
    width:100%;
}

.hero-right{
    order:2;
    width:100%;
    margin-top:30px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Mobile Floating Cards */

.floating-card{
    padding:10px 16px;
    font-size:11px;
    border-radius:12px;
}

/* Mobile Floating Cards */

.floating-card{
    padding:10px 16px;
    font-size:11px;
    border-radius:12px;
}

.card1{
    top:18px;
    left:100px;
}

.card2{
    top:120px;
    right:18px;
}

.card3{
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
}

.card2{
    top:120px;
    right:18px;
}

.card3{
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
}
.hero-circle{
    width:300px;
    height:300px;
    margin:0 auto;
}

.hero-right img{
    width:100%;
    max-width:260px;
    height:auto;
    display:block;
}

.hero-left{
    width:100%;
    text-align:center;
}

.hero-left h1{
    font-size:44px;
    line-height:1.1;
}

.hero-left p{
    max-width:100%;
    margin:20px auto;
}

.hero-info{
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}
.hero-right{
    margin-top:20px;
    position:relative;
}

.hero-circle{
    margin:auto;
}
}



/* ==========================================
   CAPABILITIES - MOBILE
========================================== */

@media (max-width: 767px){

    .capabilities{

        width: 100%;
        max-width: 100%;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;

        gap: 30px;

        padding: 50px 15px;

        overflow: hidden;
    }


    .cap-left{

        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
    }


    .cap-left img{

        display: block;

        width: 100%;
        max-width: 100%;
        height: auto;

        object-fit: cover;

        border-radius: 15px;
    }


    .cap-right{

        width: 100%;
        max-width: 100%;

        box-sizing: border-box;

        min-width: 0;
    }


    .cap-right h2{

        font-size: 28px;

        line-height: 1.25;

        word-wrap: break-word;
        overflow-wrap: break-word;
    }


    .cap-right > p{

        max-width: 100%;

        font-size: 15px;

        line-height: 1.7;

        word-wrap: break-word;
        overflow-wrap: break-word;
    }


    .cap-list{

        width: 100%;
        max-width: 100%;

        box-sizing: border-box;

        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;

        margin-top: 25px;
    }


    .cap-list div{

        width: 100%;
        max-width: 100%;

        box-sizing: border-box;

        min-width: 0;

        padding: 15px;

        border-radius: 12px;

        display: flex;
        align-items: center;

        gap: 10px;

        white-space: normal;

        overflow-wrap: anywhere;
    }


    .cap-list i{

        flex-shrink: 0;
    }


    .cap-right .btn1{

        display: block;

        width: 100%;

        max-width: 100%;

        box-sizing: border-box;

        text-align: center;

        margin-top: 25px;
    }

}

       /*<!--==========================================
        FABRICS & PRINTING
===========================================-->*/





@media (max-width:767px){

.fabric-printing{
    padding:80px 20px;
}

.fp-container{
    gap:30px;
}

.fp-box{
    padding:25px 18px;
}

.fp-box h3{
    font-size:28px;
    margin-bottom:20px;
}

.fp-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.fp-item{
    padding:14px 10px;
    gap:10px;
    font-size:14px;
}

.fp-item i{
    font-size:20px;
}

}



/*==========================================
        FACTORY PRODUCTION MOBILE
==========================================*/
@media (max-width:767px){
.production{
    padding:80px 20px;
}

.production-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.production-card{
    padding:20px 15px;
    border-radius:18px;
    text-align:center;
}

.production-card i{
    font-size:32px;
}

.production-card h3{
    font-size:18px;
    margin:15px 0 10px;
    line-height:1.3;
}

.production-card p{
    font-size:13px;
    line-height:1.6;
}}




/*==========================================
        COMPANY STATS MOBILE
==========================================*/
@media (max-width:767px){
.stats{
    padding:70px 20px;
}

.stats-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.stat-box{
    padding:25px 15px;
    text-align:center;
    border-radius:18px;
}

.stat-box h2{
    font-size:34px;
    margin-bottom:8px;
}

.stat-box p{
    font-size:14px;
    line-height:1.4;
}
}



/*==========================================
        PRODUCT CATEGORIES MOBILE
==========================================*/
@media (max-width:767px){
.categories{
    padding:80px 20px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.category-card{
    height:220px;
    border-radius:18px;
    overflow:hidden;
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.category-overlay{
    padding:15px;
}

.category-overlay h3{
    font-size:18px;
    margin-bottom:6px;
}

.category-overlay p{
    font-size:12px;
    line-height:1.4;
    margin-bottom:10px;
}

.category-overlay a{
    font-size:13px;
    padding:8px 16px;
}}





/*==========================================
        WHY CHOOSE US MOBILE
==========================================*/

@media (max-width:767px){

.why-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;

}

.why-card{

    padding:20px 15px;
    border-radius:18px;
    text-align:center;

}

.why-icon{

    width:55px;
    height:55px;
    margin:0 auto 15px;

}

.why-icon i{

    font-size:22px;

}

.why-card h3{

    font-size:18px;
    margin-bottom:10px;

}

.why-card p{

    font-size:13px;
    line-height:1.6;

}

}





/*==========================================
        TESTIMONIALS MOBILE
==========================================*/

@media (max-width:767px){

.testimonial-grid{

    display:grid;
    grid-template-columns:1fr;
    gap:20px;

}

.testimonial-card{

    padding:22px 18px;
    border-radius:18px;

}

.stars{

    margin-bottom:15px;

}

.stars i{

    font-size:15px;

}

.testimonial-card p{

    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;

}

.client{

    display:flex;
    align-items:center;
    gap:12px;

}

.client img{

    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;

}

.client h4{

    font-size:16px;
    margin-bottom:3px;

}

.client span{

    font-size:13px;
    color:#b8c4d8;

}

}








/*==========================================
        CTA MOBILE
==========================================*/

@media (max-width:767px){

.cta{

    padding:80px 5%;

}

.cta-container{

    display:flex;
    flex-direction:column;
    gap:35px;

}

.cta-left{

    text-align:center;

}

.section-mini{

    font-size:14px;

}

.cta-left h2{

    font-size:30px;
    line-height:1.3;
    margin:15px 0;

}

.cta-left p{

    font-size:15px;
    line-height:1.8;

}

.cta-buttons{

    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:30px;

}

.cta-buttons a{

    width:100%;
    text-align:center;
    justify-content:center;

}

.cta-right{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.contact-card{

    padding:25px 20px;
    border-radius:18px;
    text-align:center;

}

.contact-card i{

    font-size:34px;
    margin-bottom:15px;

}

.contact-card h3{

    font-size:20px;
    margin-bottom:10px;

}

.contact-card p{

    font-size:14px;
    line-height:1.7;

}

}








/*==========================================
        FOOTER MOBILE
==========================================*/

@media (max-width:767px){

.footer{

    padding:70px 5% 30px;

}

.footer-grid{

    display:grid;
    grid-template-columns:1fr;
    gap:35px;
    text-align:center;

}

.footer-column{

    width:100%;

}

.footer-logo{

    width:150px;
    height:auto;
    margin:0 auto 20px;
    display:block;

}

.footer-column h3{

    font-size:22px;
    margin-bottom:18px;

}

.footer-column p{

    font-size:14px;
    line-height:1.8;

}

.footer-column ul{

    padding:0;
    margin:0;
    list-style:none;

}

.footer-column ul li{

    margin:12px 0;

}

.footer-column ul li a{

    text-decoration:none;

}

.footer-social{

    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:20px;

}

.footer-social a{

    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;

}

.footer-column p i{

    margin-right:8px;

}

.footer-btn{

    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:20px;
    padding:14px 20px;

}

.footer-bottom{

    margin-top:35px;
    text-align:center;

}

.footer-bottom p{

    font-size:13px;
    line-height:1.7;

}

}






/*==========================================
     product seection 
==========================================*/









/*==========================================
        OEM SECTION MOBILE
==========================================*/

@media (max-width:767px){

.oem-section{

    padding:80px 5%;

}

.oem-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;

}

.oem-card{

    padding:22px 15px;
    border-radius:18px;
    text-align:center;

}

.oem-card i{

    font-size:28px;
    margin-bottom:15px;

}

.oem-card h3{

    font-size:18px;
    margin-bottom:10px;
    line-height:1.3;

}

.oem-card p{

    font-size:13px;
    line-height:1.7;

}

}





/*==========================================
        WHATSAPP VALIDATION
==========================================*/

.whatsapp-invalid {
    border: 1px solid #ff4d4d !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.12) !important;
}

.whatsapp-error {
    margin-top: 7px;
    margin-left: 4px;
    color: #ff6b6b;
    font-size: 13px;
    line-height: 1.4;
}


/* MOBILE */

@media (max-width: 768px) {

    .whatsapp-error {
        font-size: 12px;
        margin-top: 6px;
    }

}





/*==========================================
        FORM VALIDATION
==========================================*/

.form-invalid {
    border: 1px solid #ff4d4d !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.12) !important;
}

.form-error {
    display: block;
    margin: 6px 4px 12px;
    color: #ff5c5c;
    font-size: 13px;
    line-height: 1.4;
}


/* Remove error when user starts correcting field */

.form-invalid:focus {
    border-color: #00aaff !important;
    box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.12) !important;
}















/*==========================================
       Additional ttranston
==========================================*/



