* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: auto;
  overflow-x: hidden;
  background: var(--bg-main);
  color: var(--text);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Hide scrollbar (Chrome / Edge / Safari) */

body::-webkit-scrollbar {
  display: none;
}


/* =========================================
   DESIGN TOKENS (CODERNN LIGHT SYSTEM)
========================================= */

:root {

  /* Brand */
  --brand-primary: #ff0c00;
  --brand-accent: #ff3b2f;

  /* Backgrounds */
  --bg-main: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-card: #ffffff;

  /* Text */
  --heading: #111111;
  --text: #555555;
  --muted: #888888;

  /* Borders */
  --border: #eeeeee;

  /* Utility */
  --white: #ffffff;
  --black: #000000;

  /* Spacing */
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;

  /* Typography */
  --h1: 44px;
  --h2: 30px;
  --h3: 22px;
  --text-lg: 18px;
  --text-md: 16px;
  --text-sm: 14px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */

  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --soft-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);

}


/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */

@media (min-width:768px) {

  :root {
    --h1: 56px;
    --h2: 34px;
    --h3: 24px;
  }

}

@media (min-width:1200px) {

  :root {
    --h1: 64px;
    --h2: 40px;
    --h3: 26px;
    --space-xl: 80px;
  }

}


/* =========================================
   CONTAINER
========================================= */

.ub-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-s);
}


/* =========================================
   FLEX UTILITIES
========================================= */

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}


/* =========================================
   COMMON UTILITIES
========================================= */

.center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Screen reader */

.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}


/* =========================================
   TYPOGRAPHY
========================================= */

/* Main font for site */

body,
p,
a,
li,
nav {
  font-family: "Mulish", sans-serif;
}


/* Headings */

h1,
h2,
h3 {
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}


/* Tagline / small highlight text */

.section-title .tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

h1 {
  font-size: var(--h1);
  line-height: 1.1;
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

p {
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--text);
}

/* Section tagline */

.section-title .tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}


/* =========================================
   LINKS
========================================= */

a {
  text-decoration: none;
  color: inherit;
}


/* =========================================
   BUTTON SYSTEM
========================================= */

.btn-primary {

  background: var(--brand-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: all .3s ease;

}

.btn-primary:hover {

  background: var(--brand-accent);
  transform: translateY(-2px);

}

.btn-secondary {

  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: .3s;

}

.btn-secondary:hover {

  background: var(--brand-primary);
  color: #fff;

}


/* =========================================
   SECTION SPACING
========================================= */

section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}


/* =========================================
   CARD SYSTEM
========================================= */

.card {

  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-m);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);

}


/* =========================================
   NAVBAR
========================================= */

.site-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border);

  transition: transform .35s ease;
}

/* hidden state */

.site-nav.nav-hidden {
  transform: translateY(-100%);
}

/* Navbar layout */

.nav-wrapper {

  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;

}


/* Logo */

.logo a {

  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--heading);

}

.logo img {
  height: 40px;
  width: auto;
}


/* Navigation links */

.nav-links {

  display: flex;
  align-items: center;
  gap: 32px;

}

.nav-links a {

  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text);
  position: relative;
  transition: .3s;

}


/* hover underline */

.nav-links a::after {

  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--brand-primary);
  transition: .3s;

}

.nav-links a:hover {

  color: var(--brand-primary);

}

.nav-links a:hover::after {

  width: 100%;

}


/* CTA */

.nav-cta {
  display: flex;
  align-items: center;
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #111;
  transition: all .3s ease;
}

/* Hamburger → X animation */

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

body.menu-open {
  overflow: hidden;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}


/* 
   MOBILE NAV
 */

@media (max-width:900px) {

  .nav-links {
    display: none;
  }

}

/* FOOTER-SECTION */

.site-footer {
  background: #1c1c1c;
  color: #ccc;
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #bbb;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #bbb;
  font-size: 14px;
  transition: .3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
}

.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: #1c1c1c;

  color: #fff;

  transition: .3s;
}

.footer-social a:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

@media (max-width:900px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

}

/* FLOATING WHATSAPP BUTTON */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  /* WhatsApp green */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float::before {
  content: "Chat with us";
  position: absolute;
  right: 70px;
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  transition: .3s;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

/* Mobile spacing fix */
@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Floating button hidden state */

.whatsapp-float {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.whatsapp-float.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/*CONTACT FORM SECTON*/

.form-success {
  background: #e6fff0;
  color: #0a7d3b;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-error {
  background: #ffe6e6;
  color: #a10000;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-success,
.form-error {
  transition: opacity 0.5s ease;
}

/* --------------------- HOME PAGE CSS START HERE ---------------------------- */

/* HOME PAGE : HERO SECTION */

/* HERO SECTION */

.hero {
  padding-top: 140px;
  padding-bottom: 100px;
}

/* Hero layout */

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */

.hero-content {
  max-width: 540px;
}

/* Badge */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  color: #555;
}

.hero-badge svg {
  color: var(--brand-primary);
}

/* Heading */

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

/* Highlight word */

.highlight {
  color: var(--brand-primary);
}

/* Paragraph */

.hero p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Buttons */

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-buttons svg {
  transition: transform .3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-primary:hover {
  background: #d90a00;
}

.btn-secondary:hover {
  background: #fff2f1;
  color: #000000;
  border-color: #000000;
}

/* Trust indicators */

.hero-trust {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #777;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust svg {
  color: var(--brand-primary);
}

/* RIGHT SIDE IMAGE */

.hero-visual img {
  width: 100%;
  max-width: 620px;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.hero-visual img {
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.08));
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(255, 12, 0, 0.08),
      transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

/*  RESPONSIVE */

@media (max-width: 1024px) {

  .hero h1 {
    font-size: 52px;
  }

}

@media (max-width: 768px) {

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

}

/* HOME PAGE : PROBLEM SECTION */

.business-section {
  background: var(--bg-secondary);
}

.section-subtitle {
  max-width: 600px;
  margin: 12px auto 60px auto;
  color: var(--muted);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.business-card {
  background: white;
  padding: 35px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: .35s ease;
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--soft-shadow);
}

.business-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.business-card h3 {
  margin-bottom: 10px;
}

@media (max-width:768px) {

  .business-grid {
    grid-template-columns: 1fr;
  }

}

/* ================= REALITY SECTION -v2 ================= */

.reality-section {
  background: var(--bg-secondary);
}

.reality-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */

.reality-text h2 {
  margin-top: 10px;
  margin-bottom: 18px;
}

.reality-text p {
  max-width: 420px;
}

/* RIGHT GRID */

.reality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.reality-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: .35s;
}

.reality-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--soft-shadow);
}

.reality-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.reality-card h3 {
  margin-bottom: 8px;
}

@media (max-width:900px) {

  .reality-wrapper {
    grid-template-columns: 1fr;
  }

  .reality-grid {
    grid-template-columns: 1fr;
  }

  .reality-card:nth-child(3) {
    grid-column: span 1;
  }

}

/* Make last card full width */

.reality-card:nth-child(3) {
  grid-column: span 2;
}

.reality-icon {
  color: var(--brand-primary);
  margin-bottom: 14px;
}

.reality-icon svg {
  display: block;
}

/* HOME PAGE : SERVICE-SECTION */

.services-section {
  background: #ffffff;
}

.section-subtitle {
  max-width: 600px;
  margin: 12px auto 60px auto;
  color: var(--muted);
}

/* Grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Cards */

.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  transition: .35s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--soft-shadow);
}

.service-card p {
  flex-grow: 1;
  padding-bottom: 20px;
}

/* Icon */

.service-icon {
  color: var(--brand-primary);
  margin-bottom: 16px;
}

/* Heading */

.service-card h3 {
  margin-bottom: 10px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-weight: 600;
  color: var(--brand-primary);
  transition: .3s;
}

.service-arrow {
  transition: transform .3s ease;
}

.service-link:hover .service-arrow {
  transform: translateX(4px);
}

.service-card:hover {
  border-color: var(--brand-primary);
}

.services-cta {
  margin-top: 50px;
}

.services-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-cta svg {
  transition: transform .3s ease;
}

.services-cta a:hover svg {
  transform: translateX(4px);
}

/* HOME PAGE : ABOUTUS SECTION */

/* ABOUT SECTION */

.about-section {
  background: var(--bg-secondary);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* text */

.about-content p {
  margin-top: 16px;
  max-width: 480px;
}

/* highlights */

.about-highlights {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-point {
  background: #f5f5f5;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* image */

.about-visual img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.about-cta {
  margin-top: 28px;
}

.about-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-cta svg {
  transition: transform .3s ease;
}

.about-cta a:hover svg {
  transform: translateX(4px);
}

/* responsive */

@media (max-width:900px) {

  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content p {
    margin: auto;
  }

  .about-highlights {
    justify-content: center;
  }

}

/* HOME PAGE : PORTFOLIO SECTION */

.portfolio-section {
  background: #ffffff;
}

.portfolio-layout {
  margin-top: 60px;
}

/* Featured project */

.portfolio-featured {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  transition: .3s;
}

.portfolio-featured img {
  width: 100%;
  display: block;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--soft-shadow);
}

/* Grid */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.portfolio-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: .3s;
}

.portfolio-card img {
  width: 100%;
  margin-bottom: 14px;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--soft-shadow);
}

.portfolio-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.portfolio-image {
  overflow: hidden;
  border-radius: 12px;
}

.portfolio-image img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

.portfolio-featured:hover,
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

@media (max-width:900px) {

  .portfolio-featured {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

}

/* HOME PAGE : TESTIMONIAL SECTION */

.testimonial-section {
  background: var(--bg-secondary);
}

/* Wrapper */

.testimonial-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* Card */

.testimonial-card {
  position: relative;
  max-width: 700px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--soft-shadow);
}

/* quote background */

.quote-mark {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 90px;
  color: rgba(0, 0, 0, 0.04);
  font-weight: 800;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Stars */

.testimonial-stars {
  font-size: 20px;
  color: #f5b400;
  margin-bottom: 16px;
}

/* Text */

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Author */

.testimonial-author strong {
  display: block;
  color: var(--heading);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--muted);
}

/* HOME PAGE : PORCESS SECTION */

.process-section {
  background: #ffffff;
}

.process-timeline {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* timeline line */

.process-timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border);
}

.process-step:hover .process-icon {
  transform: translateY(-4px);
}

.process-icon {
  transition: .3s ease;
}

/* step */

.process-step {
  position: relative;
  text-align: center;
}

/* step number circle */

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px auto;
}

/* heading */

.process-step h3 {
  margin-bottom: 8px;
}

.process-icon {
  /* color:var(--brand-primary); */
  margin-bottom: 14px;
}

@media (max-width:900px) {

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    display: none;
  }

}

/* HOME PAGE : WHY SECTION */

/* WHY SECTION */

.why-section {
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-align: center;
  transition: .3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--soft-shadow);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.why-card h3 {
  margin-bottom: 8px;
}

/* HOME PAGE : CTA SECTION */

.cta-section {
  background: var(--bg-secondary);
}

/* CTA Box */

.cta-wrapper {
  position: relative;
  background: #ffffff;
  padding: 70px 50px;
  border-radius: 18px;
  border: 1px solid var(--border);
  max-width: 900px;
  margin: auto;
  text-align: center;
  overflow: hidden;
}

/* brand glow */

.cta-wrapper::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(255, 12, 0, 0.12),
      transparent 70%);
  top: -120px;
  right: -120px;
  filter: blur(40px);
}

/* Tag */

.cta-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--brand-primary);
  font-weight: 600;
}

/* Heading */

.cta-content h2 {
  margin-bottom: 16px;
}

/* Text */

.cta-content p {
  max-width: 520px;
  margin: auto;
  margin-bottom: 30px;
}

/* Buttons */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/*------------------------ ABOUT PAGE CSS START HERE ----------------------------- */

/* ABOUT PAGE : HERO SECTION */

.about-hero {
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero-visual img {
  filter: brightness(0.95);
}

.hero-visual::before {
  background: radial-gradient(circle,
      rgba(255, 12, 0, 0.12),
      transparent 70%);
}

.hero h1 {
  color: var(--heading);
  /* instead of grey */
}

.about-hero-visual img {
  max-width: 680px;
}

.about-content p {
  margin-top: 16px;
}

/* .about-visual img {
  max-width: 480px;
} */

/* ABOUT PAGE : STORY SECTION */

.story-section {
  background: #ffffff;
}

/* layout */

.story-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */

.story-sub {
  margin-top: 16px;
  max-width: 420px;
}

/* RIGHT CARDS */

.story-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* base card */

.story-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.story-card:hover {
  transform: translateY(-5px);
}

/* main card */

.story-card.main {
  font-weight: 600;
  font-size: 17px;
}

/* highlight card */

.highlight-card {
  border-left: 4px solid var(--brand-primary);
  background: #fff5f4;
}

/* responsive */

@media (max-width:900px) {
  .story-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-sub {
    margin: auto;
  }
}

/* ABOUT PAGE : WHO WE ARE SECTION */

.why-section {
  background: var(--bg-secondary);
}

.why-card {
  background: #fffafa;
}

.why-icon {
  color: var(--brand-primary);
  margin-bottom: 14px;
}

/* ABOUT PAGE : CTA SECTION */
.cta-section {
  background: #ffffff;
}

.cta-wrapper {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.why-card:hover {
  border-color: var(--brand-primary);
}

/*-------------------------- SERVICES PAGE CSS START HERE ---------------------- */

/* SERVICES PAGE : HERO SECTION */

.services-hero .hero-visual img {
  max-width: 580px;
}

.services-hero .hero-badge {
  background: #fff2f1;
  color: var(--brand-primary);
}

/* SERVICES PAGE : SERVICES SECTION */

.services-page {
  background: var(--bg-secondary);
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary svg,
.btn-secondary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg,
.btn-secondary:hover svg {
  transform: translateX(4px);
}

.service-box {
  display: flex;
  gap: 30px;
  padding: 32px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border);
  transition: .35s;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--soft-shadow);
  border-color: var(--brand-primary);
}

.service-icon {
  font-size: 34px;
  color: var(--brand-primary);
}

.service-content h3 {
  margin-bottom: 10px;
}

.service-content p {
  margin-bottom: 12px;
}

.service-content ul {
  margin: 15px 0;
  padding-left: 18px;
}

.service-content li {
  margin-bottom: 8px;
  font-size: 14px;
}

.service-content {
  max-width: 480px;
}

.service-icon {
  /* color: var(--brand-primary); */
  margin-bottom: 12px;
}

.service-icon svg {
  display: block;
}

.service-content .btn-primary {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-small {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
}

/* Responsive */

@media (max-width: 768px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICE PAGE : WHY CHOOSE SECTION */
.service-why-section {
  background: #ffffff;
}

.service-section-title {
  margin: 12px auto 40px auto;
}

.why-card {
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--soft-shadow);
  border-color: var(--brand-primary);
}

/* Icon animation */
.why-card .why-icon {
  transition: all 0.3s ease;
  color: var(--brand-primary);
}

.why-card:hover .why-icon {
  transform: translateY(-3px) scale(1.05);
}

/* SERVICES PAGE : FAQ SECTION */

.faq-section {
  background: var(--bg-secondary);
}

.faq-wrapper {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 18px;
}

.faq-question span {
  font-size: 22px;
  transition: 0.3s;
}

/* Hidden answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin-top: 10px;
  color: var(--muted);
}

/* ACTIVE STATE */

.faq-item.active .faq-answer {
  max-height: 150px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* SERVICES PAGE : CTA SECTION */

.cta-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-buttons svg {
  transition: transform 0.3s ease;
}

.cta-buttons a:hover svg {
  transform: translateX(4px);
}

/* --------------------------- CONTACT PAGE CSS START HERE ------------------------- */
/* CONTACT HERO WITH IMAGE */

.contact-hero {
  padding-top: 140px;
  padding-bottom: 100px;
}

.contact-hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-hero h1 {
  color: var(--heading);
  /* instead of grey */
}

/* LEFT */

.contact-hero-content {
  max-width: 520px;
}

.contact-hero-content p {
  margin-top: 16px;
  font-size: 18px;
  margin-bottom: 24px;
}

/* RIGHT IMAGE */

.contact-hero-visual img {
  width: 100%;
  max-width: 680px;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  filter: brightness(0.95) contrast(1.05);
}

.contact-hero-visual {
  position: relative;
}

.contact-hero-visual::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(255, 12, 0, 0.12),
      transparent 70%);
  top: -80px;
  right: -80px;
  filter: blur(40px);
  z-index: -1;
}

/* RESPONSIVE */

@media (max-width:768px) {

  .contact-hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

}

/* CONTACT PAGE : CONTACT OPTION SECTION  */

.contact-info-section {
  background: var(--bg-secondary);
}

/* Grid */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

/* Center content */

.contact-card {
  text-align: center;
  align-items: center;

  /* ADD THIS 👇 */
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

/* Icon spacing */

.contact-card .service-icon {
  margin-bottom: 14px;
}

/* Hover upgrade */

.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-primary);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.contact-card::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--brand-primary);
  margin: 0 auto 16px;
  border-radius: 10px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

/* Responsive */

@media (max-width:768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PAGE : CONTACT FORM SECTION */

.contact-form-section {
  background: #ffffff;
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
  border-top: 1px solid var(--border);
}

/* Layout */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */

.contact-left h2 {
  margin-top: 10px;
  margin-bottom: 16px;
}

.contact-left p {
  max-width: 420px;
}

/* trust points */

.contact-points {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* FORM CARD (IMPORTANT PART 🔥) */

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);

  /* STRONG SHADOW FOR SEPARATION */
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;
  gap: 16px;

  position: relative;
}

/* ORANGE GLOW EFFECT */

.contact-form::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(255, 12, 0, 0.08),
      transparent 70%);
  top: -80px;
  right: -80px;
  filter: blur(40px);
  z-index: -1;
}

/* two inputs row */

.form-row {
  display: flex;
  gap: 16px;
}

.form-row input {
  width: 100%;
}

/* inputs */

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  transition: .3s;
  background: #ffffff;
}

/* focus */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 2px rgba(255, 12, 0, 0.08);
}

/* textarea */

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* CONTACT FORM BUTTON UPGRADE */

.contact-form button {
  margin-top: 12px;
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;

  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);

  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 10px 25px rgba(255, 12, 0, 0.25);
}

.contact-form button:hover {
  transform: translateY(-3px);
  background: var(--brand-accent);
  box-shadow: 0 18px 40px rgba(255, 12, 0, 0.35);
}

.contact-form button svg {
  transition: transform 0.3s ease;
}

.contact-form button:hover svg {
  transform: translateX(4px);
}

/* note */

.form-note {
  font-size: 13px;
  color: var(--muted);
}

/* RESPONSIVE */

@media (max-width:900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-left p {
    margin: auto;
  }

  .contact-form button {
    margin-inline: auto;
  }

  .form-row {
    flex-direction: column;
  }
}

/* CONTACT PAGE : TRUST SECTION */

.trust-section {
  background: var(--bg-secondary);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

/* Grid */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* CARDS */

.trust-item {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-md);

  background: #ffffff;
  /* cards pop out */
  border: 1px solid var(--border);

  transition: all 0.3s ease;
}

/* HOVER */

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--soft-shadow);
  border-color: var(--brand-primary);
}

/* ICON */

.trust-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: #fff2f1;
  color: var(--brand-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 16px;

  transition: 0.3s;
}

.trust-item:hover .trust-icon {
  background: var(--brand-primary);
  color: #ffffff;
  transform: scale(1.05);
}

/* RESPONSIVE */

@media (max-width:900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PAGE : PROCESS SECTION */

.process-section {
  background: #ffffff;
}

/* CONTACT PAGE : WHATSAPP CTA SECTION */

.whatsapp-cta {
  background: var(--bg-secondary);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

/* BOX */

.whatsapp-box {
  text-align: center;
  background: #ffffff;

  padding: 60px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);

  position: relative;
  overflow: hidden;
}

/* ORANGE GLOW */

.whatsapp-box::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;

  background: radial-gradient(circle,
      rgba(255, 12, 0, 0.12),
      transparent 70%);

  top: -100px;
  right: -100px;
  filter: blur(40px);
}

/* TEXT */

.whatsapp-box h2 {
  margin-bottom: 12px;
}

.whatsapp-box p {
  max-width: 500px;
  margin: auto;
  margin-bottom: 24px;
}

/* BUTTON */

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn svg {
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
  transform: translateX(4px);
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* ------------------------ WORK PAGE CSS START --------------------------- */

/* WORK PAGE : HERO SECTION */

.work-hero {
  padding-top: 140px;
  padding-bottom: 100px;
  background: var(--bg-main);
}

.work-hero-content h1 {
  color: var(--heading);
  /* instead of grey */
}

/* Layout (same style as home hero) */
.work-hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.work-hero-content {
  max-width: 540px;
}

/* Badge */
.work-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff2f1;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  color: var(--brand-primary);
}

/* Heading */
.work-hero h1 {
  margin-top: 16px;
  margin-bottom: 20px;
}

/* Paragraph */
.work-hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.work-hero .hero-buttons {
  display: flex;
  gap: 16px;
}

/* Trust line */
.work-hero .hero-trust {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}

.work-hero .hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* RIGHT IMAGE */
.work-hero-visual {
  position: relative;
}

.work-hero-visual img {
  width: 100%;
  max-width: 620px;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.4s ease;
}

.work-hero-visual img:hover {
  transform: scale(1.02);
}

/* Glow effect (same as your system) */
.work-hero-visual::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle,
      rgba(255, 12, 0, 0.1),
      transparent 70%);
  top: -80px;
  right: -80px;
  filter: blur(40px);
  z-index: -1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .work-hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .work-hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .work-hero-content {
    max-width: 100%;
  }

  .work-hero .hero-buttons {
    justify-content: center;
  }

  .work-hero .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* WORK PAGE : FEATURED SECTION  */

.work-featured-section {
  background: var(--bg-secondary);
}

/* Layout */

.work-featured {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image */

.work-featured-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  transition: 0.4s ease;
}

.work-featured-image img:hover {
  transform: scale(1.02);
}

/* Content */

.project-tag {
  display: inline-block;
  font-size: 14px;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

.work-featured-content h3 {
  margin-bottom: 12px;
}

.work-featured-content p {
  margin-bottom: 16px;
}

/* Points */

.project-points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.project-points li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* Button */

.work-featured-content .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */

@media (max-width: 768px) {
  .work-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* WORK PAGE : GRID SECTION */

.work-grid-section {
  background: var(--bg-main);
}

/* Grid layout */

.work-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */

.work-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: 0.35s ease;
}

/* Hover */

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--soft-shadow);
}

/* Image */

.work-card img {
  width: 100%;
  display: block;
}

/* Content */

.work-card-content {
  padding: 20px;
}

.work-card-content h4 {
  margin: 10px 0;
}

.work-card-content p {
  font-size: 14px;
  margin-bottom: 16px;
}

.project-note {
  display: inline-block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}



/* Tag */

.project-tag {
  font-size: 13px;
  color: var(--brand-primary);
}

/* Button */

.work-card .btn-primary {
  font-size: 14px;
  padding: 10px 18px;
}

/* Responsive */

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

/* WORK PAGE : CASE-STUDY-SECTION */

/* CASE STUDY SECTION */

.case-study-section {
  background: var(--bg-secondary);
}

/* Layout */

.case-study {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image */

.case-study-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

/* Content */

/* Case Head (icon + title) */

.case-head {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* Icon */

.case-icon {
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover upgrade */

.case-box:hover .case-icon {
  transform: scale(1.1);
  transition: 0.3s ease;
}

.case-study-content h3 {
  margin-bottom: 20px;
}

/* Boxes */

.case-box {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: 0.3s ease;
}

.case-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

/* Headings */

.case-box h4 {
  color: var(--brand-primary);
}

/* Responsive */

@media (max-width: 768px) {
  .case-study {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* WORK PAGE : STATE SECTION */
/* STATS SECTION */

.stats-section {
  background: var(--bg-main);
}

/* Grid */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

/* Item */

.stat-item {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: 0.3s ease;
}

/* Hover */

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--soft-shadow);
}

/* Icon */

.stat-icon {
  color: var(--brand-primary);
  margin-bottom: 14px;
}

/* Text */

.stat-item h3 {
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 14px;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* WORK PAGE : TESTIMONIAL SECTION */

.testimonial-section {
  background: var(--bg-secondary);
}

/* Wrapper */

.testimonial-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* Card */

.testimonial-card {
  position: relative;
  max-width: 700px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--soft-shadow);
  transition: 0.3s ease;
}

/* Hover */

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Quote Icon */

.quote-icon {
  color: var(--brand-primary);
  margin-bottom: 10px;
}

/* Stars */

.testimonial-stars {
  font-size: 18px;
  color: #f5b400;
  margin-bottom: 16px;
}

/* Text */

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Author */

.testimonial-author strong {
  display: block;
  color: var(--heading);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--muted);
}

/* WORK PAGE : WHY SECTION */
.work-cta-section {
  background: var(--bg-secondary);
}

/* -------------------- WEBISTE DEVELOPMENT SERVICES CSS CODE START HERE --------------- */

.problem-section .reality-card:nth-child(3) {
  grid-column: span 1;
}

/* WEBSITE DEVELOPMENT :  SOLUTION SECTION */

.solution-section {
  background: #ffffff;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.solution-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--soft-shadow);
  border-color: var(--brand-primary);
}

.solution-icon {
  color: var(--brand-primary);
  margin-bottom: 14px;
}

.solution-card h3 {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width:768px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

/* WEBSITE DEVELOPMENT : FEATURE SECTION */

.website-dev-features {
  background: var(--bg-secondary);
}

/* WEBSITE DEVELOPMENT : PORTFOLIO SECTION */

.website-dev-portfolio {
  background: #ffffff;
}

/* WEBSITE DEVELOPMENT : TESTIMONIAL SECTION */

.website-dev-testimonial {
  background: var(--bg-secondary);
}

/* WEBSITE DEVELOPMENT : PROCESS SECTION */
.website-dev-process {
  background: #ffffff;
}

/* WEBSITE DEVELOPMENT : WHY SECTION  */
.website-dev-why {
  background: var(--bg-secondary);
}

/* WEBSITE DEVELOPMENT : FAQ SECTION */
.website-dev-faq {
  background: #ffffff;
}

.website-dev-cta {
  background: var(--bg-secondary);
}

/* ---------------------- E-COMMERCES PAGE CSS START HERE ---------------------------- */

.ecommerce-hero .e-commerce-hero-img img {
  max-width: 650px;
  width: 110%;
}

.ecommerce-problem .reality-card:nth-child(3) {
  grid-column: span 1;
}

/* ONLY for ecommerce page */
.ecommerce-problem .reality-card .icon {
  width: 50px;
  height: 50px;
  /* background: rgba(255, 12, 0, 0.08); */
  color: #ff0c00;

}

.ecommerce-problem .reality-card svg {
  width: 22px;
  height: 22px;
}

/* E-COMMERCE PAGE : SLOUTION SECTION */

.ecommerce-solution {
  background: #ffffff;
}

/* E-COMMERCE PAGE : FEATURE SECTION */

.ecommerce-features {
  background: var(--bg-secondary);
}

/* E-COMMERCE PAGE : PORTFOLIO SECTION  */

.ecommerce-portfolio {
  background: #ffffff;
}

/* E-COMMERCE PAGE : TESTIMONIAL SECTION */

.ecommerce-testimonial {
  background: var(--bg-secondary);
}

/* E-COMMERCE PAGE : PROCESS SECTION */

.ecommerce-process {
  background: #ffffff;
}

/* E-COMMERCE PAGE : WHY SECTION */

.ecommerce-why {
  background: var(--bg-secondary);
}

/* E-COMMERCES PAGE : FAQ SECTION */

.ecommerce-faq {
  background: #ffffff;
}

/* E-COMMERCES PAGE : CTA SECTION */

.ecommerce-cta {
  background: var(--bg-secondary);
}

/* --------------------------- UX-UI PAGE CSS START HERE ----------------------------- */

/* UI/UX SOLUTION */
.uiux-solution {
  background: #ffffff;
}

/* UX-UI PAGE : FEATURE SECTION */
.uiux-features {
  background: var(--bg-secondary);
}

.uiux-features .service-card {
  position: relative;
  overflow: hidden;
}

.uiux-features .service-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 12, 0, 0.08), transparent);
  top: -40px;
  right: -40px;
}

.uiux-features .service-card:hover {
  border-color: var(--brand-primary);
}

/* UX-UI PAGE : PORTFOLIO SECTION */
.uiux-portfolio {
  background: #ffffff;
}

/* UX-UI PAGE : TESTIMONIAL SECTION */
.uiux-testimonial {
  background: var(--bg-secondary);
}

/* UX-UI PAGE : PROCESS SECTION */
.uiux-process {
  background: #ffffff;
}

/* UX-UI PAGE : WHY SECTION */
.uiux-why {
  background: var(--bg-secondary);
}

.uiux-why .why-card:hover {
  border-color: var(--brand-primary);
}

/* UX-UI PAGE : FAQ SECTION */
.uiux-faq {
  background: #ffffff;
}

/* UX-UI PAGE : CTA SECTION */
.uiux-cta {
  background: var(--bg-secondary);
}

/* --------------------------- SEO PAGE CSS START HERE ----------------------------- */

/* SEO PAGE : SOLUTION SECTION */
.seo-solution {
  background: #ffffff;
}

/* SEO PAGE : FEATURE SECTION */
.seo-features {
  background: var(--bg-secondary);
}

.seo-features .service-card:hover {
  border-color: var(--brand-primary);
}

/* SEO PAGE : PORTFOLIO SECTION */
.seo-portfolio {
  background: #ffffff;
}

.seo-portfolio .portfolio-card img {
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.seo-portfolio .portfolio-card:hover img {
  transform: scale(1.05);
}

/* SEO PAGE : TESTIMONIAL SECTION */
.seo-testimonial {
  background: var(--bg-secondary);
}

/* SEO PAGE : PROCESS SECTION*/
.seo-process {
  background: #ffffff;
}

/* SEO PAGE : WHY SECTION */
.seo-why {
  background: var(--bg-secondary);
}

.seo-why .why-card:hover {
  border-color: var(--brand-primary);
}

/* SEO PAGE : FAQ SECTION */
.seo-faq {
  background: #ffffff;
}

/* SEO PAGE : CTA SECTION */
.seo-cta {
  background: var(--bg-secondary);
}