/* =========================================================
   YASH DATA RECOVERY
   FOUNDATION SYSTEM
========================================================= */

/* =========================================================
   GOOGLE FONT
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* =========================================================
   DESIGN SYSTEM
========================================================= */

:root {

  /* BRAND COLORS */

  --primary: #2563eb;
  --primary-light: #3b82f6;
  --accent: #38bdf8;

  /* BACKGROUNDS */

  --bg: #f3f8ff;
  --surface:  #f5f9ff;
  --surface-hover: #f1f5f9;

  /* TEXT */

  --text: #0f172a;
  --text-light: #64748b;

  /* BORDERS */

  --border: #e2e8f0;

  /* SHADOWS */

  --shadow-sm: 0 4px 12px rgba(0,0,0,.05);
  --shadow-md: 0 12px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.12);

  /* RADIUS */

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;

  /* TRANSITIONS */

  --transition: .35s ease;
}

/* =========================================================
   DARK THEME
========================================================= */

body.dark-theme {

  --bg: #0f172a;

  --surface: #1e293b;

  --surface-hover: #26364d;

  --text: #ffffff;

  --text-light: #cbd5e1;

  --border: #334155;

  --shadow-sm: 0 4px 12px rgba(0,0,0,.25);

  --shadow-md: 0 12px 30px rgba(0,0,0,.35);

  --shadow-lg: 0 20px 50px rgba(0,0,0,.45);
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {

  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

html {

  scroll-behavior: smooth;
}

body {

  font-family: "Poppins", sans-serif;

  background: var(--bg);

  color: var(--text);

  overflow-x: hidden;

  transition: background .3s ease,
              color .3s ease;
}

img {

  max-width: 100%;

  display: block;
}

a {

  text-decoration: none;
}

ul {

  list-style: none;
}

/* =========================================================
   THEME TOGGLE BUTTON
========================================================= */

.theme-toggle {

  position: fixed;

  right: 24px;
  bottom: 24px;

  width: 56px;
  height: 56px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );

  color: #fff;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 22px;

  cursor: pointer;

  z-index: 9999;

  box-shadow: var(--shadow-md);

  transition: var(--transition);
}

.theme-toggle:hover {

  transform: translateY(-4px);
}

/* =========================================================
   SECTION 2
   HEADER + NAVBAR SYSTEM
========================================================= */
/* ALL SECTIONS */

section {

  padding-top: 70px;
  padding-bottom: 70px;

}

/* =========================================================
   HEADER
========================================================= */

#header {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  padding: 0 5%;

  backdrop-filter: blur(18px);

  background: rgba(255,255,255,.75);

  border-bottom: 1px solid rgba(255,255,255,.15);

  transition: all .35s ease;
}

/* DARK MODE HEADER */

body.dark-theme #header {

  background: rgba(15,23,42,.75);
}

/* SCROLLED HEADER */

#header.scrolled {

  box-shadow: var(--shadow-md);

  backdrop-filter: blur(22px);
}

/* =========================================================
   NAVBAR CONTAINER
========================================================= */

.navbar {

  max-width: 1450px;

  margin: auto;

  height: 78px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* =========================================================
   LOGO
========================================================= */

.logo {

  display: flex;

  align-items: center;

  gap: 10px;

  color: inherit;
}

/* LOGO IMAGE */

.logo img {

  width: 82px;

  max-height: 60px;

  object-fit: contain;

  flex-shrink: 0;
}

/* LOGO TEXT */

.logo-text {

  display: flex;

  flex-direction: column;
}

.logo-text h2 {

  color: var(--primary);

  font-size: 30px;

  line-height: 1;

  font-weight: 800;
}

.logo-text span {

  color: var(--text-light);

  font-size: 15px;

  font-weight: 600;

  letter-spacing: .5px;
}

/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-links {

  display: flex;

  align-items: center;

  gap: 8px;
}

/* =========================================================
   NAV ITEM
========================================================= */

.nav-item {

  position: relative;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 12px 18px;

  border-radius: var(--radius-sm);

  color: var(--text);

  font-size: 15px;

  font-weight: 500;

  transition: var(--transition);
}

/* HOVER */

.nav-item:hover {

  background: rgba(37,99,235,.08);

  color: var(--primary);
}

/* ACTIVE */

.nav-item.active {

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );

  color: #fff;
}

/* =========================================================
   NAV CTA BUTTON
========================================================= */

.nav-btn {

  padding: 13px 24px;

  border-radius: var(--radius-md);

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );

  color: #fff;

  font-size: 14px;

  font-weight: 600;

  box-shadow: var(--shadow-md);

  transition: var(--transition);
}

.nav-btn:hover {

  transform: translateY(-4px);
}

/* =========================================================
   DROPDOWN
========================================================= */

.dropdown {

  position: relative;
}

/* DROPDOWN ICON */

.dropdown .fa-chevron-down {

  font-size: 12px;

  transition: .3s ease;
}

/* ROTATE ICON */

.dropdown:hover .fa-chevron-down,
.dropdown.active .fa-chevron-down {

  transform: rotate(180deg);
}

/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown-menu {

  position: absolute;

  top: 62px;

  left: 0;

  min-width: 280px;

  padding: 12px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);

  opacity: 0;

  visibility: hidden;

  transform: translateY(15px);

  transition: all .35s ease;
}

/* SHOW MENU */

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

/* DROPDOWN LINKS */

.dropdown-menu li a {

  display: flex;

  align-items: center;

  padding: 13px 16px;

  border-radius: 14px;

  color: var(--text);

  font-size: 14px;

  font-weight: 500;

  transition: var(--transition);
}

/* HOVER */

.dropdown-menu li a:hover {

  padding-left: 24px;

  background: rgba(37,99,235,.08);

  color: var(--primary);
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

  display: none;

  width: 48px;

  height: 48px;

  border-radius: 14px;

  background: var(--surface);

  color: var(--primary);

  align-items: center;

  justify-content: center;

  cursor: pointer;

  font-size: 20px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.menu-toggle:hover {

  transform: scale(1.05);
}

/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width:1100px) {

  .menu-toggle {

    display: flex;
  }

  .nav-links {

    position: absolute;

    top: 95px;

    right: 5%;

    width: 330px;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 24px;

    padding: 20px;

    flex-direction: column;

    align-items: flex-start;

    gap: 6px;

    box-shadow: var(--shadow-lg);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .35s ease;
  }

  .nav-links.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }

  .nav-item {

    width: 100%;
  }

  .nav-btn {

    width: 100%;

    text-align: center;

    margin-top: 8px;
  }

  /* MOBILE DROPDOWN */

  .dropdown {

    width: 100%;
  }

  .dropdown-menu {

    position: relative;

    top: 10px;

    width: 100%;

    display: none;

    opacity: 1;

    visibility: visible;

    transform: none;

    box-shadow: none;

    border: none;

    padding: 8px 0 0;
  }

  .dropdown.active .dropdown-menu {

    display: block;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:768px) {

  .navbar {

    height: 72px;
  }

  .logo img {

    width: 70px;
  }

  .logo-text h2 {

    font-size: 24px;
  }

  .logo-text span {

    font-size: 13px;
  }

  .nav-links {

    width: 92%;
  }
}

/* =========================================================
   SECTION 3
   HERO SECTION
========================================================= */

.hero {

  width: min(1400px, 90%);

  margin: auto;

  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  padding-top: 100px;

  padding-bottom: 80px;
}

/* =========================================================
   HERO LEFT
========================================================= */

.hero-left {

  flex: 1;
}

/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  padding: 12px 10px;

  border-radius: 999px;

  background: rgba(37,99,235,.10);

  color: var(--primary);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 15px;
}

/* =========================================================
   MAIN HEADING
========================================================= */
/* =========================================================
   MAIN HEADING
========================================================= */

.hero-left h1 {

  font-size: clamp(42px, 6vw, 68px);

  line-height: 1.05;

  font-weight: 800;

  color: var(--primary);

  margin-bottom: 12px;

  max-width: 900px;

  white-space: nowrap;
}

/* =========================================================
   TAGLINE
========================================================= */

.hero-left h2 {

  font-size: clamp(22px, 3vw, 30px);

  font-weight: 700;

  color: var(--text);

  margin-bottom: 8px;
}

/* =========================================================
   SUBTITLE
========================================================= */

.hero-left h3 {

  font-size: 18px;

  font-weight: 600;

  color: var(--accent);

  letter-spacing: 1px;

  margin-bottom: 18px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.hero-left p {

  max-width: 650px;

  color: var(--text-light);

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 25px;
}

/* =========================================================
   FEATURES GRID
========================================================= */

.hero-features {

  display: grid;

  grid-template-columns: repeat(2,1fr);

  gap: 14px;

  margin-bottom: 30px;
}

/* =========================================================
   FEATURE CARD
========================================================= */

.hero-feature {

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 18px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.hero-feature:hover {

  transform: translateY(-6px);

  box-shadow: var(--shadow-md);
}

.hero-feature i {

  color: var(--primary);

  font-size: 20px;
}

.hero-feature span {

  font-size: 14px;

  font-weight: 600;

  color: var(--text);
}

/* =========================================================
   ONLINE RECOVERY BOX
========================================================= */

.online-recovery-box {

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 22px;

  border-radius: var(--radius-lg);

  background: linear-gradient(
    135deg,
    #2563eb,
    #3b82f6,
    #38bdf8
  );

  color: white;

  margin-bottom: 35px;

  box-shadow:
  0 15px 40px rgba(37,99,235,.25);

  transition: var(--transition);

  overflow: hidden;

  position: relative;
}

.online-recovery-box:hover {

  transform: translateY(-6px);
}

.online-icon {

  width: 60px;

  height: 60px;

  min-width: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,.15);

  backdrop-filter: blur(10px);
}

.online-icon i {

  color: white;

  font-size: 24px;
}

.online-recovery-box h4 {

  font-size: 18px;

  margin-bottom: 5px;
}

.online-recovery-box p {

  margin: 0;

  color: rgba(255,255,255,.85);

  font-size: 13px;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {

  display: flex;

  gap: 16px;

  flex-wrap: wrap;
}

/* PRIMARY BUTTON */

.btn-primary {

  padding: 15px 28px;

  border-radius: var(--radius-md);

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );

  color: white;

  font-weight: 600;

  box-shadow: var(--shadow-md);

  transition: var(--transition);
}

.btn-primary:hover {

  transform: translateY(-4px);
}

/* OUTLINE BUTTON */

.btn-outline {

  padding: 15px 28px;

  border-radius: var(--radius-md);

  border: 2px solid var(--primary);

  color: var(--primary);

  font-weight: 600;

  transition: var(--transition);
}

.btn-outline:hover {

  background: var(--primary);

  color: white;
}

/* =========================================================
   HERO IMAGE
========================================================= */

.hero-right {

  flex: 1;

  display: flex;

  justify-content: center;

  align-items: center;
}

.hero-right img {

  width: 100%;

  max-width: 820px;

  height: auto;

  animation: heroFloat 5s ease-in-out infinite;
}

/* =========================================================
   FLOATING ANIMATION
========================================================= */

@keyframes heroFloat {

  0% {

    transform: translateY(0px);
  }

  50% {

    transform: translateY(-15px);
  }

  100% {

    transform: translateY(0px);
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px) {

  .hero {

    flex-direction: column;

    text-align: center;

    padding-top: 140px;
  }

  .hero-left p {

    margin-left: auto;

    margin-right: auto;
  }

  .hero-features {

    grid-template-columns: 1fr;
  }

  .hero-buttons {

    justify-content: center;
  }
}

@media (max-width:768px) {

  .hero {

    gap: 40px;
  }

  .hero-left h1 {

    font-size: 40px;
  }

  .hero-left h2 {

    font-size: 24px;
  }

  .hero-left h3 {

    font-size: 16px;
  }

  .hero-left p {

    font-size: 15px;
  }

  .online-recovery-box {

    padding: 18px;
  }
}


/* =========================================================
   SECTION 4
   ABOUT US
========================================================= */

.about-section {

  padding: 120px 8%;

  background: var(--bg);
}

/* =========================================================
   CONTAINER
========================================================= */

.about-container {

  max-width: 1400px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 80px;
}

/* =========================================================
   LEFT IMAGE
========================================================= */

.about-image {

  flex: 1;

  display: flex;

  justify-content: center;

  align-items: center;
}

.about-image img {

  width: 100%;

  max-width: 580px;

  height: auto;

  transition: var(--transition);
}

.about-image img:hover {

  transform: translateY(-8px);
}

/* =========================================================
   CONTENT
========================================================= */

.about-content {

  flex: 1;
}

/* =========================================================
   TAG
========================================================= */

.about-tag {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 12px 22px;

  border-radius: 999px;

  background: rgba(37,99,235,.10);

  color: var(--primary);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 24px;
}

/* =========================================================
   TITLE
========================================================= */

.about-content h2 {

  font-size: clamp(34px,4vw,52px);

  line-height: 1.25;

  font-weight: 800;

  color: var(--text);

  margin-bottom: 24px;
}

.about-content h2 span {

  color: var(--primary);
}

/* =========================================================
   DESCRIPTION
========================================================= */

.about-content p {

  color: var(--text-light);

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 18px;
}

/* =========================================================
   FEATURES GRID
========================================================= */

.about-features {

  display: grid;

  grid-template-columns: repeat(2,1fr);

  gap: 20px;

  margin-top: 35px;
}

/* =========================================================
   FEATURE CARD
========================================================= */

.feature-box {

  display: flex;

  align-items: flex-start;

  gap: 16px;

  padding: 22px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.feature-box:hover {

  transform: translateY(-8px);

  box-shadow: var(--shadow-md);
}

/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {

  width: 54px;

  height: 54px;

  min-width: 54px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background: rgba(37,99,235,.10);

  color: var(--primary);

  font-size: 22px;
}

/* =========================================================
   FEATURE TEXT
========================================================= */

.feature-box h4 {

  font-size: 17px;

  color: var(--text);

  margin-bottom: 8px;

  font-weight: 700;
}

.feature-box p {

  margin: 0;

  font-size: 14px;

  line-height: 1.8;

  color: var(--text-light);
}

/* =========================================================
   STATS AREA
========================================================= */

/* =========================================================
   PREMIUM ABOUT STATS
========================================================= */

.about-stats {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  margin-top: 40px;
}

.stat-card {

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 28px 20px;

  text-align: center;

  box-shadow: var(--shadow-sm);

  transition: all .35s ease;

  position: relative;

  overflow: hidden;
}

.stat-card::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

  background: linear-gradient(
    90deg,
    var(--primary),
    #60a5fa
  );
}

.stat-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(37,99,235,.15);
}

.stat-number {

  font-size: 44px;

  font-weight: 800;

  line-height: 1;

  margin-bottom: 12px;

  background: linear-gradient(
    135deg,
    var(--primary),
    #60a5fa
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.stat-card p {

  margin: 0;

  color: var(--text-light);

  font-size: 12px;

  font-weight: 500;
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px) {

  .about-container {

    flex-direction: column;

    text-align: center;
  }

  .about-content {

    width: 100%;
  }

  .about-features {

    grid-template-columns: 1fr;
  }

  .feature-box {

    text-align: left;
  }
}

@media (max-width:768px) {

  .about-section {

    padding: 90px 5%;
  }

  .about-content h2 {

    font-size: 32px;
  }

  .about-content p {

    font-size: 15px;
  }

  .about-stats {

  grid-template-columns: 1fr;
}
}
@media (max-width: 900px) {

  .about-stats {

    grid-template-columns: repeat(2,1fr);
  }

}

@media (max-width: 768px) {

  .about-stats {

    grid-template-columns: 1fr;
  }

}
/* =========================================================
   GOOGLE REVIEWS SECTION
========================================================= */

.reviews-section{
  padding:120px 5%;
  background:
  linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%
  );
  overflow:hidden;
}

.reviews-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px;
}

.google-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 22px;

  background:#eaf2ff;

  color:#2563eb;

  border-radius:50px;

  font-weight:600;

  font-size:14px;
}

.google-badge i{
  color:#4285f4;
}

.reviews-header h2{

  font-size:56px;

  font-weight:800;

  margin:20px 0 15px;

  color:#0f172a;
}

.reviews-header p{

  color:#64748b;

  font-size:18px;

  line-height:1.8;
}

.all-reviews-btn{

  display:inline-block;

  margin-top:25px;

  padding:15px 32px;

  border-radius:50px;

  text-decoration:none;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  );

  color:#fff;

  font-weight:600;

  transition:.3s;
}

.all-reviews-btn:hover{

  transform:translateY(-3px);

  box-shadow:
  0 15px 35px
  rgba(37,99,235,.25);
}

/* =========================================================
   SLIDER
========================================================= */

.slider-wrapper{

  position:relative;

  display:flex;

  align-items:center;

  gap:20px;
}

.reviews-track{

  display:flex;

  gap:25px;

  overflow-x:auto;

  scroll-behavior:smooth;

  scrollbar-width:none;

  width:100%;
}

.reviews-track::-webkit-scrollbar{
  display:none;
}

/* =========================================================
   NAV BUTTONS
========================================================= */

.slider-btn{

  width:60px;

  height:60px;

  border:none;

  border-radius:50%;

  background:#fff;

  color:#2563eb;

  cursor:pointer;

  flex-shrink:0;

  box-shadow:
  0 10px 25px
  rgba(0,0,0,.08);

  transition:.3s;
}

.slider-btn:hover{

  background:#2563eb;

  color:#fff;

  transform:translateY(-3px);
}

/* =========================================================
   REVIEW CARD
========================================================= */

.review-card{

  min-width:380px;

  max-width:380px;

  background:#fff;

  border-radius:24px;

  padding:30px;

  box-shadow:
  0 15px 35px
  rgba(0,0,0,.08);

  border:1px solid #edf2f7;

  cursor:pointer;

  transition:.35s;

  flex-shrink:0;
}

.review-card:hover{

  transform:
  translateY(-10px);

  box-shadow:
  0 25px 50px
  rgba(37,99,235,.15);
}

/* =========================================================
   REVIEW TOP
========================================================= */

.review-top{

  display:flex;

  align-items:center;

  gap:15px;

  margin-bottom:20px;
}

.avatar{

  width:60px;

  height:60px;

  border-radius:50%;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  );

  color:#fff;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:18px;

  font-weight:700;

  flex-shrink:0;
}

.review-top h4{

  margin:0;

  font-size:20px;

  font-weight:700;

  color:#0f172a;
}

.review-top span{

  color:#64748b;

  font-size:14px;
}

/* =========================================================
   STARS
========================================================= */

.stars{

  color:#fbbf24;

  font-size:18px;

  margin-bottom:18px;

  letter-spacing:2px;
}

/* =========================================================
   REVIEW TEXT
========================================================= */

.review-card p{

  color:#64748b;

  line-height:1.8;

  font-size:16px;

  min-height:120px;
}

/* =========================================================
   READ MORE
========================================================= */

.read-more{

  display:inline-flex;

  align-items:center;

  gap:8px;

  margin-top:15px;

  text-decoration:none;

  color:#2563eb;

  font-weight:600;

  transition:.3s;
}

.read-more:hover{

  gap:12px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

  .reviews-header h2{

    font-size:42px;
  }

  .review-card{

    min-width:320px;

    max-width:320px;
  }

  .slider-btn{

    display:none;
  }
}

@media(max-width:768px){

  .reviews-section{

    padding:90px 5%;
  }

  .reviews-header h2{

    font-size:34px;
  }

  .reviews-header p{

    font-size:16px;
  }

  .review-card{

    min-width:280px;

    max-width:280px;

    padding:25px;
  }

  .review-card p{

    min-height:auto;
  }
}
/* =========================================================
   SECTION 5
   SERVICES
========================================================= */

.services-section {

  padding: 120px 8%;

  background: var(--bg);
}

/* =========================================================
   HEADER
========================================================= */

.services-header {

  max-width: 850px;

  margin: 0 auto 70px;

  text-align: center;
}

.services-tag {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 12px 22px;

  border-radius: 999px;

  background: rgba(37,99,235,.10);

  color: var(--primary);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 22px;
}

.services-header h2 {

  font-size: clamp(34px,4vw,52px);

  line-height: 1.2;

  font-weight: 800;

  color: var(--text);

  margin-bottom: 18px;
}

.services-header h2 span {

  color: var(--primary);
}

.services-header p {

  color: var(--text-light);

  font-size: 16px;

  line-height: 1.9;
}

/* =========================================================
   GRID
========================================================= */

.services-container {

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 30px;
}

/* =========================================================
   CARD
========================================================= */

.service-card {

  position: relative;

  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 28px;

  padding: 35px 28px;

  text-align: center;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

/* TOP GLOW */

.service-card::before {

  content: "";

  position: absolute;

  top: -120px;
  left: 50%;

  width: 220px;
  height: 220px;

  background: radial-gradient(
    rgba(59,130,246,.18),
    transparent 70%
  );

  transform: translateX(-50%);

  opacity: 0;

  transition: .45s ease;
}

/* HOVER */

.service-card:hover {

  transform: translateY(-10px);

  box-shadow: var(--shadow-lg);

  border-color: rgba(59,130,246,.35);
}

.service-card:hover::before {

  opacity: 1;
}
.service-image {

  width: 90px;

  height: 90px;

  margin: 0 auto 20px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.service-image img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: 0.4s ease;
}

.service-card:hover .service-image img {

  transform: scale(1.1);
}
/* =========================================================
   ICON
========================================================= */

.service-icon {

  width: 90px;

  height: 90px;

  margin: 0 auto 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(37,99,235,.12),
    rgba(56,189,248,.12)
  );

  color: var(--primary);

  font-size: 42px;

  transition: var(--transition);
}

.service-card:hover .service-icon {

  transform: scale(1.1) rotate(5deg);
}

/* =========================================================
   TITLE
========================================================= */

.service-card h3 {

  font-size: 22px;

  font-weight: 700;

  color: var(--text);

  margin-bottom: 14px;

  transition: var(--transition);
}

.service-card:hover h3 {

  color: var(--primary);
}

/* =========================================================
   DESCRIPTION
========================================================= */

.service-card p {

  font-size: 15px;

  line-height: 1.9;

  color: var(--text-light);
}

/* =========================================================
   OPTIONAL BUTTON
========================================================= */

.service-card .service-btn {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 22px;

  color: var(--primary);

  font-size: 14px;

  font-weight: 600;

  transition: var(--transition);
}

.service-card .service-btn:hover {

  gap: 14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1200px) {

  .services-container {

    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:768px) {

  .services-section {

    padding: 90px 5%;
  }

  .services-container {

    grid-template-columns: 1fr;
  }

  .services-header h2 {

    font-size: 32px;
  }

  .service-card {

    padding: 30px 24px;
  }

  .service-icon {

    width: 80px;
    height: 80px;

    font-size: 36px;
  }
}

/* =========================================================
   SECTION 6
   OUR PROCESS
========================================================= */
/* =========================================================
   MODERN PROCESS SECTION
========================================================= */

.process-section {

  padding: 100px 0;

  background: var(--bg);
}

.process-flow {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  margin-top: 70px;

  flex-wrap: wrap;
}

.process-card {

  width: 260px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 35px 25px;

  text-align: center;

  position: relative;

  transition: all .35s ease;

  box-shadow: var(--shadow-sm);
}

.process-card:hover {

  transform: translateY(-12px);

  box-shadow: var(--shadow-lg);
}

.process-icon {

  width: 80px;

  height: 80px;

  margin: 0 auto 20px;

  border-radius: 50%;

  background: linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
  );

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 28px;

  box-shadow: 0 12px 30px rgba(37,99,235,.25);
}

.process-number {

  color: var(--primary);

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 10px;
}

.process-card h3 {

  margin-bottom: 15px;

  font-size: 24px;
}

.process-card p {

  color: var(--text-light);

  line-height: 1.7;
}

.process-arrow {

  font-size: 28px;

  color: var(--primary);

  animation: processArrow 1.5s infinite;
}

@keyframes processArrow {

  0% {

    transform: translateX(0);
  }

  50% {

    transform: translateX(8px);
  }

  100% {

    transform: translateX(0);
  }
}
@media (max-width: 992px) {

  .process-flow {

    flex-direction: column;
  }

  .process-arrow {

    transform: rotate(90deg);
  }

  .process-card {

    width: 100%;
    max-width: 420px;
  }

}
/* =========================================================
   SECTION 7
   WHY CHOOSE US
========================================================= */

.why-section {

  padding: 120px 8%;

  background: var(--bg);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 80px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.why-content {

  flex: 1;
}

/* TAG */

.why-tag {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 12px 22px;

  border-radius: 999px;

  background: rgba(37,99,235,.10);

  color: var(--primary);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 22px;
}

/* TITLE */

.why-content h2 {

  font-size: clamp(34px,4vw,52px);

  line-height: 1.2;

  font-weight: 800;

  color: var(--text);

  margin-bottom: 18px;
}

.why-content h2 span {

  color: var(--primary);
}

/* DESCRIPTION */

.why-content > p {

  color: var(--text-light);

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 35px;
}

/* =========================================================
   FEATURE LIST
========================================================= */

.why-features {

  display: flex;

  flex-direction: column;

  gap: 18px;
}

/* FEATURE CARD */

.why-box {

  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 22px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.why-box:hover {

  transform: translateY(-6px);

  box-shadow: var(--shadow-md);
}

/* ICON */

.why-icon {

  width: 60px;

  height: 60px;

  min-width: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(37,99,235,.12),
    rgba(56,189,248,.12)
  );

  color: var(--primary);

  font-size: 26px;
}

/* TEXT */

.why-box h3 {

  font-size: 18px;

  font-weight: 700;

  color: var(--text);

  margin-bottom: 8px;
}

.why-box p {

  margin: 0;

  color: var(--text-light);

  font-size: 14px;

  line-height: 1.8;
}

/* =========================================================
   RIGHT IMAGE
========================================================= */

.why-image {

  flex: 1;

  display: flex;

  justify-content: center;

  align-items: center;
}

.why-image img {

  width: 100%;

  max-width: 600px;

  border-radius: 28px;

  box-shadow: var(--shadow-lg);

  transition: var(--transition);
}

.why-image img:hover {

  transform: translateY(-10px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px) {

  .why-section {

    flex-direction: column-reverse;

    text-align: center;
  }

  .why-features {

    width: 100%;
  }

  .why-box {

    text-align: left;
  }
}

@media (max-width:768px) {

  .why-section {

    padding: 90px 5%;
  }

  .why-content h2 {

    font-size: 32px;
  }

  .why-box {

    padding: 20px;
  }

  .why-icon {

    width: 52px;
    height: 52px;

    min-width: 52px;

    font-size: 22px;
  }
}


/* =========================================================
   SECTION 8
   SUPPORTED BRANDS
========================================================= */

.brands-section {

  padding: 120px 8%;

  background: var(--bg);

  text-align: center;
}

/* =========================================================
   TAG
========================================================= */

.brands-tag {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 12px 22px;

  border-radius: 999px;

  background: rgba(239,68,68,.10);

  color: #ef4444;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 22px;
}

/* =========================================================
   HEADING
========================================================= */

.brands-section h2 {

  font-size: clamp(34px,4vw,52px);

  line-height: 1.2;

  font-weight: 800;

  color: var(--text);

  margin-bottom: 20px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.brands-section > p {

  max-width: 900px;

  margin: 0 auto 70px;

  color: var(--text-light);

  font-size: 17px;

  line-height: 1.9;
}

/* =========================================================
   LOGO GRID
========================================================= */

.brands-container {

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(6,1fr);

  gap: 24px;
}

/* =========================================================
   BRAND CARD
========================================================= */

.brand-card {

  position: relative;

  overflow: hidden;

  height: 130px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 0px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

/* PREMIUM GLOW */

.brand-card::before {

  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(59,130,246,.12),
    transparent 70%
  );

  opacity: 0;

  transition: .4s ease;
}

/* HOVER */

.brand-card:hover {

  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);

  border-color: rgba(59,130,246,.30);
}

.brand-card:hover::before {

  opacity: 1;
}

/* =========================================================
   LOGO IMAGE
========================================================= */

.brand-card img {

  max-width: 140px;

  max-height: 65px;

  object-fit: contain;

  transition: .4s ease;
}

.brand-card:hover img {

  transform: scale(1.08);

  filter: saturate(120%);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1200px) {

  .brands-container {

    grid-template-columns: repeat(4,1fr);
  }
}

@media (max-width:768px) {

  .brands-section {

    padding: 90px 5%;
  }

  .brands-container {

    grid-template-columns: repeat(2,1fr);

    gap: 18px;
  }

  .brands-section h2 {

    font-size: 32px;
  }

  .brands-section > p {

    font-size: 15px;
  }

  .brand-card {

    height: 110px;
  }

  .brand-card img {

    max-width: 110px;
  }
}

@media (max-width:480px) {

  .brands-container {

    grid-template-columns: repeat(2,1fr);
  }
}
/* =========================================================
   SECTION 9
   CONTACT US
========================================================= */

.contact-section {

  padding: 120px 8%;

  background: var(--bg);

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 70px;
}

/* =========================================================
   LEFT SIDE
========================================================= */

.contact-info {

  flex: 1;
}

.contact-tag {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 12px 22px;

  border-radius: 999px;

  background: rgba(37,99,235,.10);

  color: var(--primary);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 22px;
}

/* =========================================================
   TITLE
========================================================= */

.contact-info h2 {

  font-size: clamp(34px,4vw,52px);

  line-height: 1.2;

  font-weight: 800;

  color: var(--text);

  margin-bottom: 20px;
}

.contact-info h2 span {

  color: var(--primary);
}

/* =========================================================
   DESCRIPTION
========================================================= */

.contact-info > p {

  color: var(--text-light);

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 35px;
}

/* =========================================================
   CONTACT CARDS
========================================================= */

.contact-box {

  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 24px;

  margin-bottom: 18px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.contact-box:hover {

  transform: translateY(-6px);

  box-shadow: var(--shadow-md);
}

/* =========================================================
   ICON
========================================================= */

.contact-icon {

  width: 60px;

  height: 60px;

  min-width: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(37,99,235,.12),
    rgba(56,189,248,.12)
  );

  color: var(--primary);

  font-size: 26px;
}

/* =========================================================
   TEXT
========================================================= */

.contact-box h3 {

  font-size: 18px;

  font-weight: 700;

  color: var(--text);

  margin-bottom: 8px;
}

.contact-box p {

  margin: 0;

  color: var(--text-light);

  font-size: 14px;

  line-height: 1.8;
}

/* =========================================================
   FORM CONTAINER
========================================================= */

.contact-form-box {

  flex: 1;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 30px;

  padding: 40px;

  box-shadow: var(--shadow-md);
}

/* =========================================================
   FORM TITLE
========================================================= */

.contact-form h2 {

  font-size: 32px;

  font-weight: 800;

  color: var(--text);

  margin-bottom: 25px;
}

/* =========================================================
   INPUT WRAPPER
========================================================= */

.input-box {

  margin-bottom: 18px;
}

/* =========================================================
   INPUTS
========================================================= */

.input-box input,
.input-box select,
.input-box textarea {

  width: 100%;

  padding: 16px 18px;

  border: 1px solid var(--border);

  border-radius: 16px;

  background: var(--bg);

  color: var(--text);

  font-size: 15px;

  outline: none;

  transition: var(--transition);
}

.input-box textarea {

  min-height: 150px;

  resize: vertical;
}

/* =========================================================
   FOCUS EFFECT
========================================================= */

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {

  border-color: var(--primary);

  box-shadow:
  0 0 0 4px rgba(37,99,235,.12);
}

/* =========================================================
   PLACEHOLDER
========================================================= */

.input-box input::placeholder,
.input-box textarea::placeholder {

  color: var(--text-light);
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.submit-btn {

  width: 100%;

  border: none;

  cursor: pointer;

  padding: 16px;

  border-radius: 16px;

  font-size: 16px;

  font-weight: 700;

  color: #fff;

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );

  box-shadow: var(--shadow-md);

  transition: var(--transition);
}

.submit-btn:hover {

  transform: translateY(-4px);
}

.submit-btn:active {

  transform: scale(.98);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px) {

  .contact-section {

    flex-direction: column;
  }

  .contact-info,
  .contact-form-box {

    width: 100%;
  }
}

@media (max-width:768px) {

  .contact-section {

    padding: 90px 5%;
  }

  .contact-form-box {

    padding: 28px;
  }

  .contact-info h2 {

    font-size: 32px;
  }

  .contact-form h2 {

    font-size: 28px;
  }

  .contact-box {

    padding: 20px;
  }

  .contact-icon {

    width: 52px;
    height: 52px;

    min-width: 52px;

    font-size: 22px;
  }
}

@media (max-width:480px) {

  .contact-box {

    flex-direction: column;

    text-align: center;
  }

  .contact-icon {

    margin: auto;
  }
}

/* =========================================================
   SECTION 10
   MODERN FOOTER
========================================================= */

.modern-footer {

  position: relative;

  margin-top: 120px;

  padding: 90px 8% 30px;

  background: var(--surface);

  border-top: 1px solid var(--border);

  overflow: hidden;
}

/* =========================================================
   FOOTER TOP
========================================================= */

.footer-top {

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1.3fr;

  gap: 50px;
}

/* =========================================================
   BRAND SECTION
========================================================= */

.footer-logo {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 25px;
}

.footer-logo img {

  width: 85px;

  height: 85px;

  object-fit: contain;
}

/* =========================================================
   LOGO TEXT
========================================================= */

.footer-logo-text h2 {

  font-size: 40px;

  font-weight: 800;

  line-height: 1;

  color: var(--primary);
}

.footer-logo-text p {

  margin-top: 6px;

  color: var(--text);

  font-size: 15px;

  font-weight: 600;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.footer-desc {

  color: var(--text-light);

  line-height: 1.9;

  max-width: 380px;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-socials {

  display: flex;

  gap: 14px;

  margin-top: 28px;
}

.footer-socials a {

  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(37,99,235,.08);

  transition: var(--transition);
}

.footer-socials a:hover {

  transform: translateY(-6px);

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );

  box-shadow: var(--shadow-md);
}

.footer-socials a:hover img {

  filter: brightness(0) invert(1);
}

/* =========================================================
   SOCIAL IMAGE
========================================================= */

.social-icon {

  width: 24px;

  height: 24px;

  object-fit: contain;
}

/* =========================================================
   COLUMN TITLES
========================================================= */

.footer-links-box h3,
.footer-contact h3 {

  font-size: 22px;

  font-weight: 700;

  color: var(--text);

  margin-bottom: 24px;
}

/* =========================================================
   LINKS
========================================================= */

.footer-links-box ul {

  list-style: none;
}

.footer-links-box ul li {

  margin-bottom: 14px;
}

.footer-links-box ul li a {

  color: var(--text-light);

  transition: var(--transition);
}

.footer-links-box ul li a:hover {

  color: var(--primary);

  padding-left: 8px;
}

/* =========================================================
   CONTACT ITEMS
========================================================= */

.contact-item {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 18px;
}

.contact-item span {

  font-size: 18px;
}

.contact-item p {

  margin: 0;

  color: var(--text-light);

  line-height: 1.8;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

  max-width: 1400px;

  margin: 60px auto 0;

  padding-top: 25px;

  border-top: 1px solid var(--border);

  text-align: center;
}

.footer-bottom p {

  color: var(--text-light);

  font-size: 14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px) {

  .footer-top {

    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:768px) {

  .modern-footer {

    padding: 80px 5% 25px;
  }

  .footer-top {

    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer-logo {

    justify-content: center;

    text-align: center;
  }

  .footer-desc {

    max-width: 100%;

    text-align: center;
  }

  .footer-socials {

    justify-content: center;
  }

  .footer-links-box,
  .footer-contact {

    text-align: center;
  }

  .contact-item {

    justify-content: center;
  }

  .footer-logo-text h2 {

    font-size: 34px;
  }
}

/* =========================================================
   SECTION 11
   GLOBAL ANIMATIONS
========================================================= */

/* =========================================================
   PAGE LOAD
========================================================= */

body {

  opacity: 0;

  transition:
    opacity .6s ease,
    background .3s ease,
    color .3s ease;
}

body.loaded {

  opacity: 1;
}

/* =========================================================
   FADE UP
========================================================= */

@keyframes fadeUp {

  from {

    opacity: 0;

    transform: translateY(40px);
  }

  to {

    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================================================
   FLOAT ANIMATION
========================================================= */

@keyframes floatY {

  0% {

    transform: translateY(0);
  }

  50% {

    transform: translateY(-12px);
  }

  100% {

    transform: translateY(0);
  }
}

/* =========================================================
   GLOW PULSE
========================================================= */

@keyframes glowPulse {

  0% {

    box-shadow:
      0 0 0 rgba(37,99,235,.15);
  }

  50% {

    box-shadow:
      0 0 25px rgba(37,99,235,.35);
  }

  100% {

    box-shadow:
      0 0 0 rgba(37,99,235,.15);
  }
}

/* =========================================================
   GLOBAL CARD HOVER
========================================================= */

.service-card,
.process-card,
.feature-box,
.why-box,
.contact-box,
.brand-card,
.stat-box {

  will-change: transform;
}

/* =========================================================
   RIPPLE EFFECT
========================================================= */

.btn,
.nav-btn,
.submit-btn {

  position: relative;

  overflow: hidden;
}

.ripple {

  position: absolute;

  border-radius: 50%;

  transform: scale(0);

  animation: rippleAnimation .6s linear;

  background: rgba(255,255,255,.45);

  pointer-events: none;
}

@keyframes rippleAnimation {

  to {

    transform: scale(4);

    opacity: 0;
  }
}

/* =========================================================
   BUTTON HOVER SYSTEM
========================================================= */

.btn,
.nav-btn,
.submit-btn {

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.btn:hover,
.nav-btn:hover,
.submit-btn:hover {

  transform: translateY(-4px);
}

/* =========================================================
   IMAGE HOVER SYSTEM
========================================================= */

.hero-right img,
.about-image img,
.why-image img {

  transition:
    transform .4s ease;
}

.hero-right img:hover,
.about-image img:hover,
.why-image img:hover {

  transform: translateY(-10px);
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

  width: 10px;
}

::-webkit-scrollbar-track {

  background: var(--bg);
}

::-webkit-scrollbar-thumb {

  background: linear-gradient(
    180deg,
    var(--primary),
    var(--accent)
  );

  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {

  opacity: .85;
}

/* =========================================================
   SELECTION
========================================================= */

::selection {

  background: var(--primary);

  color: white;
}

/* =========================================================
   SECTION SPACING CONSISTENCY
========================================================= */

.hero,
.about-section,
.services-section,
.process-section,
.why-section,
.brands-section,
.contact-section {

  position: relative;
}

/* =========================================================
   GLOBAL CONTAINER SAFETY
========================================================= */

img {

  max-width: 100%;

  height: auto;
}

section {

  overflow: hidden;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {

  outline: none;
}

/* =========================================================
   FINAL RESPONSIVE CLEANUP
========================================================= */

@media (max-width:1200px) {

  .hero,
  .about-container,
  .why-section {

    gap: 50px;
  }
}

@media (max-width:992px) {

  .hero,
  .about-container,
  .why-section,
  .contact-section {

    flex-direction: column;
  }

  .hero,
  .about-container,
  .why-section {

    text-align: center;
  }
}

@media (max-width:768px) {

  .hero,
  .about-section,
  .services-section,
  .process-section,
  .why-section,
  .brands-section,
  .contact-section {

    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-left h1 {

    font-size: 38px;
  }

  .services-header h2,
  .process-header h2,
  .why-content h2,
  .contact-info h2,
  .about-content h2,
  .brands-section h2 {

    font-size: 32px;
  }

  .footer-logo {

    flex-direction: column;
  }
}

@media (max-width:480px) {

  .hero-left h1 {

    font-size: 32px;
  }

  .hero-buttons {

    flex-direction: column;
  }

  .btn,
  .btn-primary,
  .btn-outline {

    width: 100%;

    text-align: center;
  }

  .contact-form-box {

    padding: 22px;
  }
}

/* =========================================================
   SECTION 12
   SERVICE PAGES SYSTEM
========================================================= */

/* =========================================================
   SERVICE HERO
========================================================= */

.service-hero {

  min-height: 90vh;

  width: min(1400px, 90%);

  margin: auto;

  padding-top: 140px;

  padding-bottom: 80px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 70px;
}

.service-hero-content {

  flex: 1;
}

.service-tag {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 22px;

  border-radius: 999px;

  background: rgba(37,99,235,.10);

  color: var(--primary);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 24px;
}

.service-hero-content h1 {

  font-size: clamp(42px, 5vw, 68px);

  line-height: 1.1;

  font-weight: 800;

  color: var(--primary);

  margin-bottom: 18px;
}

.service-hero-content p {

  font-size: 16px;

  line-height: 1.9;

  color: var(--text-light);

  max-width: 650px;

  margin-bottom: 30px;
}

.service-hero-image {

  flex: 1;

  display: flex;

  justify-content: center;
}

.service-hero-image img {

  width: 100%;

  max-width: 550px;

  animation: floatY 5s ease-in-out infinite;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {

  max-width: 900px;

  margin: 0 auto 60px;

  text-align: center;
}

.section-header h2 {

  font-size: clamp(34px,4vw,52px);

  font-weight: 800;

  color: var(--text);

  margin-bottom: 15px;
}

.section-header p {

  color: var(--text-light);

  line-height: 1.9;
}

/* =========================================================
   ABOUT SERVICE
========================================================= */

.about-service {

  padding: 120px 8%;
}

.about-service-grid {

  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 25px;

  max-width: 1200px;

  margin: auto;
}

.service-info-card {

  padding: 35px;

  text-align: center;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.service-info-card:hover {

  transform: translateY(-8px);

  box-shadow: var(--shadow-md);
}

.service-info-card i {

  font-size: 42px;

  color: var(--primary);

  margin-bottom: 15px;
}

/* =========================================================
   PROBLEM SECTION
========================================================= */

.problem-section {

  padding: 120px 8%;
}

.problem-grid {

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 30px;
}

.problem-card {

  padding: 30px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 24px;

  text-align: center;

  transition: var(--transition);
}

.problem-card:hover {

  transform: translateY(-8px);

  box-shadow: var(--shadow-md);
}

.problem-card i {

  font-size: 40px;

  color: var(--primary);

  margin-bottom: 15px;
}

/* =========================================================
   MODERN PROCESS SECTION
========================================================= */
/* ==========================================
   PROCESS HEADER
========================================== */

.process-header{

  text-align:center;

  max-width:800px;

  margin:0 auto 70px;
}

.section-badge{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:12px 22px;

  border-radius:50px;

  background:rgba(37,99,235,.08);

  color:var(--primary);

  font-size:.85rem;

  font-weight:700;

  letter-spacing:1px;

  text-transform:uppercase;
}

.section-badge i{

  font-size:14px;
}

.process-header h2{

  font-size:clamp(2.2rem,5vw,3.8rem);

  font-weight:800;

  margin:20px 0 15px;

  line-height:1.1;
}

.process-header h2 span{

  display:block;

  background:linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
  );

  background-clip:text;
  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

.process-header p{

  font-size:1.1rem;

  color:var(--text-light);

  line-height:1.8;
}
.process-section {

  padding: 100px 0;

  background: var(--bg);
}

.process-flow {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  margin-top: 70px;

  flex-wrap: wrap;
}

.process-card {

  width: 260px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 35px 25px;

  text-align: center;

  position: relative;

  transition: all .35s ease;

  box-shadow: var(--shadow-sm);
}

.process-card:hover {

  transform: translateY(-12px);

  box-shadow: var(--shadow-lg);
}

.process-icon {

  width: 80px;

  height: 80px;

  margin: 0 auto 20px;

  border-radius: 50%;

  background: linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
  );

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 28px;

  box-shadow: 0 12px 30px rgba(37,99,235,.25);
}

.process-number {

  color: var(--primary);

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 10px;
}

.process-card h3 {

  margin-bottom: 15px;

  font-size: 24px;
}

.process-card p {

  color: var(--text-light);

  line-height: 1.7;
}

.process-arrow {

  font-size: 28px;

  color: var(--primary);

  animation: processArrow 1.5s infinite;
}

@keyframes processArrow {

  0% {

    transform: translateX(0);
  }

  50% {

    transform: translateX(8px);
  }

  100% {

    transform: translateX(0);
  }
}
@media (max-width: 992px) {

  .process-flow {

    flex-direction: column;
  }

  .process-arrow {

    transform: rotate(90deg);
  }

  .process-card {

    width: 100%;
    max-width: 420px;
  }

}
/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {

  padding: 120px 8%;
}

.faq-container {

  max-width: 1000px;

  margin: auto;
}

.faq-item {

  padding: 25px;

  margin-bottom: 20px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 20px;
}

.faq-item h3 {

  margin-bottom: 12px;

  color: var(--text);
}

.faq-item p {

  color: var(--text-light);

  line-height: 1.8;
}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {

  padding: 120px 8%;

  text-align: center;
}

.cta-section h2 {

  font-size: clamp(34px,4vw,52px);

  margin-bottom: 15px;

  color: var(--text);
}

.cta-section p {

  color: var(--text-light);

  margin-bottom: 30px;
}

/* =========================================================
   SERVICE PAGE RESPONSIVE
========================================================= */

@media (max-width:1100px){

  .service-hero{

    flex-direction: column;

    text-align: center;
  }

  .about-service-grid{

    grid-template-columns: 1fr;
  }

  .problem-grid{

    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:768px){

  .problem-grid{

    grid-template-columns: 1fr;
  }

  .service-hero{

    padding-top: 120px;
  }

  .service-hero-content h1{

    font-size: 38px;
  }
}
/* =================================
   REDUCE SECTION GAPS
================================= */

.hero{
    min-height:auto !important;
    padding-top:120px !important;
    padding-bottom:40px !important;
}

.about-section,
.services-section,
.process-section,
.why-section,
.brands-section,
.contact-section,
.reviews-section{
    padding-top:60px !important;
    padding-bottom:60px !important;
}

/* Section headers ke neeche extra gap */

.services-header,
.process-header,
.reviews-header{
    margin-bottom:40px !important;
}

/* About layout gap */

.about-container{
    gap:40px !important;
}

/* Why Us layout gap */

.why-section{
    gap:40px !important;
}

/* Contact layout gap */

.contact-section{
    gap:40px !important;
}

/* Process cards top gap */

.process-flow{
    margin-top:40px !important;
}

/* Reviews top gap */

.reviews-header{
    margin-bottom:30px !important;
}