/* =========================================================
   APEXORA B2B — CORE DESIGN SYSTEM
   =========================================================
   Breakpoint scale used throughout this file:
     1440px+  large desktop  (min-width tier — roomier container)
     1081-∞   desktop        (default, no media query)
     1080px   laptop/tablet-landscape (nav collapses to hamburger)
     900px    tablet-portrait (two-column layouts stack)
     640px    large mobile   (card grids go single-column)
     480px    small mobile   (tightened spacing, forms, lists)
   ========================================================= */

:root{
  /* Brand palette — primary white, secondary black */
  --navy-950:#000000;
  --navy-900:#0d0d0d;
  --navy-800:#1a1a1a;
  --navy-700:#262626;
  --navy-600:#333333;
  --blue-500:#404040;
  --blue-400:#666666;
  --accent:#111111;
  --accent-dark:#000000;
  --accent-light:#f0f0f0;

  --white:#ffffff;
  --gray-50:#f7f7f7;
  --gray-100:#eeeeee;
  --gray-200:#e0e0e0;
  --gray-300:#cccccc;
  --gray-400:#999999;
  --gray-500:#737373;
  --gray-600:#595959;
  --gray-700:#404040;
  --gray-800:#262626;
  --gray-900:#141414;

  --font-head:'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body:'Inter', system-ui, sans-serif;

  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --radius-full:999px;

  --shadow-sm:0 2px 8px rgba(0,0,0,.06);
  --shadow-md:0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:0 20px 60px rgba(0,0,0,.16);
  --shadow-glow:0 10px 40px rgba(0,0,0,.30);

  --container:1240px;
  --header-h:82px;

  --ease:cubic-bezier(.4,0,.2,1);
}

/* Large desktop — give the layout a little more breathing room on big monitors */
@media (min-width:1440px){
  :root{--container:1320px}
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 10px)}
body{
  font-family:var(--font-body);
  color:var(--gray-800);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
input,textarea,select{font:inherit}
svg{display:block}

h1,h2,h3,h4{
  font-family:var(--font-head);
  color:var(--navy-900);
  font-weight:700;
  line-height:1.15;
  letter-spacing:-.01em;
}
h1{font-size:clamp(2rem,3vw,2rem)}
h2{font-size:clamp(1.9rem,3.2vw,2rem)}
h3{font-size: clamp(1.2rem,1.8vw,1.4rem);}
p{color:var(--gray-600)}

.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 24px}
.section{padding:50px 0}
.section-tight{padding:50px 0}
@media (max-width:768px){
  .section{padding:40px 0}
  .section-tight{padding:36px 0}
}
.section-dark{background:linear-gradient(160deg,var(--navy-900),var(--navy-950));color:var(--gray-300)}
.section-dark h2,.section-dark h3{color:var(--white)}
.section-dark p{color:var(--gray-400)}
.section-gray{background:var(--gray-50)}
.section-ash{background:#f0f0f0}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-head);
  font-size:.78rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--accent-dark);
  background:var(--accent-light);
  padding:7px 16px;border-radius:var(--radius-full);
  margin-bottom:18px;
}
.section-dark .eyebrow{background:rgba(255,255,255,.12);color:#fff}

.section-head{max-width:680px;margin-bottom:56px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head p{margin-top:14px;font-size:1.08rem}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-head);font-weight:600;font-size:.96rem;
  padding:15px 30px;border-radius:var(--radius-full);
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),background .3s var(--ease),color .3s var(--ease),border-color .3s var(--ease);
  white-space:nowrap;
}
.btn-lg{padding:18px 36px;font-size:1.02rem}
.btn-sm{padding:11px 22px;font-size:.86rem}
.btn-primary{background:var(--accent);color:var(--white);box-shadow:var(--shadow-glow)}
.btn-primary:hover{background:var(--accent-dark);transform:translateY(-3px);box-shadow:0 16px 40px rgba(0,0,0,.35)}
.btn-navy{background:var(--navy-900);color:var(--white)}
.btn-navy:hover{background:var(--blue-500);transform:translateY(-3px);box-shadow:0 14px 34px rgba(0,0,0,.3)}
.btn-outline{background:transparent;border:1.5px solid var(--gray-300);color:var(--navy-900)}
.btn-outline:hover{border-color:var(--navy-900);background:var(--navy-900);color:var(--white);transform:translateY(-3px)}
.btn-outline-light{background:transparent;border:1.5px solid rgba(255,255,255,.35);color:var(--white)}
.btn-outline-light:hover{background:var(--white);color:var(--navy-900);border-color:var(--white);transform:translateY(-3px)}
.btn-white{background:var(--white);color:var(--navy-900)}
.btn-white:hover{background:var(--accent);color:var(--white);transform:translateY(-3px)}
.btn-block{width:100%}
.btn-icon{width:18px;height:18px;flex:none}

/* ---------- Header ---------- */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:var(--header-h);
  display:flex;align-items:center;
  background:rgb(0,0,0);
  transition:background .35s var(--ease),box-shadow .35s var(--ease),height .35s var(--ease);
}
.site-header::before{
  content:'';position:absolute;inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  opacity:1;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:opacity .35s var(--ease);
  z-index:-1;
}
.site-header.scrolled{height:70px;box-shadow:0 6px 30px rgba(0,0,0,.18)}
.site-header.scrolled::before{background:rgba(0,0,0,.92)}
.site-header.solid::before{background:rgba(0,0,0,.92)}

.header-inner{width:100%;max-width:var(--container);margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;gap:24px}

.brand{display:flex;align-items:center;gap:10px;font-family:var(--font-head);font-weight:800;font-size:1.4rem;color:var(--white)}
.brand .brand-mark{
  width:38px;height:38px;border-radius:10px;
  background:linear-gradient(135deg,var(--accent),var(--accent-dark));
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:800;font-size:1.1rem;flex:none;
}
.brand .brand-sub{display:block;font-size:.6rem;letter-spacing:.18em;font-weight:600;color:var(--gray-400);text-transform:uppercase;font-family:var(--font-body)}
.brand-img{height:40px;width:auto;display:block;transition:height .35s var(--ease)}
.site-header.scrolled .brand-img{height:32px}
.footer-brand .brand-img{height:44px}

.main-nav{display:flex;align-items:center;gap:2px}
.main-nav>ul{display:flex;align-items:center;gap:2px}
.main-nav>ul>li{position:relative}
.nav-link{
  display:flex;align-items:center;gap:6px;
  padding:14px 16px;font-size:.93rem;font-weight:600;color:rgba(255,255,255,.85);
  border-radius:var(--radius-full);transition:color .25s,background .25s;
}
.nav-link:hover,.nav-link.active{color:#fff;background:rgba(255,255,255,.08)}
.nav-caret{width:9px;height:9px;transition:transform .25s var(--ease)}
.has-dropdown:hover .nav-caret{transform:rotate(180deg)}

.dropdown{
  position:absolute;top:100%;left:0;padding-top:14px;
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .25s var(--ease),transform .25s var(--ease),visibility .25s;
  z-index:50;
}
.has-dropdown:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-panel{
  background:var(--white);border-radius:var(--radius-md);box-shadow:var(--shadow-lg);
  min-width:250px;padding:10px;border:1px solid var(--gray-100);
}
.dropdown-panel a{
  display:flex;align-items:center;gap:12px;
  padding:11px 14px;border-radius:10px;font-size:.92rem;font-weight:600;color:var(--gray-700);
  transition:background .2s,color .2s,padding-left .2s;
}
.dropdown-panel a .dot{width:7px;height:7px;border-radius:50%;background:var(--accent);flex:none;opacity:.6}
.dropdown-panel a:hover{background:var(--gray-50);color:var(--navy-900);padding-left:18px}

.header-actions{display:flex;align-items:center;gap:14px}
.header-phone{display:flex;align-items:center;gap:9px;color:#fff}
.header-phone svg{width:18px;height:18px;color:var(--white)}
.header-phone .lbl{display:block;font-size:.68rem;color:var(--gray-400);font-weight:600}
.header-phone .num{display:block;font-size:.88rem;font-weight:700}

.nav-toggle{display:none;width:44px;height:44px;border-radius:10px;align-items:center;justify-content:center;background:rgba(255,255,255,.08);color:#fff}
.nav-toggle svg{width:22px;height:22px}

/* Mobile nav */
.mobile-nav{
  position:fixed;inset:0 0 0 auto;width:min(640px,94vw);height:100vh;
  background:var(--navy-950);z-index:1100;padding:26px 22px;
  transform:translateX(100%);transition:transform .4s var(--ease);
  overflow-y:auto;
}
.mobile-nav.open{transform:translateX(0)}
.mobile-nav-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:26px}
.mobile-close{width:40px;height:40px;border-radius:10px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:#fff}
.mobile-close svg{width:20px;height:20px}
.mobile-nav a{color:#fff}

.mobile-nav-body{display:grid;grid-template-columns:1fr 1fr;gap:26px 18px}
.mobile-nav-links{grid-column:1 / -1}
.mobile-nav-links{display:flex;flex-wrap:wrap}
.mobile-nav-links li{border-bottom:1px solid rgba(255,255,255,.08);flex:0 0 50%}
.mobile-nav-links li>a{display:block;padding:12px 4px;font-weight:700;font-size:.95rem;color:#fff}

.mobile-nav-col{min-width:0}
.mobile-col-toggle{
  display:flex;align-items:center;justify-content:space-between;width:100%;
  font-size:.78rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:#fff;
}
.mobile-col-toggle svg{width:14px;height:14px;flex:none;transition:transform .3s}
.mobile-col-toggle.open svg{transform:rotate(180deg)}
.mobile-col-list{max-height:0;overflow:hidden;transition:max-height .35s var(--ease)}
.mobile-col-list a{display:block;padding:8px 0;font-size:.88rem;font-weight:600;color:var(--gray-400)}
.mobile-col-list a:first-child{padding-top:10px}
.mobile-col-list a:hover{color:#fff}

.mobile-nav-cta{margin-top:24px;display:flex;flex-direction:column;gap:12px}
.mobile-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:1090;opacity:0;visibility:hidden;transition:opacity .35s}
.mobile-overlay.open{opacity:1;visibility:visible}

@media (max-width:1080px){
  .main-nav,.header-phone{display:none}
  .nav-toggle{display:flex}
}

/* ---------- Hero ---------- */
.hero{
  position:relative;min-height:96vh;display:flex;align-items:center;
  padding-top:var(--header-h);
  background:radial-gradient(ellipse 90% 70% at 25% 0%,#242424 0%,var(--navy-900) 55%,var(--navy-950) 100%);
  overflow:hidden;color:#fff;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(ellipse 70% 60% at 30% 30%,#000 20%,transparent 75%);
  pointer-events:none;
}
.hero-glow{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none;opacity:.55}
.hero-glow.g1{width:520px;height:520px;background:var(--white);top:-160px;right:-120px;opacity:.10}
.hero-glow.g2{width:420px;height:420px;background:var(--white);bottom:-140px;left:10%;opacity:.06}

.hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center;width:100%}
.hero-badge{display:inline-flex;align-items:center;gap:9px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);padding:8px 18px 8px 8px;border-radius:var(--radius-full);font-size:.82rem;font-weight:600;margin-bottom:26px}
.hero-badge .pip{width:9px;height:9px;border-radius:50%;background:var(--white);box-shadow:0 0 0 4px rgba(255,255,255,.25)}
.hero h1{color:#fff;margin-bottom:20px;line-height: 64px;}
.hero h1 span{color:var(--navy-950);background:var(--white);padding:0 16px;border-radius:12px;display:inline-block}
.hero .lead{font-size:1.15rem;color:var(--gray-300);max-width:520px;margin-bottom:34px}
.hero-ctas{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:44px}
.hero-meta{display:flex;flex-wrap:wrap;gap:34px}
.hero-meta div b{display:block;font-family:var(--font-head);font-size:1.6rem;color:#fff}
.hero-meta div span{font-size:.82rem;color:var(--gray-400)}

.hero-visual{position:relative}
.hero-art{
  position:relative;border-radius:26px;overflow:hidden;
  background:linear-gradient(150deg,#1a1a1a,#0d0d0d);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/4.6;
  padding:26px;
}
.hero-art .grid-mock{position:absolute;inset:0;opacity:.5; background-size:18px 18px;  background-image: url('../img/b2b-home.webp');
    
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.float-card{
  position:absolute;background:rgba(255,255,255,.97);color:var(--navy-900);border-radius:16px;padding:16px 18px;
  box-shadow:0 20px 40px rgba(0,0,0,.3);display:flex;align-items:center;gap:12px;
  animation:floaty 5s ease-in-out infinite;
}
.float-card .fc-ic{width:40px;height:40px;border-radius:11px;display:flex;align-items:center;justify-content:center;flex:none}
.float-card .fc-ic svg{width:20px;height:20px}
.float-card b{display:block;font-size:1.1rem;font-family:var(--font-head)}
.float-card span{font-size:.72rem;color:var(--gray-500);font-weight:600}
.fc-1{top:27%;left:2%;animation-delay:.2s}
.fc-2{bottom:6%;right:6%;animation-delay:1s}
.fc-3{top:10%;right:-8%;animation-delay:1.8s}
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}

@media (max-width:980px){
  .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero .lead{margin-left:auto;margin-right:auto}
  .hero-ctas,.hero-meta{justify-content:center}
  .hero-visual{width:100%;max-width:420px;margin:0 auto}
  .fc-3{display:none}
}

/* ---------- Logo strip ---------- */
.logo-strip-wrap{padding:56px 0;border-bottom:1px solid var(--gray-100)}
.logo-strip-label{text-align:center;font-size:.82rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gray-400);margin-bottom:32px}
.logo-strip{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:52px}
.logo-strip .lg{font-family:var(--font-head);font-weight:800;font-size:1.3rem;color:var(--gray-300);transition:color .3s,transform .3s}
.logo-strip .lg:hover{color:var(--navy-800);transform:translateY(-3px)}

/* ---------- About ---------- */
.about-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:70px;align-items:center}
.about-visual{position:relative}

#ab-1{
    height: 526px;
  width: 571px; 
}

.about-photo{
   
    
    border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:1/1.05;background:linear-gradient(150deg,var(--navy-800),var(--navy-950));position:relative}
.about-photo img{width:100%;height:100%;object-fit:cover;display:block}
.about-badge{position:absolute;bottom:-24px;left:-24px;background:var(--white);border-radius:var(--radius-md);box-shadow:var(--shadow-lg);padding:20px 24px;display:flex;align-items:center;gap:14px}
.about-badge b{font-family:var(--font-head);font-size:1.8rem;color:var(--accent)}
.about-badge span{font-size:.78rem;font-weight:600;color:var(--gray-500);max-width:110px;display:block}
.about-list{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:28px 0 34px}
.about-list li{display:flex;align-items:flex-start;gap:12px;font-weight:600;color:var(--navy-800);font-size:.95rem}
.about-list .chk{width:24px;height:24px;border-radius:50%;background:var(--accent-light);color:var(--accent-dark);display:flex;align-items:center;justify-content:center;flex:none}
.about-list .chk svg{width:13px;height:13px}
@media (max-width:900px){.about-grid{grid-template-columns:1fr}.about-visual{max-width:380px;margin:0 auto 20px}}

/* ---------- Cards: services ---------- */
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:28px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
@media (max-width:1080px){.grid-4{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.grid-4,.grid-3,.grid-2{grid-template-columns:1fr}}

.service-card{
  background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius-lg);
  padding: 30px 30px 24px;  transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s;
  position:relative;overflow:hidden;height:100%;display:flex;flex-direction:column;
}
.service-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);border-color:transparent}
.card-icon{
  width:55px;height:55px;border-radius:16px;
  background:linear-gradient(135deg,var(--navy-800),var(--navy-900));
  display:flex;align-items:center;justify-content:center;margin-bottom:20px;
  transition:background .4s;flex:none;
}
.card-icon svg{width:27px;height:27px;color:var(--white)}
.service-card:hover .card-icon{background:linear-gradient(135deg,var(--accent),var(--accent-dark))}
.service-card:hover .card-icon svg{color:#fff}
.service-card h3{margin-bottom:10px}
.service-card p{font-size:.92rem;margin-bottom:10px}
.service-card ul{margin-bottom:15px;flex:1}
.service-card ul li{display:flex;align-items:center;gap:9px;font-size:.87rem;font-weight:600;color:var(--gray-600);padding:5px 0}
.service-card ul li::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--accent);flex:none}
.card-link{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-head);font-weight:700;font-size:.88rem;color:var(--navy-900);margin-top:auto}
.card-link svg{width:15px;height:15px;transition:transform .3s var(--ease)}
.service-card:hover .card-link svg{transform:translateX(5px)}
.card-link:hover{color:var(--accent)}

/* ---------- Why choose us ---------- */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:rgba(255,255,255,.08);border-radius:var(--radius-lg);overflow:hidden}
.why-item{background:var(--navy-950);padding:34px 34px;transition:background .35s}
.why-item:hover{background:var(--navy-800)}
.why-item .card-icon{background:rgba(255,255,255,.06)}
.why-item h3{color:#fff;font-size:1.12rem;margin-bottom:8px}
.why-item p{font-size:.88rem;color:var(--gray-400)}
@media (max-width:900px){.why-grid{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.why-grid{grid-template-columns:1fr}}

/* ---------- Product cards ---------- */
.product-card{
  background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius-lg);overflow:hidden;
  transition:transform .4s var(--ease),box-shadow .4s var(--ease);height:100%;display:flex;flex-direction:column;
}
.product-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.product-thumb{aspect-ratio:1/.85;position:relative;overflow:hidden;background:linear-gradient(135deg,var(--gray-100),var(--gray-50))}
.product-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.product-card:hover .product-thumb img{transform:scale(1.08)}
.product-tag{position:absolute;top:14px;left:14px;background:var(--navy-900);color:#fff;font-size:.7rem;font-weight:700;padding:6px 13px;border-radius:var(--radius-full);text-transform:uppercase;letter-spacing:.05em}
.product-body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1}
.product-body h3{font-size:1.08rem;margin-bottom:8px}
.product-body p{font-size:.87rem;margin-bottom:18px;flex:1}
.product-actions{display:flex;gap:10px}
.product-actions .btn{flex:1;padding:11px 14px;font-size:.82rem}

/* ---------- Portfolio ---------- */
.filter-bar{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:44px}
.filter-btn{
  padding:11px 24px;border-radius:var(--radius-full);border:1.5px solid var(--gray-200);
  font-family:var(--font-head);font-weight:700;font-size:.85rem;color:var(--gray-600);
  transition:all .3s var(--ease);
}
.filter-btn:hover{border-color:var(--navy-900);color:var(--navy-900)}
.filter-btn.active{background:var(--navy-900);border-color:var(--navy-900);color:#fff}

.portfolio-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
@media (max-width:980px){.portfolio-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.portfolio-grid{grid-template-columns:1fr}}
.portfolio-item{position:relative;border-radius:var(--radius-md);overflow:hidden;aspect-ratio:4/3.2;background:linear-gradient(150deg,var(--navy-800),var(--navy-950));cursor:pointer}
.portfolio-item.hide{display:none}
.portfolio-item img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.portfolio-overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.1) 55%,transparent 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:24px;opacity:0;transition:opacity .4s}
.portfolio-item:hover .portfolio-overlay{opacity:1}
.portfolio-item:hover img{transform:scale(1.1)}
.portfolio-cat{font-size:.72rem;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.08em;margin-bottom:6px}
.portfolio-overlay h3{color:#fff;font-size:1.05rem}

/* ---------- Industries ---------- */
.industry-card{
  background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius-md);
  padding:30px 24px;text-align:center;transition:transform .35s var(--ease),box-shadow .35s;
}
.industry-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:transparent}
.industry-card .card-icon{margin:0 auto 18px}
.industry-card h3{font-size:1rem}

/* ---------- Stats ---------- */
.stats-bar{background:linear-gradient(120deg,var(--navy-900),var(--navy-950));border-radius:var(--radius-lg);padding:56px 40px;display:grid;grid-template-columns:repeat(4,1fr);gap:20px;position:relative;overflow:hidden}
.stats-bar::after{content:'';position:absolute;width:360px;height:360px;background:var(--white);opacity:.06;filter:blur(100px);border-radius:50%;top:-140px;right:-80px}
.stat{text-align:center;position:relative;z-index:1}
.stat b{display:block;font-family:var(--font-head);font-size:clamp(2.1rem,4vw,3.1rem);color:#fff;font-weight:800}
.stat span{font-size:.88rem;color:var(--gray-400);font-weight:600}
@media (max-width:768px){.stats-bar{grid-template-columns:1fr 1fr}}

/* ---------- Testimonials ---------- */
.testi-track-wrap{overflow:hidden}
.testi-track{display:flex;transition:transform .5s var(--ease)}
.testi-slide{min-width:100%;padding:6px}
.testi-card{background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:44px;max-width:780px;margin:0 auto;text-align:center;box-shadow:var(--shadow-sm)}
.stars{display:flex;justify-content:center;gap:4px;margin-bottom:20px;color:var(--accent)}
.stars svg{width:18px;height:18px}
.testi-quote{font-size:1.2rem;color:var(--navy-800);font-weight:500;line-height:1.6;margin-bottom:28px;font-family:var(--font-head)}
.testi-person{display:flex;align-items:center;justify-content:center;gap:14px}
.testi-avatar{width:52px;height:52px;border-radius:50%;background:linear-gradient(135deg,var(--navy-700),var(--navy-900));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-family:var(--font-head)}
.testi-person b{display:block;color:var(--navy-900);font-size:.95rem}
.testi-person span{font-size:.8rem;color:var(--gray-500)}
.testi-nav{display:flex;justify-content:center;gap:10px;margin-top:32px}
.testi-dot{width:9px;height:9px;border-radius:50%;background:var(--gray-300);transition:all .3s}
.testi-dot.active{background:var(--accent);width:26px;border-radius:6px}

/* ---------- CTA ---------- */
.cta-band{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  background:linear-gradient(120deg,var(--navy-900) 0%,var(--navy-950) 100%);
  padding: 50px 60px 10px;text-align:center;color:#fff;
}
.cta-band::before{content:'';position:absolute;width:420px;height:420px;background:var(--white);opacity:.08;filter:blur(110px);border-radius:50%;bottom:-200px;left:-100px}
.cta-band h2{color:#fff;margin-bottom:14px;position:relative}
.cta-band p{color:var(--gray-300);max-width:560px;margin:0 auto 34px;position:relative;font-size:1.05rem}
.cta-band .hero-ctas{justify-content:center;position:relative}
@media (max-width:640px){.cta-band{padding:50px 26px}}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy-950);color:var(--gray-400);padding-top:80px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;padding-bottom:0px;border-bottom:1px solid rgba(255,255,255,.08)}
.footer-brand p{margin:18px 0 22px;font-size:.92rem;color:var(--gray-400);max-width:300px}
.footer-social{display:flex;gap:10px}
.footer-social a{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.06);display:flex;align-items:center;justify-content:center;transition:background .3s,transform .3s}
.footer-social a:hover{background:var(--accent);transform:translateY(-3px)}
.footer-social svg{width:16px;height:16px;color:#fff}
.footer-col h4{color:#fff;font-size:.95rem;margin-bottom:22px;font-family:var(--font-head)}
.footer-col ul li{margin-bottom:13px}
.footer-col a{font-size:.88rem;color:var(--gray-400);transition:color .25s,padding-left .25s}
.footer-col a:hover{color:var(--accent);padding-left:4px}
.footer-contact li{display:flex;gap:12px;align-items:flex-start;font-size:.88rem;margin-bottom:16px}
.footer-contact svg{width:17px;height:17px;color:var(--white);flex:none;margin-top:2px}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding:26px 0;font-size:.82rem;flex-wrap:wrap;gap:12px}
.footer-bottom-links{display:flex;gap:22px}
.footer-bottom-links a:hover{color:#fff}
@media (max-width:980px){.footer-grid{grid-template-columns:1fr 1fr;gap:36px 24px}}
@media (max-width:600px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px 20px}
  .footer-brand{grid-column:1 / -1}
  .footer-col-2up{grid-column:1 / -1}
  .footer-col-2up ul{column-count:2;column-gap:24px}
  .footer-col-2up li{break-inside:avoid}
}

/* ---------- Floating buttons ---------- */
.float-actions{position:fixed;right:24px;top:50%;transform:translateY(-50%);z-index:900;display:flex;flex-direction:column;gap:14px;align-items:center}
.float-btn{
  width:58px;height:58px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.3);transition:transform .35s var(--ease),box-shadow .35s var(--ease);color:#fff;position:relative;
  animation:floatBtn 3.2s ease-in-out infinite;
}
.float-btn:hover{animation-play-state:paused;transform:scale(1.12);box-shadow:0 14px 36px rgba(0,0,0,.4)}
.float-btn svg{width:26px;height:26px}
.float-btn.whatsapp{background:var(--navy-900);animation-delay:.4s}
.float-btn.call{background:var(--navy-900)}
@keyframes floatBtn{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
.to-top{position:fixed;right:24px;bottom:24px;z-index:900;width:44px;height:44px;border-radius:50%;background:var(--navy-900);color:#fff;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transform:translateY(10px);transition:all .3s}
.to-top.show{opacity:1;visibility:visible;transform:translateY(0)}
.to-top svg{width:18px;height:18px}

/* ---------- Mobile bottom tab bar ---------- */
.mobile-tabbar{
  display:none;position:fixed;left:0;right:0;bottom:0;z-index:1050;
  background:var(--white);border-top:1px solid var(--gray-200);
  padding:8px 4px calc(8px + env(safe-area-inset-bottom));
  box-shadow:0 -6px 20px rgba(0,0,0,.08);
}
.mobile-tabbar a{
  display:flex;flex-direction:column;align-items:center;gap:3px;flex:1;
  color:var(--gray-500);font-size:.66rem;font-weight:700;padding:4px 2px;
}
.mobile-tabbar a svg{width:20px;height:20px}
.mobile-tabbar a.active{color:var(--navy-950)}

@media (max-width:768px){
  /* Vertical-center placement overlaps page content once side whitespace disappears — pin to the bottom-right corner instead, stacked above the back-to-top button. */
  .float-actions{display:none}
  .to-top{right:14px;bottom:82px;width:36px;height:36px}
  .to-top svg{width:15px;height:15px}
  .mobile-tabbar{display:flex}
  body{padding-bottom:64px}
}

/* ---------- Page header (inner pages) ---------- */
.page-hero{
  position:relative;padding:calc(var(--header-h) + 70px) 0 44px;
  background:var(--navy-950);
  color:#fff;overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:50px 50px;
  mask-image:radial-gradient(ellipse 60% 80% at 50% 0%,#000 20%,transparent 75%);
}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:.86rem;color:var(--gray-400);margin-bottom:18px;position:relative}
.breadcrumb a:hover{color:var(--accent)}
.breadcrumb svg{width:12px;height:12px}
.page-hero h1{color:#fff;position:relative;max-width:760px}
.page-hero .lead{position:relative;color:var(--gray-300);max-width:600px;margin-top:16px;font-size:1.08rem}

/* ---------- Forms ---------- */
.form-card{background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:44px;box-shadow:var(--shadow-md)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:18px}
@media (max-width:600px){.form-row{grid-template-columns:1fr}}
.field label{display:block;font-size:.84rem;font-weight:700;color:var(--navy-800);margin-bottom:8px}
.field input,.field select,.field textarea{
  width:100%;padding:13px 16px;border-radius:10px;border:1.5px solid var(--gray-200);
  background:var(--gray-50);transition:border-color .25s,background .25s;color:var(--navy-900);font-size:.94rem;
}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--accent);background:#fff}
.field textarea{resize:vertical;min-height:120px}
.form-note{font-size:.8rem;color:var(--gray-500);margin-top:14px;display:flex;gap:8px;align-items:flex-start}
.form-alt{display:flex;gap:12px;margin-top:22px}
.form-alt .btn{flex:1}
.form-success{display:none;text-align:center;padding:30px 10px}
.form-success.show{display:block}
.form-success .chk-big{width:70px;height:70px;border-radius:50%;background:#e7f8ee;color:#1aa554;display:flex;align-items:center;justify-content:center;margin:0 auto 20px}
.form-success .chk-big svg{width:34px;height:34px}

/* ---------- Sidebar (product/service pages) ---------- */
.side-card{background:var(--gray-50);border:1px solid var(--gray-100);border-radius:var(--radius-md);padding:28px}
.side-card+.side-card{margin-top:22px}
.side-card h4{font-size:1rem;margin-bottom:16px;color:var(--navy-900)}
.side-list a{display:flex;align-items:center;justify-content:space-between;padding:11px 0;border-bottom:1px solid var(--gray-200);font-size:.9rem;font-weight:600;color:var(--gray-700)}
.side-list a:last-child{border-bottom:none}
.side-list a:hover{color:var(--accent)}
.side-list svg{width:14px;height:14px}

/* ---------- Utility ---------- */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.in{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.08s}
.reveal-delay-2{transition-delay:.16s}
.reveal-delay-3{transition-delay:.24s}
.reveal-delay-4{transition-delay:.32s}
.tac{text-align:center}
.mt-0{margin-top:0}
.two-col{display:grid;grid-template-columns:2fr 1fr;gap:50px}
@media (max-width:900px){.two-col{grid-template-columns:1fr}}
.badge-pill{display:inline-flex;align-items:center;gap:8px;background:var(--gray-100);color:var(--navy-800);font-size:.8rem;font-weight:700;padding:8px 16px;border-radius:var(--radius-full);margin-bottom:10px}
.divider{height:1px;background:var(--gray-200);margin:34px 0}
.table-clean{width:100%;border-collapse:collapse}
.table-clean th,.table-clean td{text-align:left;padding:13px 16px;border-bottom:1px solid var(--gray-200);font-size:.9rem}
.table-clean th{background:var(--gray-50);font-family:var(--font-head);color:var(--navy-900)}
.blog-card{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);overflow:hidden;transition:transform .35s var(--ease),box-shadow .35s;height:100%;display:flex;flex-direction:column}
.blog-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.blog-thumb{aspect-ratio:16/10;background:linear-gradient(135deg,var(--navy-800),var(--navy-950));position:relative}
.blog-meta{display:flex;gap:16px;font-size:.78rem;color:var(--gray-500);font-weight:600;margin-bottom:12px}
.blog-body{padding:24px;display:flex;flex-direction:column;flex:1}
.blog-body h3{font-size:1.05rem;margin-bottom:10px}
.blog-body p{font-size:.88rem;flex:1;margin-bottom:16px}

/* ---------- Placeholder visual blocks (used in lieu of photography) ---------- */
.ph-block{width:100%;height:100%;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.ph-block svg{width:26%;height:26%;color:rgba(255,255,255,.28);position:relative;z-index:1}
.ph-block::after{content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.14) 1px,transparent 1px);background-size:16px 16px;opacity:.6}
.ph-block.light{background:linear-gradient(135deg,var(--gray-100),var(--gray-50))}
.ph-block.light svg{color:rgba(0,0,0,.16)}
.ph-block.light::after{background-image:radial-gradient(rgba(0,0,0,.08) 1px,transparent 1px)}
.ph-block.accent{background:var(--white);border:1px solid var(--gray-200)}
.ph-block.accent svg{color:rgba(0,0,0,.18)}
.ph-block.accent::after{background-image:radial-gradient(rgba(0,0,0,.08) 1px,transparent 1px)}

/* ---------- Small mobile (≤480px) — tighten components with no prior breakpoint ---------- */
@media (max-width:480px){
  .section{padding:20px 0}
  .section-tight{padding:28px 0}
 
  .header-inner{gap:10px}
  .brand-img{height:32px}
  .site-header.scrolled .brand-img{height:28px}
  .header-actions{gap:8px}
  .page-hero{padding:calc(var(--header-h) + 40px) 0 56px}
  .hero-meta{gap:18px;display : none;}
   .hero-visual { display : none;  }
  .hero-ctas .btn{flex:1 1 auto}
  .about-list{grid-template-columns:1fr;}
   .form-card {
    padding: 24px;
    width: 100%;
  }
  .form-alt{
      display : none;
  }
  
  .side-card{padding:20px}
  .stats-bar{padding:32px 22px;gap:16px}
  .cta-band{padding:36px 20px}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:14px}
  .testi-card{padding:26px}
}

.custom-ul{
  
  gap: 12px;
  margin: 15px 0 10px;

}


@media (max-width:1536px){
    .hero {
  position: relative;
  min-height: 100vh;
    }
    .hero-art {

  aspect-ratio: 4/3.7;
    }
    
    
    
}

/*Mobile Version */

@media  (max-width: 576px) {
     .hero {
    position: relative;
    min-height: 73vh;
  } 
  .logo-strip-wrap{
      
      display : none;
  }
  #ab-1 {
  height: 335px;
  width: 335px;
}
.header-inner {

  justify-content: space-around;
}
.float-actions {
  position: fixed;
  right: 10px;
}
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.hero h1 {

  line-height: 48px;
}
.about-grid {

  gap: 45px;
}
h2 {
  font-size: clamp(1.4rem,2vw,2rem);
  line-height: 1.19;
}
    #con-mb{
        padding: 0px 18px 0 !important;
    }
    
    .section-head {

  margin-bottom: 36px;
    }
    .why-item {

  padding: 18px 34px 34px;
    }
    .hero-ctas {

  margin-bottom: 12px;
    }
    .site-footer {
 
  padding-top: 30px;
    }

     #f-g {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 15px !important;
    }
     #ff{
         padding-bottom : 0px !important;
     }
     
     #hero-con{
         padding :30px 12px 20px;
     }
     .ab-btn{
    margin-top : 16px;
}
    
    
}

#f-g{display:flex;gap:36px;list-style:none;justify-content:space-around;}



/*Sateesh Sir Laptap Sceen Size Media Query starts here*/

@media only screen and (min-width: 1200px) and (max-width: 1319px) {
    
    
    .nav-link {

  font-size: .85rem;
  
    }
    
    #hero-con{
        padding: 30px 60px;
    }
    .hero-badge{
        
    margin-bottom : 8px
    }
    .hero .lead {
  font-size: 1rem;

  margin-bottom: 20px;

}
.btn-lg {
  padding: 15px 28px;
  font-size: 1rem;
}
.float-actions {
  position: fixed;
  right: 10px;
  top: 73%;
}
.float-btn {
  width: 50px;
  height: 50px;
}
.float-btn svg {
  width: 23px;
  height: 23px;
}
.to-top {
  position: fixed;
  right: 12px;
}
  .hero-art {
    aspect-ratio: 4/3.4;
  }
  .fc-3 {
  top: 33%;
  }
  h2 {
  font-size: clamp(1.3rem, 2.2vw, 2.2rem) !important;
  line-height: 1.30;
}
#ab-1 {
  height: 476px;
  width: 571px;
}
.about-badge {

  bottom: -12px;
  left: -18px;
}
.section {
  padding: 30px 0;
}
h3 {
  font-size: clamp(1rem,1.5vw,1.5rem) !important;
}
.service-card p {
  font-size: 0.80rem;
  margin-bottom: 6px;
}
.service-card ul li {
 
  font-size: .80rem;
}
.card-icon svg {
  width: 25px;
  height: 25px;
}
.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
service-card {
 
  padding: 20px 30px 17px;
}
.service-card ul {
  margin-bottom: 10px;
  
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease),transform .7s var(--ease);
}
.section-head {

  margin-bottom: 35px;
}
.two-col {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
}
.cta-band {

  padding: 35px 60px 0px;
}
.dropdown-panel a {

  gap: 10px;
  padding: 8px 14px;
  
  font-size: 0.85rem;
}
.page-hero  h1{
    font-size: clamp(1.8rem,2.5vw,1.2rem) !important;
}
.page-hero .lead{
font-size : 1rem;

}

p {
  color: var(--gray-600);
  font-size: 15px;
}
.about-grid {

  gap: 30px;
}

.about-grid .reveal p{
    margin-top : 10px !important;
}
.ab-p{
    margin-top :10px;
    font-size : 15px;
}
.ab-btn{
    margin-top : 16px;
}
.aspect{
    aspect-ratio: 17/10 !important;
}

}



.product-actions-wrapper {
    position: relative;
    height: 45px;
    overflow: visible;
}

/* =========================
   DOWN ARROW
========================= */

.product-arrow {
    position: absolute;
    inset: 0;

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

    color: var(--navy-900);
    font-size: 15px;

    opacity: 1;
    transform: translateY(0) scale(1);

    transition:
        opacity .35s ease,
        transform .5s cubic-bezier(.22, 1, .36, 1);

    animation: arrowFloat 1.8s ease-in-out infinite;
}

/* Arrow floating animation */
@keyframes arrowFloat {

    0% {
        transform: translateY(-3px) scale(1);
        opacity: .75;
    }

    50% {
        transform: translateY(5px) scale(1.08);
        opacity: 1;
    }

    100% {
        transform: translateY(-3px) scale(1);
        opacity: .75;
    }
}


/* =========================
   HOVER ARROW
========================= */

.product-actions-wrapper:hover .product-arrow {
    animation: arrowExit .5s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes arrowExit {

    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: .6;
        transform: translateY(10px) scale(1.12);
    }

    100% {
        opacity: 0;
        transform: translateY(18px) scale(.8);
    }
}


/* =========================
   PRODUCT ACTIONS
========================= */

.product-actions {
    position: absolute;
    inset: 0;

    display: flex;
    gap: 10px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    /* Initial position */
    transform: translateY(8px);

    transition:
        opacity .6s ease,
        visibility 0s linear .6s,
        transform .7s cubic-bezier(.22, 1, .36, 1);
}


/* =========================
   BUTTON INITIAL STATE
========================= */

.product-actions .btn {
    opacity: 0;
    transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.16, 1, .3, 1),
    filter .75s ease;

  

    filter: blur(4px);

    transition:
        opacity .65s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1),
        filter .65s ease,
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


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

.product-actions-wrapper:hover .product-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);

    transition:
        opacity .6s ease,
        visibility 0s linear 0s,
        transform .7s cubic-bezier(.22, 1, .36, 1);
}


/* =========================
   FIRST BUTTON
========================= */

.product-actions-wrapper:hover .product-actions .btn:first-child {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    filter: blur(0);

    transition-delay: .15s;
}


/* =========================
   SECOND BUTTON
========================= */

.product-actions-wrapper:hover .product-actions .btn:last-child {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    filter: blur(0);

    transition-delay: .25s;
}


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

.product-actions-wrapper:hover .product-actions {
    opacity: 1;
    visibility: visible;

    transform: translateY(0) scale(1);

    filter: blur(0);

    pointer-events: auto;
}


/* =========================
   EXTRA BUTTON ANIMATION
========================= */

.product-actions .btn {
    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


/* Slight stagger effect */
.product-actions .btn:first-child {
    transform: translateX(-8px);
    transition-delay: .03s;
}

.product-actions .btn:last-child {
    transform: translateX(8px);
    transition-delay: .06s;
}

.product-actions-wrapper:hover .product-actions .btn {
    transform: translateX(0);
}

/* =========================
   ENHANCED DOWN ARROW
========================= */

.product-arrow {
    position: absolute;
    inset: 0;

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

    color: var(--navy-900);
    font-size: 16px;

    cursor: pointer;

    opacity: 1;
    transform: translateY(0);

    transition:
        opacity .4s ease,
        transform .5s cubic-bezier(.22, 1, .36, 1);

    animation: arrowAttention 2s ease-in-out infinite;
}


/* Arrow itself */
.product-arrow i {
    position: relative;
    z-index: 2;
    
      display: flex;
    flex-direction: column;

    animation:
        arrowBounce 1.6s cubic-bezier(.45, 0, .55, 1) infinite;

    transition:
        transform .35s ease,
        filter .35s ease;
        font-size: 22px;
}


/* =========================
   FLOAT + PULSE
========================= */

@keyframes arrowAttention {

    0%, 100% {
        transform: translateY(-2px);
        opacity: .8;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}


/* Small arrow bounce */
@keyframes arrowBounce {

    0%, 100% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(5px);
    }

    65% {
        transform: translateY(1px);
    }
}


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

.product-arrow i {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .18));
}


/* =========================
   RIPPLE CIRCLE
========================= */

.product-arrow::before {
    content: "";

    position: absolute;

    width: 26px;
    height: 26px;

    border: 1px solid currentColor;
    border-radius: 50%;

    opacity: .25;

    animation: arrowRipple 2s ease-out infinite;
}


@keyframes arrowRipple {

    0% {
        transform: scale(.65);
        opacity: .35;
    }

    60% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}


/* =========================
   SECOND RIPPLE
========================= */

.product-arrow::after {
    content: "";

    position: absolute;

    width: 18px;
    height: 18px;

    border: 1px solid currentColor;
    border-radius: 50%;

    opacity: 0;

    animation: arrowRippleSecond 2s ease-out infinite;
    animation-delay: .7s;
}


@keyframes arrowRippleSecond {

    0% {
        transform: scale(.6);
        opacity: .25;
    }

    60% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* =========================
   HOVER
========================= */

.product-actions-wrapper:hover .product-arrow {
    animation: arrowExit .5s cubic-bezier(.22, 1, .36, 1) forwards;
}

.product-actions-wrapper:hover .product-arrow i {
    animation: none;
    transform: translateY(12px) scale(.8);
    filter: blur(2px);
}

@keyframes arrowExit {

    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: .7;
        transform: translateY(10px) scale(1.08);
    }

    100% {
        opacity: 0;
        transform: translateY(18px) scale(.8);
    }
}


.dm-faq-section {
    padding: 30px 0 0px;
    background: #fff;
}


/* FAQ HEADING */

.dm-faq-heading {
  background: #000;
  padding: 15px 20px 5px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.dm-faq-subtitle {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dm-faq-heading h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(1.2rem,1.8vw,1.4rem);
    line-height: 1.2;
    font-weight: 700;
}

.dm-faq-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.7;
}


/* FAQ CARD */

.dm-faq-card {
    padding: 30px 32px;
    margin-bottom: 22px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.dm-faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.18);
}


/* QUESTION */

.dm-faq-question {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 0px;
}

.dm-faq-question h3 {
    margin: 0;
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}


/* NUMBER */

.dm-faq-number {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;

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

    border-radius: 50%;
    background: #000;
    color: #fff;

    font-size: 12px;
    font-weight: 600;
}


/* ANSWER */

.dm-faq-card p {
    margin: 0;
    padding-left: 60px;

    color: #555;
    font-size: 15px;
    line-height: 1.8;
}


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

@media (max-width: 991px) {

    .dm-faq-heading h2 {
        font-size: 36px;
    }

    .dm-faq-card {
        padding: 25px;
    }
}


@media (max-width: 767px) {

    .dm-faq-section {
        padding: 60px 15px;
    }

    .dm-faq-heading {
        padding: 50px 15px;
        margin-bottom: 35px;
    }

    .dm-faq-heading h2 {
        font-size: 30px;
    }

    .dm-faq-heading p {
        font-size: 14px;
    }

    .dm-faq-card {
        padding: 22px 18px;
        margin-bottom: 18px;
    }

    .dm-faq-question {
        align-items: flex-start;
        gap: 12px;
    }

    .dm-faq-question h3 {
        font-size: 15px;
    }

    .dm-faq-number {
        flex: 0 0 35px;
        width: 35px;
        height: 35px;
        font-size: 11px;
    }

    .dm-faq-card p {
        padding-left: 47px;
        font-size: 14px;
    }
}


@media (max-width: 480px) {

    .dm-faq-heading h2 {
        font-size: 18px;
    }
      .dm-faq-heading {
    padding: 10px 15px 3px;
    margin-bottom: 28px;
  }
    .dm-faq-section {
    padding: 30px 0px 0px;
  }

    .dm-faq-card p {
        padding-left: 0;
        margin-top: 15px;
    }
   
}
