
/* CSS Document */
/* =========================================
   JS GrowthLab — styles.css
   Dark Navy · Blue · Green Palette
   Poppins + Inter Typography
   ========================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0F172A;
  --navy2:  #1E293B;
  --navy3:  #334155;
  --blue:   #2563EB;
  --blue-l: #3B82F6;
  --green:  #22C55E;
  --green-d:#16A34A;
  --white:  #FFFFFF;
  --gray:   #F8FAFC;
  --text:   #111827;
  --text-m: #4B5563;
  --text-l: #94A3B8;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(15,23,42,0.10);
  --shadow-lg: 0 12px 48px rgba(15,23,42,0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utilities ---- */
.highlight {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: 96px 0; }
.section--dark { background: var(--navy); }
.section--gray { background: var(--gray); }
.section__header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  padding: 4px 14px;
  background: rgba(34,197,94,0.1);
  border-radius: 100px;
  border: 1px solid rgba(34,197,94,0.2);
}
.section__eyebrow--light { color: var(--green); }
.section__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section__title--light { color: var(--white); }
.section__sub { font-size: 17px; color: var(--text-m); line-height: 1.7; }
.section--dark .section__sub { color: var(--text-l); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue), #1D4ED8);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}
.btn--primary:hover, .btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.45);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline:hover, .btn--outline:focus-visible {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }
.btn--sm {
  font-size: 13px;
  padding: 8px 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
}
.btn--sm:hover { background: var(--green-d); transform: translateY(-1px); }
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  padding: 13px 24px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover { background: #128C7E; transform: translateY(-2px); }

/* Focus visible */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal--right {
  transform: translateX(32px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img{
    height:75px;
    width:auto;
}
.logo__mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}
.logo__text { color: var(--white); }
.logo__text--light { color: var(--white); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
   color: #0F172A;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: #2563EB;
  background: rgba(37,99,235,0.08);
}
.nav__cta {
  background: linear-gradient(135deg, var(--blue), #1D4ED8) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,99,235,0.45); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
   background: #2563EB;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A5F 50%, #0F2027 100%);
  min-height: 90vh;
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  bottom: 80px;
  left: -80px;
  pointer-events: none;
}
.hero__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  padding: 5px 14px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.hero__features span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
}

.hero__features span:hover {
    transform: translateY(-3px);
    background: #22C55E;
    color: #fff;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
}
.hero__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero__content{
    flex:1;
}

.hero__slider{
    flex:1;
    max-width:500px;
    height:400px;
    position:relative;
    overflow:hidden;
    border-radius:20px;
}
.hero__slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	  animation: floatImage 5s ease-in-out infinite;
}
@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}
.hero__slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slider .slide.active {
    opacity: 1;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat__num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 160px;
  pointer-events: none;
}
.hero__wave svg { width: 100%; height: 100%; }
.hero__content {
  padding-bottom: 60px;
}

/* ============ ABOUT ============ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.about__img-wrap { position: relative; }
.about__img-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about__blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(34,197,94,0.1));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: -32px;
  right: -32px;
  z-index: 0;
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
.about__content { max-width: 540px; }
.about__lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.65;
}
.about__body { color: var(--text-m); margin-bottom: 32px; line-height: 1.8; }
.about__pillars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(34,197,94,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.pillar strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.pillar p { font-size: 14px; color: var(--text-m); line-height: 1.6; }

/* ============ SERVICES ============ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover, .service-card:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.service-card:hover::before, .service-card:focus-visible::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(34,197,94,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-l); line-height: 1.7; }
.service-card__arrow {
  display: block;
  margin-top: 20px;
  color: var(--green);
  font-size: 18px;
  transition: transform var(--transition);
}
.service-card:hover .service-card__arrow { transform: translateX(6px); }

/* ============ WHY ============ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card__num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  opacity: 0.7;
}
.why-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(34,197,94,0.06));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.why-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-m); line-height: 1.65; }

/* ============ PORTFOLIO ============ */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.portfolio-card:hover, .portfolio-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.portfolio-card__img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.portfolio-card__img--1 {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #2563EB 100%);
}
.portfolio-card__img--1::before {
  content: '⬡';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; opacity: 0.08; color: #fff;
}
.portfolio-card__img--2 {
  background: linear-gradient(135deg, #064E3B, #065F46, #059669);
}
.portfolio-card__img--3 {
  background: linear-gradient(135deg, #312E81, #4338CA, #7C3AED);
}
.portfolio-card__img--4 {
  background: linear-gradient(135deg, #7C2D12, #C2410C, #EA580C);
}
.portfolio-card__img--5 {
  background: linear-gradient(135deg, #1E3A5F, #0284C7, #38BDF8);
}
.portfolio-card__img--6 {
  background: linear-gradient(135deg, #1F2937, #111827, #22C55E);
}
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-card__overlay,
.portfolio-card:focus-visible .portfolio-card__overlay { opacity: 1; }
.portfolio-card__tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.portfolio-card__overlay h3 { font-family: var(--font-head); font-size: 16px; color: var(--white); font-weight: 600; margin-bottom: 8px; }
.portfolio-card__overlay p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.5; }
.portfolio-card__meta {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portfolio-card__cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.portfolio-card__meta strong { font-size: 15px; color: var(--navy); font-family: var(--font-head); }

/* ============ PROCESS ============ */
.process__track { position: relative; padding: 32px 0; }
.process__line {
  display: none;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.process-step__bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}
.process-step__num {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy);
}
.process-step__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  flex: 1;
  transition: var(--transition);
}
.process-step__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-2px);
}
.process-step__card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step__card p { font-size: 13px; color: var(--text-l); line-height: 1.65; }

/* ============ CONTACT ============ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: flex-start;
  gap: 80px;
}
.contact__info .section__title { margin-bottom: 12px; }
.contact__info > p { color: var(--text-m); margin-bottom: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(34,197,94,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact__details strong { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-m); margin-bottom: 2px; }
.contact__details a, .contact__details span { font-size: 15px; color: var(--navy); font-weight: 500; }
.contact__details a:hover { color: var(--blue); }

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group label span { color: var(--blue); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form__success {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-sm);
  color: var(--green-d);
  font-size: 14px;
  font-weight: 500;
}
.form__success.show { display: block; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__tagline {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin: 12px 0 10px;
  letter-spacing: 0.04em;
}
.footer__desc { font-size: 13px; color: var(--text-l); line-height: 1.7; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-l);
  transition: var(--transition);
}
.social-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-2px); }
.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links ul, .footer__contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links li a {
  font-size: 13px;
  color: var(--text-l);
  transition: color var(--transition);
}
.footer__links li a:hover { color: var(--green); padding-left: 4px; }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-l);
}
.footer__contact li svg { color: var(--green); flex-shrink: 0; }
.footer__contact li a { color: var(--text-l); transition: color var(--transition); }
.footer__contact li a:hover { color: var(--green); }
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: 13px; color: var(--text-l); }

/* ============ FLOAT BUTTONS ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 900;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--blue); transform: translateY(-2px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services__grid, .why__grid, .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .hero__inner, .about__inner, .contact__inner { gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.hero__features {
    justify-content: center;
}
.hero__inner {
    flex-direction: column;
    text-align: center;
}

.hero__slider {
    max-width: 100%;
    width: 100%;
    height: 250px;
    margin: 0 auto 30px;
}
	.hero__slider {
    width: 100%;
    max-width: 100%;
    height: 300px;
    min-height: 300px;
    margin: 20px auto 30px;
    order: 2;
}
.hero__slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    width: 100%;
}

.hero__actions {
    justify-content: center;
}

.hero__features {
    justify-content: center;
}
.hero__features span {
    font-size: 13px;
    padding: 8px 14px;
}
  .section { padding: 72px 0; }

  /* Nav */
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 90vw);
    background: var(--navy);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { font-size: 16px; padding: 12px 16px; display: block; }
  .nav__cta { margin-top: 8px; text-align: center; justify-content: center; }

 /* Hero Mobile */
.hero {
    padding-top: 100px;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero__slider {
    display: block !important;
    width: 100%;
    max-width: 100%;
    height: 220px;
	margin:0 auto 30px;
   order: 2;
}
	.hero__inner{
    display:flex;
    flex-direction:column;
}

.hero__slider .slide {
    display: block;
}

.hero__content {
    width: 100%;
    text-align: center;
}
  /* About */
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { order: -1; }

  /* Grids */
  .services__grid,
  .why__grid,
  .portfolio__grid { grid-template-columns: 1fr; }

  /* Process */
  .process__steps { grid-template-columns: 1fr; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 16px; }
  .stat__divider { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}
/*blog css*/
.blog__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.blog-card{
    background:#fff;
    border-radius:14px;
    padding:30px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-5px);
}

.blog-card__tag{
    display:inline-block;
    background:#22C55E;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    margin-bottom:15px;
}

.blog-card h3{
    margin-bottom:12px;
    color:#0F172A;
}

.blog-card p{
    color:#666;
    margin-bottom:15px;
}

.blog-card a{
    color:#2563EB;
    font-weight:600;
}

@media(max-width:768px){
    .blog__grid{
        grid-template-columns:1fr;
    }
}
@media (max-width:768px){

.hero__inner{
    display:flex;
    flex-direction:column;
}

.hero__content{
    display:flex;
    flex-direction:column;
}

.hero__actions{
    order:3;
}

}
@media (max-width:768px){

.hero__inner{
    display:flex;
    flex-direction:column;
}

.hero__slider{
    order:-1;
    width:100%;
    height:300px;
    margin:0 0 30px 0;
}

}
.social-floating{
    position:fixed;
    left:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.social{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:24px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
}

.social:hover{
    transform:translateY(-4px);
}

.instagram{
    background:#E1306C;
}

.facebook{
    background:#1877F2;
}

.whatsapp{
    background:#25D366;
}