*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI;
}


/* ===== NAVBAR ===== */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:70px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 20px;

/* DARK PREMIUM GRADIENT */

background:linear-gradient(135deg,#3a3a3a,#3a3a3a,#ff7a18);

box-shadow:0 6px 30px rgba(0,0,0,0.6);
z-index:1000;
}

.nav-left{
display:flex;
align-items:center;
gap:12px;
}

.logo{
width:45px;
height:45px;
object-fit:contain;
}


/* TITLE */

.site-title{
color:#ffffff;
font-size:18px;
font-weight:600;
letter-spacing:1px;
white-space:nowrap;
}


/* MENU BUTTON */

.menu-btn{
border:none;
font-size:20px;
background:rgba(255,255,255,0.08);
color:white;
padding:10px 14px;
border-radius:10px;
cursor:pointer;
transition:0.3s;
}

.menu-btn:hover{
background:#ff7a18;
box-shadow:0 0 18px #ff7a18;
}


/* CONTACT */

.header-contact{
display:flex;
align-items:center;
gap:25px;
font-size:14px;
}

.contact-item{
display:flex;
align-items:center;
gap:8px;
text-decoration:none;
color:white;
transition:0.3s;
}

.contact-item:hover{
transform:translateY(-2px);
opacity:.9;
}


/* EMAIL ICON */

.contact-item .fa-envelope{
background:#ff5252;
color:white;
padding:6px;
border-radius:50%;
font-size:13px;
}

.contact-item:hover .fa-envelope{
box-shadow:0 0 12px #ff5252;
}


/* WHATSAPP */

.contact-item .fa-whatsapp{
background:#25D366;
color:white;
padding:6px;
border-radius:50%;
font-size:13px;
}

.contact-item:hover .fa-whatsapp{
box-shadow:0 0 12px #25D366;
}



/* ===== SIDEBAR ===== */

.sidebar{
position:fixed;
top:70px;
left:0;
width:260px;
height:100%;
background:#3a3a3a;
padding-top:20px;
transition:0.4s;
box-shadow:5px 0 25px rgba(0,0,0,0.6);
}

.sidebar ul{
list-style:none;
}

.sidebar ul li{
margin:8px 0;
}

.sidebar ul li a{
display:flex;
align-items:center;
gap:15px;
padding:14px 20px;
text-decoration:none;
color:#d4d4d4;
font-size:16px;
border-left:4px solid transparent;
transition:0.3s;
}


/* HOVER */

.sidebar ul li a:hover{
background:#2a2a2a;
border-left:4px solid #ff7a18;
color:#ff7a18;
}
.sidebar ul li.active a{
background:rgba(255,122,24,0.15);
border-left:4px solid #ff7a18;
color:#ffffff;
}

.sidebar ul li.active a i{
color:#ff7a18;
}


/* ===== DROPDOWN ===== */

.dropdown-btn{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 20px;
cursor:pointer;
color:#d4d4d4;

}

.dropdown-btn .left{
display:flex;
align-items:center;
gap:12px;
}

.arrow{
transition:0.3s;
}

.submenu{
display:none;
padding-left:40px;
}

.submenu li a{
color:#aaa;
font-size:15px;
}

.dropdown.open .submenu{
display:block;
animation:fade .3s;
}

.dropdown.open .arrow{
transform:rotate(180deg);
}

@keyframes fade{
from{opacity:0; transform:translateY(-10px);}
to{opacity:1; transform:translateY(0);}
}



/* ===== MINI SIDEBAR ===== */

.sidebar.mini{
width:85px;
}

.sidebar.mini .menu-text{
display:none;
}

.sidebar.mini .arrow{
display:none;
}

.sidebar.mini a{
justify-content:center;
}

.sidebar.mini .submenu{
display:none !important;
}

.sidebar.mini i{
font-size:20px;
}



/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.site-title{
font-size:16px;
}

.header-contact{
gap:18px;
}

}

@media(max-width:768px){

.site-title{
font-size:14px;
}

.header-contact span{
display:none;
}

.header-contact{
gap:12px;
}

.sidebar{
width:220px;
}

.logo{
width:40px;
}

}

@media(max-width:480px){

.navbar{
padding:0 12px;
}

.menu-btn{
padding:8px 11px;
font-size:18px;
}

}
                                                                    /*footer*/
/* ===== FINAL FOOTER FIX ===== */

.site-footer{
background:#3a3a3a;
padding:30px 20px;
text-align:center;
color:white;
font-size:16px;
margin-top:60px;
}

.site-footer .brand{
color:#ff7a18;
font-weight:400;
}

.site-footer a{
color:#ff7a18;
text-decoration:none;
text-decoration:underline;
}


																	

                                                                     /*index*/
.main{
margin-left:260px;
margin-top:70px;
padding:40px;
background:#f4f6f8;
transition:.4s;
}

.sidebar.mini ~ .main{
margin-left:85px;
}

/* HERO */

.hero{
position:relative;
height:450px;
border-radius:12px;
overflow:hidden;
display:flex;
align-items:center;
padding:60px;
color:white;
}

.hero-img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background: rgba(0,0,0,.15);  /* change light/dark here */
z-index:2;
}

.hero-text{
position:relative;
z-index:3;
max-width:500px;
}

.hero h1{
font-size:44px;
margin-bottom:15px;
}

.hero p{
width:500px;
margin-bottom:20px;
}

.hero-btn{
display:inline-block;
background:#ff7a18;
color:white;
padding:14px 32px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.hero-btn:hover{
background:#ff5500;
transform:translateY(-2px);
}

/* SERVICES */

.services{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.service-box{
background:white;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,.08);
transition:.3s;
}

.service-box:hover{
transform:translateY(-8px);
}

.service-box i{
font-size:32px;
color:#ff7a18;
margin-bottom:15px;
}

/* PRODUCTS */

.products{
margin-top:50px;
}

.product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:20px;
}

.card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,.1);
transition:.3s;
}

.card:hover{
transform:scale(1.05);
}

.card img{
width:100%;
height:170px;
object-fit:cover;
}

.card h4{
padding:15px;
}

/* TRUST */

.trust{
margin-top:50px;
background:#1c1c1c;
color:white;
padding:40px;
border-radius:12px;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:20px;
}
/* =============================
   LAPTOP
============================= */

@media (max-width:1200px){

.product-grid{
grid-template-columns:repeat(2,1fr);
}

.hero h1{
font-size:34px;
}

.hero p{
width:100%;
}

}


/* =============================
   TABLET
============================= */

@media (max-width:992px){

.sidebar{
width:200px;
}

.main{
margin-left:200px;
padding:25px;
}

.sidebar.mini ~ .main{
margin-left:80px;
}

.services{
grid-template-columns:repeat(2,1fr);
}

.trust-grid{
grid-template-columns:repeat(2,1fr);
}

.hero{
height:380px;
padding:40px;
}

.hero h1{
font-size:30px;
}

}
/* ===== CLIENT SLIDER ===== */

.clients{
margin-top:60px;
padding:60px 0;
background:#eef2f6;
border-radius:12px;
text-align:center;
overflow:hidden;
}

.clients-title{
font-size:40px;
color:#f27a00;
margin-bottom:40px;
}

/* slider */

.client-slider{
width:100%;
overflow:hidden;
}

.client-track{
display:flex;
width:calc(250px * 12);
animation:scroll 25s linear infinite;
}

.client{
width:220px;
height:130px;              /* SAME BOX HEIGHT */
background:#fff;
border-radius:10px;
box-shadow:0 6px 15px rgba(0,0,0,.08);

display:flex;
align-items:center;
justify-content:center;

padding:20px;
margin:10px;
flex-shrink:0;             /* IMPORTANT for slider */
}

.client img{
max-width:100%;
max-height:70px;           /* CONTROL LOGO SIZE */
object-fit:contain;
}

.client img:hover{
filter:grayscale(0);
transform:scale(1.08);
}

/* animation */

@keyframes scroll{
0%{ transform:translateX(0); }
100%{ transform:translateX(-50%); }
}


/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.clients-title{
font-size:28px;
}

.client{
width:180px;
}

.client-track{
width:calc(180px * 12);
}

}


/* =============================
   MOBILE
============================= */

@media (max-width:768px){

/* sidebar small but visible */

.sidebar{
width:160px;
}

.main{
margin-left:160px;
padding:20px;
}

/* hero */

.hero{
height:300px;
padding:25px;
}

.hero-text{
max-width:100%;
}

.hero h1{
font-size:24px;
}

.hero p{
font-size:14px;
width:100%;
}

/* grid */

.services{
grid-template-columns:1fr;
}

.product-grid{
grid-template-columns:1fr;
}

.trust-grid{
grid-template-columns:1fr;
}

}


/* =============================
   SMALL MOBILE
============================= */

@media (max-width:480px){

.sidebar{
width:130px;
}

.main{
margin-left:130px;
padding:15px;
}

.hero{
height:260px;
padding:20px;
}

.hero h1{
font-size:20px;
}

.hero-btn{
padding:10px 16px;
font-size:13px;
}

}
                                                                   /*about*/
/* MAIN spacing for sidebar layout */

.gx-about-main{
padding:40px;
}

/* HERO IMAGE SYSTEM */

.gx-ab-hero{
position:relative;
height:320px;
border-radius:12px;
overflow:hidden;
display:flex;
align-items:center;
padding:60px;
color:white;
}

/* IMAGE */

.gx-ab-hero-img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

/* OVERLAY */

.gx-ab-hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background: rgba(0,0,0,.15);
z-index:2;
}

/* TEXT */

.gx-ab-hero-text{
position:relative;
z-index:3;
max-width:550px;
}

.gx-ab-hero-text h1{
font-size:42px;
margin-bottom:12px;
}

/* INTRO */

.gx-ab-intro{
margin-top:50px;
}

.gx-ab-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.gx-ab-img img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.gx-ab-content h2{
font-size:32px;
margin-bottom:15px;
}

.gx-ab-content p{
line-height:1.7;
margin-bottom:12px;
}

/* ===== STRENGTH SECTION ===== */

.gx-ab-strength{
margin-top:50px;
}

.gx-ab-title{
font-size:32px;
margin-bottom:25px;
}

.gx-ab-strength-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.gx-ab-strength-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 8px 22px rgba(0,0,0,.08);
transition:.3s;
}

.gx-ab-strength-card:hover{
transform:translateY(-8px);
box-shadow:0 14px 30px rgba(0,0,0,.15);
}

.gx-ab-strength-card i{
font-size:32px;
color:#ff7a18;
margin-bottom:12px;
}

.gx-ab-strength-card h3{
margin-bottom:10px;
}

.gx-ab-strength-card p{
line-height:1.6;
}

/* responsive */

@media(max-width:992px){
.gx-ab-strength-grid{
grid-template-columns:1fr;
}
}
/* COUNTER */

.gx-ab-counter{
margin-top:50px;
background:#ff7a18;
padding:50px;
border-radius:12px;
color:white;
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
}

.gx-count{
font-size:42px;
margin-bottom:10px;
}


/* ===============================
   TABLET RESPONSIVE
================================ */

@media (max-width:992px){

.gx-about-main{
padding:25px;
}

/* HERO */

.gx-ab-hero{
height:260px;
padding:30px;
}

.gx-ab-hero-text h1{
font-size:30px;
}

.gx-ab-hero-text p{
font-size:14px;
}

/* INTRO */

.gx-ab-grid{
grid-template-columns:1fr;
gap:25px;
}

/* STRENGTH */

.gx-ab-strength-grid{
grid-template-columns:1fr;
}

/* COUNTER */

.gx-ab-counter{
grid-template-columns:1fr 1fr;
gap:25px;
padding:35px;
}

}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width:600px){

.gx-about-main{
padding:18px;
}

/* HERO */

.gx-ab-hero{
height:220px;
padding:20px;
}

.gx-ab-hero-text h1{
font-size:22px;
}

.gx-ab-hero-text{
max-width:100%;
}

/* COUNTER */

.gx-ab-counter{
grid-template-columns:1fr;
text-align:center;
}

/* CARD */

.gx-ab-strength-card{
padding:22px;
}

}

/* ===============================
   SMALL MOBILE
================================ */

@media (max-width:400px){

.gx-ab-hero{
height:200px;
}

.gx-ab-hero-text h1{
font-size:18px;
}

}
                                                        /*product*/
.fp-title{
font-size:40px;
margin-bottom:30px;
text-align:center;
}

.fp-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;            /* before 30px */
}

.fp-card{
height:300px;        /* before 360px */
perspective:1000px;
}

.fp-inner{
position:relative;
width:100%;
height:100%;
transition:transform .8s;
transform-style:preserve-3d;
}

.fp-card.flip .fp-inner{
transform:rotateY(180deg);
}

.fp-front,
.fp-back{
position:absolute;
width:100%;
height:100%;
border-radius:18px;
box-shadow:0 12px 30px rgba(0,0,0,.12);
backface-visibility:hidden;
}

/* FRONT */

.fp-front{
background:white;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding:20px;
}

.fp-front img{
height:240px;
object-fit:contain;
margin-bottom:10px;
}

/* BACK */

.fp-back{
background: linear-gradient(135deg, #ff9a8b, #ff6a88);
color:white;
padding:25px;
transform:rotateY(180deg);
display:flex;
flex-direction:column;
justify-content:center;
}

.fp-back ul{
margin:10px 0;
font-size:14px;
line-height:1.6;
}

.fp-back button{
margin-top:10px;
padding:10px;
border:none;
background:white;
color:#ff7a18;
border-radius:6px;
}

/* animation load */

.fp-ani{
opacity:0;
transform:translateY(40px);
transition:.8s;
}

.fp-ani.show{
opacity:1;
transform:translateY(0);
}

/* responsive */

@media(max-width:992px){
.fp-grid{grid-template-columns:1fr 1fr;}
}

@media(max-width:600px){
.fp-grid{grid-template-columns:1fr;}
}														
/* POPUP */

.fp-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.fp-popup.show{
display:flex;
}

.fp-popup-box{
background:white;
padding:30px;
border-radius:12px;
width:350px;
position:relative;
animation:pop .3s;
}

@keyframes pop{
from{transform:scale(.8);opacity:0}
to{transform:scale(1);opacity:1}
}

.fp-close{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}

.fp-popup input,
.fp-popup textarea{
width:100%;
margin-bottom:10px;
padding:10px;
border-radius:6px;
border:1px solid #ddd;
}

.fp-popup button{
width:100%;
padding:12px;
border:none;
background:linear-gradient(135deg, #ff9a8b, #ff6a88);
color:white;
border-radius:6px;
cursor:pointer;
}
                                                        /*interior , Texture*/
/* ===== PAGE AREA ===== */

.txz-main{
margin-left:260px;
padding:110px 40px 40px;   /* header space top */
background:#f4f6f8;
transition:.4s;
/* min-height:100vh; */
text-align:center;
}

/* sidebar mini */

.sidebar.mini ~ .txz-main{
margin-left:80px;
}

.txz-card{
text-align:center;
}

.txz-name{
margin-top:10px;
font-size:18px;
color:#444;
font-weight:500;
}

/* ===== GRID LAYOUT ===== */

.txz-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1200px;
margin:auto;
}

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

.txz-img{
width:100%;
height:260px;
object-fit:cover;
border-radius:8px;
cursor:pointer;
transition:.3s;
}

.txz-img:hover{
transform:scale(1.05);
}

/* ===== LARGE TABLET ===== */

@media(max-width:1100px){
.txz-grid{
grid-template-columns:repeat(2,1fr);
}
}

/* ===== TABLET ===== */

@media(max-width:900px){

.txz-main{
margin-left:0;
padding:100px 20px 20px;
}

.txz-grid{
gap:20px;
}

.txz-img{
height:240px;
}

}

/* ===== MOBILE ===== */

@media(max-width:600px){

.txz-grid{
grid-template-columns:1fr;
}

.txz-img{
height:220px;
}

}

/* ===== SMALL MOBILE ===== */

@media(max-width:400px){

.txz-main{
padding:90px 12px;
}

.txz-img{
height:200px;
}

}

/* ===== POPUP ===== */

.txz-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.92);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
padding:20px;
}

.txz-popup img{
max-width:100%;
max-height:80%;
border-radius:10px;
}

/* close */

.txz-close{
position:absolute;
top:15px;
right:20px;
font-size:38px;
color:white;
cursor:pointer;
}

/* prev next */

.txz-prev,
.txz-next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:white;
border:none;
font-size:24px;
padding:8px 12px;
cursor:pointer;
border-radius:6px;
}

.txz-prev{left:10px;}
.txz-next{right:10px;}
													/*contact*/


/* ===== PAGE LAYOUT ===== */

.gx-contact-main{
margin-left:260px;
padding:110px 30px 40px;
background:#ffffff;
min-height:100vh;
transition:.4s;
}

/* sidebar mini */

.sidebar.mini ~ .gx-contact-main{
margin-left:80px;
}

/* ===== TITLE ===== */

.gx-contact-title{
text-align:center;
color:#111;
font-size:38px;
margin-bottom:10px;
}

.gx-contact-sub{
text-align:center;
color:#777;
margin-bottom:35px;
font-size:15px;
}

/* ===== GRID ===== */

.gx-contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:35px;
max-width:1000px;
margin:auto;
}

/* ===== GLOW BOX ===== */

.gx-contact-info,
.gx-contact-form{
background:linear-gradient(135deg,#111,#222);
padding:28px;
border-radius:12px;
box-shadow:0 0 15px rgba(255,122,24,.22);
transition:.35s;
}

.gx-contact-info:hover,
.gx-contact-form:hover{
box-shadow:0 0 28px rgba(255,122,24,.55);
}

/* ===== INFO ===== */

.gx-contact-info h3{
color:#ff7a18;
margin-bottom:18px;
font-size:20px;
}

.gx-info-row{
display:flex;
align-items:flex-start;
gap:10px;
margin-bottom:14px;
color:#ddd;
font-size:14px;
line-height:1.5;
}

/* icons original colors */

.gx-info-row .fa-phone{ color:#25D366; }
.gx-info-row .fa-envelope{ color:#EA4335; }
.gx-info-row .fa-location-dot{ color:#4285F4; }

/* ===== FORM ===== */

.gx-field{
position:relative;
margin-bottom:18px;
}

.gx-field input,
.gx-field textarea{
width:100%;
padding:11px;
background:#000;
border:1px solid #333;
color:white;
border-radius:6px;
font-size:14px;
transition:.3s;
}

.gx-field textarea{
min-height:90px;
resize:none;
}

.gx-field input::placeholder,
.gx-field textarea::placeholder{
color:#777;
}

/* glow */

.gx-field input:focus,
.gx-field textarea:focus{
outline:none;
border-color:#444;
box-shadow:0 0 10px rgba(255,122,24,.6);
}

/* floating label */

.gx-field label{
position:absolute;
top:50%;
left:12px;
transform:translateY(-50%);
color:#aaa;
pointer-events:none;
transition:.3s;
font-size:13px;
}

.gx-field input:focus + label,
.gx-field textarea:focus + label,
.gx-field input:valid + label,
.gx-field textarea:valid + label{
top:-8px;
background:#222;
padding:0 5px;
font-size:11px;
color:#ff7a18;
}

/* button */

.gx-send-btn{
background:#ff7a18;
border:none;
padding:11px 18px;
color:white;
cursor:pointer;
border-radius:6px;
font-size:14px;
transition:.3s;
}

.gx-send-btn:hover{
box-shadow:0 0 14px rgba(255,122,24,.7);
}

/* ===== LOCATION ===== */

.gx-location-title{
text-align:center;
color:#111;
margin:45px 0 18px;
font-size:26px;
}

.gx-map{
max-width:650px;
margin:auto;
border-radius:12px;
overflow:hidden;
}

.gx-map iframe{
width:100%;
height:230px;
border:none;
}

/* ===== TABLET ===== */

@media(max-width:900px){

.gx-contact-main{
margin-left:0;
padding:95px 20px 35px;
}

.gx-contact-title{
font-size:32px;
}

.gx-contact-grid{
grid-template-columns:1fr;
gap:25px;
}

}

/* ===== SMALL MOBILE ===== */

@media(max-width:600px){

.gx-contact-main{
padding:85px 14px 30px;
}

.gx-contact-title{
font-size:26px;
}

.gx-contact-sub{
font-size:13px;
}

.gx-contact-info,
.gx-contact-form{
padding:22px;
}

.gx-map iframe{
height:200px;
}

}

/* ===== EXTRA SMALL ===== */

@media(max-width:380px){

.gx-contact-title{
font-size:22px;
}

.gx-info-row{
font-size:13px;
}

.gx-send-btn{
width:100%;
}

}											
                                                       /*FAQ'S*/
/* ===== PAGE LAYOUT ===== */

.gwfaq-page{
margin-left:260px;
padding:110px 15px 40px;
background:#ffffff;
min-height:100vh;
transition:.4s;

display:block;          /* ⭐ better mobile layout */
}

/* sidebar mini */

.sidebar.mini ~ .gwfaq-page{
margin-left:80px;
}

/* ===== CONTAINER ===== */

.gwfaq-container{
width:100%;
max-width:900px;
margin:auto;           /* ⭐ center content */
}

/* ===== TITLE ===== */

.gwfaq-title{
text-align:center;
font-size:38px;
color:#111;
margin-bottom:35px;
line-height:1.3;
}

/* ===== FAQ ITEM ===== */

.gwfaq-item{
background:#fff;
border-radius:12px;
margin-bottom:18px;
border:1px solid #f1f1f1;
box-shadow:0 8px 25px rgba(0,0,0,.05);
transition:.35s;
overflow:hidden;
border-left:5px solid transparent;
}

/* hover */

.gwfaq-item:hover{
transform:translateY(-4px);
box-shadow:0 15px 35px rgba(255,122,24,.18);
border-color:#ffe1cc;
}

/* active */

.gwfaq-item.active{
border-left:5px solid #ff7a18;
}

/* ===== QUESTION ===== */

.gwfaq-question{
padding:16px 18px;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
font-size:17px;
color:#222;
gap:10px;
}

/* icon */

.gwfaq-question i{
transition:.4s;
flex-shrink:0;
}

/* ===== ANSWER ===== */

.gwfaq-answer{
max-height:0;
overflow:hidden;
padding:0 18px;
color:#555;
font-size:15px;
line-height:1.7;
transition:max-height .5s ease, padding .4s;
}

.gwfaq-item.active .gwfaq-answer{
max-height:500px;      /* ⭐ large height for mobile text */
padding:10px 18px 18px;
}

/* icon rotate */

.gwfaq-item.active i{
transform:rotate(180deg);
color:#ff7a18;
}

/* ===== TABLET ===== */

@media(max-width:900px){

.gwfaq-page{
margin-left:0;
padding-top:95px;
}

.gwfaq-title{
font-size:32px;
}

}

/* ===== SMALL MOBILE ===== */

@media(max-width:600px){

.gwfaq-page{
padding:85px 12px 30px;
}

.gwfaq-title{
font-size:26px;
margin-bottom:25px;
}

.gwfaq-question{
font-size:15px;
padding:14px;
}

.gwfaq-answer{
font-size:14px;
}

}

/* ===== EXTRA SMALL ===== */

@media(max-width:380px){

.gwfaq-title{
font-size:22px;
}

.gwfaq-question{
font-size:14px;
}

}
/* ===== MOBILE SIDEBAR FIX ===== */

.sidebar-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.4);
z-index:998;
opacity:0;
pointer-events:none;
transition:.3s;
}

.sidebar-overlay.show{
opacity:1;
pointer-events:auto;
}

/* sidebar */

.sidebar{
z-index:999;
}

/* prevent body scroll */

body.no-scroll{
overflow:hidden;
}
