*{
box-sizing:border-box;
font-family:Poppins,sans-serif
}

body{
margin:0;
padding:0;
}


.header-area{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
background:#fff;
}

body{
padding-top:90px;
background:#fff;color:#111;
}

section{padding:120px 8%}

h1{font-size:58px;font-weight:800;line-height:1.2}
h1 span{color:#ffcc00}

.section-title{
position:relative;
display:flex;
text-align: center;
justify-content: center;
}

.section-title::after{

content:"";
position:absolute;
left:50%;
bottom:-5px;
width:0;
height:3px;
background:#ffd43b;
transform:translateX(-50%);
transition:width .6s ease;


}

.section-title.active::after{
width:20%;
}
.section-sub{text-align:center;color:#666;margin-bottom:60px}
/* ===============================
SCROLL REVEAL ANIMATIONS
================================ */

.reveal{
opacity:0;
transform:translateY(60px);
transition:all .8s ease;
}

.reveal-left{
opacity:0;
transform:translateX(-80px);
transition:all .8s ease;
}

.reveal-right{
opacity:0;
transform:translateX(80px);
transition:all .8s ease;
}

.reveal-scale{
opacity:0;
transform:scale(.85);
transition:all .7s ease;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active{
opacity:1;
transform:translate(0) scale(1);
}


/* ===============================
CARD STAGGER ANIMATION
================================ */

.problem-card:nth-child(1){transition-delay:.1s;}
.problem-card:nth-child(2){transition-delay:.2s;}
.problem-card:nth-child(3){transition-delay:.3s;}
.problem-card:nth-child(4){transition-delay:.4s;}
.problem-card:nth-child(5){transition-delay:.5s;}
.problem-card:nth-child(6){transition-delay:.6s;}

.buzzlocal-card:nth-child(1){transition-delay:.1s;}
.buzzlocal-card:nth-child(2){transition-delay:.2s;}
.buzzlocal-card:nth-child(3){transition-delay:.3s;}
.buzzlocal-card:nth-child(4){transition-delay:.4s;}
.buzzlocal-card:nth-child(5){transition-delay:.5s;}




/* ===============================
SUBTLE BACKGROUND MOTION
================================ */
.section-soft-bg{
background:
radial-gradient(circle at 10% 20%, rgba(255,212,59,0.08) 0%, transparent 90%),
radial-gradient(circle at 90% 80%, rgba(0,0,0,0.04) 0%, transparent 90%),
#ffffff;
}
/* ═══════════════════════════════════════
   HERO — consistent across all service pages
═══════════════════════════════════════ */

.hero {
  padding: 80px 8% 80px;   /* uniform top/bottom + side padding */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* equal columns — content & image side by side */
  align-items: center;
  gap: 60px;
  min-height: 420px;               /* guarantees equal visual weight on all pages */
}

/* LEFT CONTENT */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 0;
  /* Clamp to 4 lines so all hero paragraphs take the same vertical space */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA button wrapper — consistent spacing from paragraph */
.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* RIGHT IMAGE */
.hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  width: 100%;
  max-width: 580px;
  height: auto;
  animation: float 5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-img:hover img {
  transform: scale(1.03);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}

.btn-outline{
border:2px solid #ffcc00;
padding:14px 32px;
text-decoration:none;
color:#000;
font-weight:600;
}
/* PROBLEM */


.problem-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
margin-top:60px;
}

.problem-card{
padding:35px;
background:rgba(255,255,255,0.7);
backdrop-filter:blur(10px);
border:1px solid #eee;
transition:.4s;
}

.problem-card:hover{
transform:translateY(-10px);
border-color:#ffcc00;
}
.strategy-card i,
.problem-card i{
transition:all .35s ease;
}
.icon-box{
transition:all .35s ease;
}

.buzz-card:hover .icon-box{
transform:scale(1.15) rotate(6deg);
}
.strategy-card:hover i,
.problem-card:hover i{
transform:scale(1.2) rotate(6deg);
color:#ffd43b;
}

/*why us */

/* ================= SECTION ================= */

.buzzlocal-why-section{
padding:120px 8%;
background:#fdfdfd;
position:relative;
overflow:hidden;
}

/* ================= LAYOUT ================= */

.buzzlocal-layout{
display:grid;
grid-template-columns:0.75fr 1.5fr;
gap:50px;
align-items:start;
margin-top:60px;
}
/* ================= ILLUSTRATION ================= */

.buzz-illustration img{
width:100%;
max-width:420px;
animation:floatIllustration 6s ease-in-out infinite;
}

/* floating animation */

@keyframes floatIllustration{

0%{transform:translateY(0)}
50%{transform:translateY(-12px)}
100%{transform:translateY(0)}

}

/* ================= CARDS GRID ================= */

.buzzlocal-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
position:relative;
z-index:2;
}

/* ================= CARD ================= */

.buzz-card{

background:white;
padding:28px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:all .4s ease;
cursor:pointer;
position:relative;

}



/* top accent line */

.buzz-card::before{

content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:#FFD43B;
border-radius:14px 14px 0 0;

}

.buzz-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}
/* ================= ICON ================= */

.icon-box{

width:54px;
height:54px;
background:#FFD43B;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
font-size:22px;
margin-bottom:15px;
overflow:hidden;
flex-shrink:0;

}

.icon-box img{
width:32px;
height:32px;
object-fit:contain;
display:block;
}

/* ================= TEXT ================= */

.buzz-card h3{

font-size:19px;
margin-bottom:12px;

}

.buzz-card ul{

list-style:none;
padding:0;
margin:0;

}

.buzz-card li{

margin-bottom:8px;
padding-left:22px;
position:relative;
color:#555;
font-size:14px;

}

/* tick */

.buzz-card li::before{

content:"✔";
position:absolute;
left:0;
color:#FFD43B;
font-weight:bold;

}


/* ================= REVEAL ANIMATION ================= */

.reveal{

opacity:0;
transform:translateY(40px);
transition:all .8s ease;

}

.reveal.active{

opacity:1;
transform:translateY(0);

}
/* card text animation */

.strategy-card h4,
.problem-card h3,
.buzz-card h3,
.strategy-card p,
.problem-card p,
.buzz-card li{

opacity:0;
transform:translateY(15px);
transition:all .5s ease;

}

/* active state */

.strategy-card.active h4,
.problem-card.active h3,
.buzz-card.active h3{
opacity:1;
transform:translateY(0);
transition-delay:.2s;
}

.strategy-card.active p,
.problem-card.active p{
opacity:1;
transform:translateY(0);
transition-delay:.35s;
}


.whyus-illustration{
  position: relative;
  width: 500px;
  margin: auto;
  top: -80px;
}



.blob{
  width:110%;
  position:absolute;
  bottom:-250px;
  left:-200px;
  opacity:0;
  transition:all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ILLUSTRATOR */

.character{
  width:100%;
  position:relative;
  display:block;
  margin:auto;
  margin-bottom:-10px;
  transform:translateY(-200px);
  opacity:0;
  transition:all 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.blob-show{
  left: -40px;
  opacity: 1;
}

.character-show{
  transform: translateY(0);
  opacity: 1;
}

/* list animation */

.buzz-card.active li:nth-child(1){
opacity:1;
transform:translateY(0);
transition-delay:.45s;
}

.buzz-card.active li:nth-child(2){
opacity:1;
transform:translateY(0);
transition-delay:.55s;
}

.buzz-card.active li:nth-child(3){
opacity:1;
transform:translateY(0);
transition-delay:.65s;
}
/* ================= AD CAMPAIGN ILLUSTRATION ================= */


.ad-illustration{
position:relative;
width:500px;
height:420px;   /* important */
margin:auto;
}
.ad-illustration img{
position:absolute;
}

/* floating cards */

.card{
position:absolute;
width:110px;
opacity:0;
transform:scale(.7);
transition:.5s ease;
z-index:3;
}

.card1{
top:30px;
left:-40px;
}

.card2{
top:-10px;
right:-40px;
}

.card3{
bottom:40px;
left:40px;
}


/* graph */

.graph{
position:absolute;
width:160px;
bottom:-10px;
right:-20px;

transform:scaleY(0);
transform-origin:bottom;

transition:0.8s ease;
}

.show-graph{
transform:scaleY(1);
}

/* animation */
.show-card{
opacity:1;
transform:scale(1);
}

/*==========video========*/
/* ===== Illustration Layout ===== */

.creative-illustration{
position:relative;
width:420px;
height:420px;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
}



/* Popup elements */

.popup-element{
position:absolute;
opacity:0;
transform:scale(.7);
transition:all .6s ease;
}

/* Positions */

.post-card{
top:-10px;
left:-40px;
width:120px;
}

.video-card{
top:-20px;
right:-40px;
width:120px;
}

.engagement{
bottom:30px;
left:-40px;
width:100px;
}

.graph{
bottom:-120px;
right:0;
width:140px;
transform:scaleY(0);
transform-origin:bottom;
}

/* Animation states */

.show-character{
opacity:1;
transform:translateY(0);
}

.show-post{
opacity:1;
transform:scale(1);
}

.show-video{
opacity:1;
transform:scale(1);
}

.show-engagement{
opacity:1;
transform:scale(1);
}

.show-graph{
opacity:1;
transform:scaleY(1);
}

/* Illustration container */
.buzzlocal-illustration-section {
  background-color: #f5c30b;
  padding: 40px 20px;
  text-align: center;
}

.branding-illustration {
  width: 400px;      /* scaled poster size */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.branding-illustration canvas {
  width: 100%;       /* visual scale */
  height: auto;
  display: block;
}

/* Graph background */
.graph-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* behind character and popups */
  opacity: 0.15;
}

/* Popup elements positions */
.mini-post1 { top: 150px; left: 20px; width: 60px; }
.mini-post2 { top: 80px; right: 20px; width: 60px; }
.ad-icon { bottom: -120px; right: 100px; width: 80px; }
.chart-icon { bottom: 80px; right: 10px; width: 80px; }
.banner1 { top: 10px; right: 90px; padding: 6px 12px; background: #f5c30b; border-radius: 8px; font-size: 20px; }
.banner2 { bottom: 20px; left: -40px; padding: 6px 12px; background:#f5c30b; border-radius: 8px; font-size: 20px; }

/* Active classes for animation */
.show-mini-post1, .show-mini-post2,
.show-ad-icon, .show-chart-icon,
.show-banner1, .show-banner2,
.show-character {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.blob-surface {
  position: absolute;
  bottom: -42%;
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  width: 380px;
  z-index: 1;       /* Behind character (z-index:2) */
  opacity: 0;
  transition: all 0.8s ease;
}



/* Scroll animation for blob */
.show-blob {
  opacity: 0.6;
  transform: translateX(-50%) scale(1);
}

/* PROCESS */

.timeline{
max-width:900px;
margin:70px auto 0;
border-left:2px dashed #ffcc00;
padding-left:40px;
}

.timeline-item{
margin-bottom:40px;
position:relative;
}

.timeline-item span{
position:absolute;
left:-55px;
top:0;
background:#ffcc00;
color:#000;
font-weight:700;
padding:8px 14px;
border-radius:30px;
}

/* TOOLS */

.tools-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:30px;
margin-top:60px;
}

.tool{
padding:30px;
text-align:center;
border:1px solid #eee;
transition:.3s;
}

.tool img{width:75px;margin-bottom:10px}

.tool:hover{
transform:translateY(-8px);
border-color:#ffcc00;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* FAQ */

.faq{background:#fafafa}

.faq-container{max-width:800px;margin:60px auto}

.faq-item{
background:#fff;
margin-bottom:15px;
border-radius:8px;
overflow:hidden;
border:1px solid #eee;
}

.faq-item button{
width:100%;
padding:20px;
background:none;
border:none;
text-align:left;
font-size:17px;
font-weight:600;
cursor:pointer;
}

.answer{
display:none;
padding:0 20px 20px;
color:#555;
}

.faq-item.active .answer{display:block}

/* CTA */

.cta{
text-align:center;
background:#111;
color:#fff;
}

.btn{
display:inline-block;
margin-top:25px;
background:#ffcc00;
color:#000;
padding:16px 40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn:hover{
transform:scale(1.05);
}
/* RESULTS COUNTER */

.results{
background:linear-gradient(to bottom,#fff,#fafafa);
text-align:center;
}

.counter-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
margin-top:70px;
}

.counter-box{
padding:40px;
border:1px solid #eee;
transition:.3s;
}

.counter-box:hover{
transform:translateY(-8px);
border-color:#ffcc00;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.counter{
font-size:48px;
font-weight:800;
color:#ffcc00;
margin-bottom:10px;
}

/* PORTFOLIO GRID */

/*.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:60px;
}

.portfolio-item{
overflow:hidden;
border-radius:10px;
position:relative;
cursor:pointer;
}

.portfolio-item img{
width:100%;
display:block;
transition:.5s;
}

.portfolio-item:hover img{
transform:scale(1.1);
}*/
.tools .tool p{
margin-top:8px;
font-weight:600;
}
.tool:hover{
transform:translateY(-8px);
border-color:#ffcc00;
box-shadow:0 15px 40px rgba(255,204,0,0.2);
}


/* ===============================
   PROBLEM SECTION
================================ */


.problem-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:35px;
margin-top:60px;
}

.problem-card{
padding:38px;
background:rgba(255,255,255,.85);
backdrop-filter:blur(14px);
border-radius:16px;
border:1px solid #eee;
box-shadow:0 10px 35px rgba(0,0,0,.06);
transition:.4s;
}

.problem-card:hover{
transform:translateY(-14px);
border-color:#ffcc00;
box-shadow:0 25px 60px rgba(0,0,0,.12);
}



/* ===============================
   TOOLS SECTION
================================ */

.tools-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:35px;
margin-top:60px;
}

.tool{
padding:34px;
text-align:center;
background:#fff;
border-radius:16px;
border:1px solid #eee;
box-shadow:0 10px 30px rgba(0,0,0,.06);
transition:.35s;
margin-top: 10px;
}

.tool img{
width:75px;
margin-bottom:12px;
transition:.4s;
}

.tools .tool p{
margin-top:8px;
font-weight:600;
}

.tool:hover{
transform:translateY(-12px) scale(1.03);
border-color:#ffcc00;
box-shadow:
0 20px 45px rgba(0,0,0,.12),
0 0 30px rgba(255,204,0,.25);
}

.tool:hover img{
transform:scale(1.1);
}

/* ===============================
   FAQ SECTION
================================ */

.faq{
background:#fafafa;
padding:60px 8%;
}

.faq-container{
max-width:800px;
margin:70px auto;
}

.faq-item{
background:#fff;
margin-bottom:18px;
border-radius:14px;
overflow:hidden;
border:1px solid #eee;
box-shadow:0 8px 25px rgba(0,0,0,.05);
transition:.3s;
}

.faq-item.active{
border-color:#ffcc00;
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.faq-item button{
width:100%;
padding:22px;
background:none;
border:none;
text-align:left;
font-size:18px;
font-weight:600;
cursor:pointer;
}

.answer{
display:none;
padding:0 22px 22px;
color:#555;
line-height:1.6;
}

.faq-item.active .answer{
display:block;
}

/* ===============================
   CTA SECTION
================================ */

.cta{
text-align:center;
background:linear-gradient(135deg,#111,#000);
color:#fff;
border-radius:30px;
margin:90px 6%;
padding:80px 40px;
box-shadow:0 40px 80px rgba(0,0,0,.25);
}


/* ======= PORTFOLIO GRID ======= */
.design-portfolio {
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Grid */
.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    justify-items: center; /* center smaller items */
}

/* DESIGN ITEM */
.design-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
   
   
}

/* Images */
.design-item img {
    width: 100%;  /* scale to item width */
    height: auto;
    display: block;
    transition: transform 0.5s;
    
}

/* Hover Zoom */
.design-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.design-overlay h4 {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
}

.design-item:hover .design-overlay {
    opacity: 1;
}

/* PORTFOLIO BUTTON */

.portfolio-btn-wrap{
text-align:center;
margin-top:40px;
}


.portfolio-btn{
display:inline-block;
padding:12px 28px;
border:2px solid #ffc107;
color:#ffc107;
text-decoration:none;
font-weight:500;
border-radius:6px;
transition:0.3s;
}


.portfolio-btn:hover{
background:#ffc107;
color:#000;
}



/*footer*/
.footer {
  background: #000;
  color: #ccc;
  padding: 70px 10%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}


.footer-logo-img {
  height: 35px;
  width: auto;
}


.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
  max-width: 300px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffcc00;
  padding-left: 6px;
}

/* Contact Info Styling */
.contact-info li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info li a i {
  color: #ffcc00;
  font-size: 15px;
  transition: 0.3s;
}

.contact-info li a:hover {
  transform: translateX(5px);
  color: #ffcc00;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 50px;
  border-top: 1px solid #222;
  font-size: 14px;
  color: #777;
}
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
}

/* ================= SECTION ================= */

.modern-roadmap{
  padding:50px 8% 60px;
  background:#ffffff;
  position:relative;
}

.process {
  padding-top: 40px;
  padding-bottom: 0;
}

/* ================= WRAPPER ================= */
.roadmap-wrapper{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:50px;
  max-width:1200px;
  margin:80px auto 0;
  position:relative;
}


/* ================= STEP BLOCK ================= */

.step-block{
  position:relative;
  width:140px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.step{
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:0.4s ease;
}

.circle{
  width:70px;
  height:70px;
  border-radius:50%;
  border:2px solid #e5e5e5;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:18px;
  background:#f9f9f9;
  transition:0.4s ease;
}

.step h4{
  margin-top:10px;
  font-weight:500;
  font-size:15px;
  color:#333;
}

/* Active step */

.step.active .circle{
  background:#ffc107;
  border-color:#ffc107;
  color:#000;
}

/* ================= ARROW ================= */

.arrow{
  font-size:26px;
  color:#d9d9d9;
  transition:0.4s ease;
}

.arrow.active{
  color:#ffc107;
}

/* ================= POPUP CARD ================= */

.popup-card{
  position:absolute;
  left:50%;
  width:230px;
  padding:18px;
  background:#ffffff;
  border:2px solid #ffc107;
  border-radius:16px;
  color:#000;
  opacity:0;
  transform:translateX(-50%) translateY(20px);
  transition:all 0.6s ease;
  z-index:20;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* Positioning (Balanced Distance) */

.popup-card.top{
  bottom:115px;
}

.popup-card.bottom{
  top:115px;
}

/* Popup Headings */

.popup-card h5{
  font-size:15px;
  margin-bottom:6px;
  font-weight:600;
}

.popup-card p{
  font-size:14px;
  line-height:1.5;
  color:#555;
}

/* TAIL */

.popup-card::after{
  content:"";
  position:absolute;
  width:14px;
  height:14px;
  background:#ffffff;
  transform:translateX(-50%) rotate(45deg);
  left:50%;
}

/* Top Tail */

.popup-card.top::after{
  bottom:-7px;
  border-right:2px solid #ffc107;
  border-bottom:2px solid #ffc107;
}

/* Bottom Tail */

.popup-card.bottom::after{
  top:-7px;
  border-left:2px solid #ffc107;
  border-top:2px solid #ffc107;
}

/* Show animation (when section becomes visible) */

.popup-card.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}
.view-btn{
  display:inline-block;
  margin-top:10px;
  padding:8px 16px;
  background:#ffc107;
  color:#000;
  font-size:14px;
  font-weight:500;
  border-radius:20px;
  text-decoration:none;
  transition:0.3s ease;
}

.view-btn:hover{
  background:#e0a800;
}
.work-preview{
  display:flex;
  justify-content:center;
  align-items:stretch;
  flex-wrap:wrap;      /* This is important */
  gap:40px;
  margin-top:50px;
}


.work-box{
  width:260px;
  text-align:center;
  padding:25px 20px;
  border-radius:14px;
  background:#fff;
  transition:0.3s ease;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.work-box img{
  width:160px;           /* fixed logo width */
  height:120px;          /* fixed logo area */
  object-fit:contain;    /* VERY IMPORTANT */
  margin:0 auto 15px;
  display:block;
}

.work-box:hover{
  transform:translateY(-6px);
}


.work-box h3{
  font-size:18px;
  margin-bottom:6px;
}

.work-box p{
  font-size:14px;
  color:#666;
}

.tools{
  padding:60px 8%;
  background:#f9f9f9;
  overflow:hidden;
}

.tools-marquee{
  overflow:hidden;
  position:relative;
  width:100%;
}

  .tools-wrapper{
  overflow:hidden;
  position:relative;
  padding:25px 0;   /* increase this */
}


.tools-track{
  display:flex;
  gap:40px;
  width:max-content;
  animation:scroll 20s linear infinite;
  align-items:center;
}

.tool{
  width:170px;
  height:160px;
  background:#fff;
  border-radius:14px;
  border:1px solid #eee;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden; /* important */
  transition:0.3s ease;
}


 .tool:hover{
  
  z-index:5;
  box-shadow:0 8px 20px rgba(255,193,7,0.25);
  border-color:#ffc107;
}


.tool img{
  width:70px;
  height:70px;
  object-fit:contain;
  margin-bottom:10px;
}

.tool:hover{
  transform:translateY(-4px);
  border-color:#ffc107;
   z-index:10;
  border-color:#ffc107;
  box-shadow:0 0 0 2px #ffc107;
}

.tool p{
  font-size:13px;
  font-weight:500;
  margin:0;
  text-align:center;
  line-height:1.3;
}

.brain-icon{
  font-size:50px;
  margin-bottom:15px;
}

/* Infinite Animation */
@keyframes scroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

@media (max-width:768px){

.roadmap-wrapper{
  overflow-x:auto;
  padding-bottom:20px;
  gap:40px;
}

.step-block{
  min-width:140px;
}

.tools{
  padding:50px 4%;
  overflow:hidden;
}

/* Allow marquee to scroll but not clip cards vertically */
.tools-marquee{
  overflow-x:hidden;
  overflow-y:visible;
}

.faq{
  padding:50px 20px;
}

.tools-track{
  gap:20px;
  align-items:center;
}

/* Fix: tool card fully visible on mobile */
.tool{
  width:130px;
  height:130px;
  min-width:130px;
  padding:16px 10px;
  flex-shrink:0;
  overflow:visible;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

/* Fix: override conflicting 75px img rules higher in file */
.tool img{
  width:52px !important;
  height:52px !important;
  object-fit:contain;
  margin-bottom:8px;
  display:block;
}

.tool p{
  font-size:11px;
  line-height:1.3;
  text-align:center;
  margin:0;
}

.brain-icon{
  font-size:36px;
  margin-bottom:8px;
}
}

/* Remove template arrows affecting roadmap */
.modern-roadmap .step::before,
.modern-roadmap .step::after,
.modern-roadmap .step-block::before,
.modern-roadmap .step-block::after{
  content: none !important;
  display: none !important;
}
.work-box video{
width:100%;
border-radius:10px;
margin-bottom:10px;
}
/* SERVICES INTRO */

.services-intro{
  padding:100px 20px;
  display:flex;
  justify-content:center;
  text-align:center;

}

.intro-container{
  max-width:850px;
}

/* TITLE */

.intro-title{
  font-size:38px;
  font-weight:600;
  color:#111;
  margin-bottom:10px;

  opacity:0;
  animation:fadeUp 0.8s ease forwards;
  animation-delay:0.2s;
}


/* TEXT */

.intro-text{
  font-size:20px;
  line-height:1.7;
  color:#555;
  margin-bottom:18px;

  opacity:0;
  animation:fadeUp 0.8s ease forwards;
}

.intro-text:nth-of-type(1){
  animation-delay:0.6s;
}

.intro-text:nth-of-type(2){
  animation-delay:0.8s;
}

.intro-text:nth-of-type(3){
  animation-delay:1s;
}

/* HIGHLIGHT */

.intro-text span{
  color:#f4b400;
  font-weight:600;
}

/* BUTTON */

.intro-btn{
  display:inline-block;
  margin-top:25px;
  padding:12px 28px;
  background:#f4b400;
  color:#111;
  font-weight:600;
  border-radius:6px;
  text-decoration:none;
  transition:0.3s;

  opacity:0;
  animation:fadeUp 0.8s ease forwards;
  animation-delay:1.2s;
}

.intro-btn:hover{
  background:#111;
  color:#fff;
}

/* ANIMATION */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* PORTFOLIO PREVIEW */

.portfolio-preview{
  padding:100px 20px;
  text-align:center;
  background:#f9f9f9;
}

.portfolio-text{
  max-width:700px;
  margin:20px auto;
  font-size:17px;
  line-height:1.7;
  color:black;
}

.portfolio-btn{
 
  margin-left:50px;
  margin-top:25px;
  color:black;
}
/* ADVERTISING WORK */

.ad-work{
padding:100px 20px;
text-align:center;
background:#f9f9f9;
}

.work-text{
max-width:700px;
margin:20px auto 40px auto;
font-size:17px;
color:#555;
line-height:1.7;
}

.work-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.work-item{
overflow:hidden;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.work-item img{
width:100%;
display:block;
transition:0.4s;
}

.work-item:hover img{
transform:scale(1.07);
}
/* STRATEGY CONSULTING SECTION */

.strategy-consulting{
padding:80px 10%;

text-align:center;
}

.strategy-intro{
max-width:750px;
margin:0 auto 50px auto;
font-size:16px;
color:#555;
line-height:1.7;
}

.strategy-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.strategy-card{
background:#fff;
padding:35px 25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:all 0.3s ease;
}

.strategy-card i{
font-size:30px;
color:#f9b233;
margin-bottom:15px;
}

.strategy-card h4{
font-size:18px;
font-weight:600;
margin-bottom:10px;
}

.strategy-card p{
font-size:14px;
color:#666;
}

.strategy-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}
.campaign-results{
padding:120px 8%;
background:#f9fafc;
}

.campaign-desc{
max-width:650px;
margin:0 auto 60px;
text-align:center;
color:#666;
font-size: 20px;
}

.results-table{
display:flex;
flex-direction:column;
gap:20px;
}

.result-row{
display:grid;
grid-template-columns:60px 2fr 1fr 1fr 1fr 2fr;
align-items:center;
background:#fff;
padding:25px 30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.result-row:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* Rank */

.rank{
font-size:22px;
font-weight:700;
color:#ff7a18;
}

/* Campaign info */

.campaign-info h3{
margin:0;
font-size:16px;
color:#111;
}

.campaign-info span{
font-size:13px;
color:#777;
}

/* Metrics */

.metric{
text-align:center;
}

.metric strong{
font-size:18px;
color:#111;
}

.metric p{
font-size:12px;
color:#777;
margin-top:4px;
}

/* Performance Bar */

.performance{
height:8px;
background:#eee;
border-radius:20px;
overflow:hidden;
}

.bar{
height:100%;
border-radius:20px;
}

.bar1{width:95%;background:linear-gradient(90deg,#667eea,#764ba2);}
.bar2{width:70%;background:linear-gradient(90deg,#43e97b,#38f9d7);}
.bar3{width:65%;background:linear-gradient(90deg,#fa709a,#fee140);}
.bar4{width:50%;background:linear-gradient(90deg,#4facfe,#00f2fe);}
.bar5{width:45%;background:linear-gradient(90deg,#ff9966,#ff5e62);}


/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   Covers all service pages: Ad Campaigns, Digital Marketing,
   Social Media, Content & Video, Search Optimization,
   Web Design, Google Business Profile
   ===================================================== */

/* ---- Tablet: max 991px ---- */
@media (max-width: 991px) {

  /* Hero grid: stack on tablet */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-img {
    display: flex;
    justify-content: center;
  }

  .hero-img img {
    max-width: 420px;
    width: 100%;
  }

  .hero-content .hero-cta,
  .hero-content > div {
    justify-content: center;
  }

  h1 {
    font-size: 42px;
  }

  /* Why-us layout: stack */
  .buzzlocal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .buzzlocal-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Campaign results table: reduce columns */
  .result-row {
    grid-template-columns: 40px 1.5fr 1fr 1fr 1fr 1.5fr;
    padding: 18px 20px;
  }

  /* Ad illustration: shrink */
  .ad-illustration {
    width: 380px;
    height: 340px;
  }

  /* Roadmap: allow horizontal scroll */
  .roadmap-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
    justify-content: flex-start;
  }

  .step-block {
    min-width: 130px;
  }
}

/* ---- Mobile: max 767px ---- */
@media (max-width: 767px) {
/* ===== Global ===== */
  section {
    padding: 70px 5%;
  }

h1 {
    font-size: 32px;
    line-height: 1.3;
  }

h2 {
    font-size: 24px;
  }

body {
    padding-top: 70px;
  }

/* ===== Hero Section ===== */
  .hero {
    padding: 70px 5% 60px;
  }

.hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
    min-height: unset;
  }

.hero-content {
    align-items: center;
  }

.hero-content h1 {
    font-size: 32px;
  }

.hero-content p {
    -webkit-line-clamp: unset;   /* show full paragraph on mobile */
    font-size: 15px;
  }

.hero-img {
    order: -1;                   /* image above text on mobile */
  }

.hero-img img {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }

.hero-cta {
    justify-content: center;
  }

/* ===== Services Intro ===== */
  .services-intro {
    padding: 60px 5%;
  }

.intro-text {
    font-size: 16px;
  }

/* ===== Problem / Services Grid ===== */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
  }

.problem-card {
    padding: 25px;
  }

/* ===== Why BuzzLocal Layout ===== */
  .buzzlocal-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

.buzzlocal-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }


  /* ===== Illustrations — Mobile ===== */
  .buzzlocal-layout .whyus-illustration,
  .buzzlocal-layout .creative-illustration,
  .buzzlocal-layout .ad-illustration { order: -1; }

  .whyus-illustration,
  .creative-illustration,
  .ad-illustration {
    position: static !important;
    top: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 20px auto !important;
    overflow: hidden !important;
  }

  .whyus-illustration .character,
  .creative-illustration .character,
  .ad-illustration .character {
    position: relative !important;
    display: block !important;
    width: 190px !important;
    max-width: 70vw !important;
    margin: 0 auto !important;
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: opacity 0.8s ease, transform 0.8s ease !important;
    animation: none !important;
  }

  .whyus-illustration .character.character-show,
  .whyus-illustration .character.show-character,
  .creative-illustration .character.character-show,
  .creative-illustration .character.show-character,
  .ad-illustration .character.character-show,
  .ad-illustration .character.show-character {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .whyus-illustration .blob,
  .whyus-illustration .blob-surface,
  .creative-illustration .blob-surface,
  .creative-illustration .popup-element,
  .creative-illustration canvas,
  .ad-illustration .blob,
  .ad-illustration .card,
  .ad-illustration .graph { display: none !important; }

  .branding-illustration {
    width: 100% !important;
    max-width: 300px;
    margin: 20px auto !important;
    display: flex;
    justify-content: center;
  }
  .branding-illustration canvas { width: 100% !important; height: auto !important; }


/* ===== Campaign Results Table ===== */
  .result-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
    text-align: center;
  }

.rank {
    font-size: 18px;
  }

.performance {
    width: 100%;
  }

/* ===== CTA Section ===== */
  .cta {
    margin: 50px 4%;
    padding: 50px 25px;
    border-radius: 20px;
  }

.cta h2 {
    font-size: 22px;
    line-height: 1.4;
  }

.btn {
    padding: 14px 28px;
    font-size: 15px;
  }

/* ===== FAQ Section ===== */
  .faq {
    padding: 50px 5%;
  }

.faq-container {
    margin: 30px auto;
  }

.faq-item button {
    font-size: 15px;
    padding: 16px;
  }

/* ===== Tools Marquee ===== */
  .tools {
    padding: 50px 4%;
  }

.tool {
    width: 130px;
    height: 130px;
  }

.tool img {
    width: 55px !important;
    height: 55px !important;
    object-fit: contain;
    display: block;
  }

  .tool {
    overflow: visible;
  }

.brain-icon {
    font-size: 38px;
    margin-bottom: 10px;
  }

/* ===== Work Preview (Video/Portfolio) ===== */
  .work-preview {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

.work-box {
    width: 100%;
    max-width: 340px;
  }

/* ===== Roadmap / Process ===== */
  .modern-roadmap {
    padding: 20px 5% 40px;
  }

.process {
    padding-top: 20px;
    padding-bottom: 10px;
  }

.roadmap-wrapper {
    flex-direction: column;
    align-items: flex-start;
    overflow-x: unset;
    gap: 0;
  }

.step-block {
    flex-direction: row;
    width: 100%;
    min-width: unset;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
  }

.step {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

.arrow {
    display: none;
  }

/* Show popup cards inline below each step on mobile */
  .popup-card {
    display: block;
    position: static;
    transform: none !important;
    opacity: 1 !important;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    font-size: 13px;
  }

/* Remove the tooltip tail on mobile */
  .popup-card::after {
    display: none;
  }

.popup-card h5 {
    font-size: 14px;
    margin-bottom: 4px;
  }

.popup-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
  }

/* Step block — vertical card layout */
  .step-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 0 55px;
    position: relative;
    margin-bottom: 24px;
  }

/* Vertical connecting line between steps */
  .step-block:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -24px;
    width: 2px;
    background: #ffc107;
    opacity: 0.4;
  }

/* Circle stays as a left-side number badge */
  .step {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-left: -55px;
  }

.circle {
    width: 46px;
    height: 46px;
    font-size: 16px;
    flex-shrink: 0;
  }

.step h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
  }

/* ===== Footer ===== */
  .footer {
    padding: 50px 6%;
  }

.footer-container {
    flex-direction: column;
    gap: 30px;
  }

.footer-col {
    min-width: unset;
    width: 100%;
  }

.footer-col p {
    max-width: 100%;
  }

/* ===== WhatsApp Float ===== */
 .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 55px;
    right: 12px;
  }

/* ===== Section Title ===== */
  .section-title {
    font-size: 22px;
    text-align: center;
  }

/* ===== Intro container ===== */
  .intro-container {
    padding: 0 5px;
  }

/* ===== Design Portfolio Grid ===== */
  .design-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

.design-item {
    width: 100%;
  }

/* ===== Buzzlocal Why Section ===== */
  .buzzlocal-why-section {
    padding: 60px 5%;
  }

/* ===== Services Intro ===== */
  .intro-title {
    font-size: 26px;
  }

/* ===== Counter Grid ===== */
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

.counter {
    font-size: 36px;
  }

/* ===== Strategy Consulting ===== */
  .strategy-consulting {
    padding: 60px 5%;
  }

.strategy-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Small Mobile: max 480px ---- */
@media (max-width: 480px) {

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }

  section {
    padding: 55px 4%;
  }

  .hero {
    padding: 55px 4% 50px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .buzzlocal-cards {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }

  .design-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 40px 18px;
    margin: 40px 3%;
  }

  .cta h2 {
    font-size: 19px;
  }

  .result-row {
    padding: 16px;
    font-size: 13px;
  }

  .metric strong {
    font-size: 16px;
  }

  .footer {
    padding: 40px 5%;
  }

  .tools-track {
    gap: 15px;
  }

  .tool {
    width: 110px;
    height: 110px;
  }

  .tool img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain;
    display: block;
    margin-bottom: 6px;
  }

  .tool {
    overflow: visible;
  }
}
/* ═══════════════════════════════════════
   FOOTER ENHANCED — Social Icons, Chevrons, Contact Badges
═══════════════════════════════════════ */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #F5C30B;
  border-color: #F5C30B;
  color: #000;
  transform: translateY(-3px);
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: #F5C30B;
  border-radius: 2px;
}

.footer-col h3 {
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li a i.fa-chevron-right {
  font-size: 10px;
  color: #F5C30B;
  flex-shrink: 0;
}

.contact-info li a i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5C30B;
  font-size: 13px;
  transition: all 0.3s ease;
}

.contact-info li a:hover i {
  background: #F5C30B;
  color: #000;
}

/* ═══════════════════════════════════════
   MOBILE NAV — Services submenu fix
   Submenu toggled via JS on mobile,
   styled to sit correctly inside the
   open mobile nav panel
═══════════════════════════════════════ */

@media (max-width: 991px) {
  /* Submenu sits in normal flow on mobile, not absolute */
  .main-nav .nav .has-sub .sub-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: #1a1a1a !important;
    padding: 4px 0 8px 15px !important;
    margin-top: 4px;
  }

  .main-nav .nav .has-sub .sub-menu li a {
    padding: 10px 16px !important;
    font-size: 13px !important;
    border-left: 2px solid #F5C30B;
  }

  /* Rotate arrow indicator when open */
  .main-nav .nav .has-sub > a::after {
    display: inline-block;
    transition: transform 0.3s ease;
  }
}
/* ═══════════════════════════════════════
   CARD TEXT ALIGNMENT
   Equal min-height on headings & fixed
   line-clamp on paragraphs so every row
   of cards lines up cleanly across pages
═══════════════════════════════════════ */

/* --- buzz-card (Why Us section) --- */
.buzzlocal-cards .buzz-card h3 {
  min-height: 2.6em;
  line-height: 1.3;
}

.buzzlocal-cards .buzz-card li {
  min-height: 1.8em;
  line-height: 1.5;
}

/* --- problem-card (Our Services / Why Choose Us) --- */
.problem-grid .problem-card {
  display: flex;
  flex-direction: column;
}

.problem-grid .problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  /* Fixed height = 2 lines max — single-line titles get extra space below */
  min-height: 2.6em;
  margin-bottom: 12px;
}

.problem-grid .problem-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  flex: 1;
  /* Hard-clamp to 3 lines — all cards identical height in same row */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

/* --- strategy-card --- */
.strategy-grid .strategy-card h4 {
  min-height: 2.4em;
  line-height: 1.3;
}

.strategy-grid .strategy-card p {
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════
   HIDE ILLUSTRATION ON MOBILE
═══════════════════════════════════════ */

@media (max-width: 767px) {
  .buzzlocal-layout .whyus-illustration,
  .buzzlocal-layout .creative-illustration,
  .buzzlocal-layout .ad-illustration {
    display: none !important;
  }

  .buzzlocal-layout {
    grid-template-columns: 1fr !important;
  }

  .buzzlocal-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 480px) {
  .buzzlocal-cards {
    grid-template-columns: 1fr !important;
  }
}