/* =========================================================
   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: #344050;

  /* 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;
  }
}
/* CTA Button */
.nav-cta {
  margin-left: 15px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.cta-btn i {
  font-size: 14px;
}

/* Mobile */
@media (max-width: 992px) {
  .nav-cta {
    width: 100%;
    margin-top: 15px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================================
   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
========================================================= */

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12); /* Light Green */
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #16a34a; /* Green Text */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.trusted-badge i,
.trusted-badge svg {
    color: #16a34a;
}

/* =========================================================
   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.5;

  margin-bottom: 20px;
}

/* =========================================================
   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: 15px;

  padding: 12px;

  border-radius: var(--radius-lg);

  background: linear-gradient(
    135deg,
    #2563eb,
    #3b82f6,
    #38bdf8
  );

  color: white;

  margin-bottom: 25px;

  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: 24px;

  margin-bottom: 2px;
}

.online-recovery-box p {

  margin: 0;

  color: rgba(255,255,255,.85);

  font-size: 18px;
}

/* =========================================================
   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;
}
@media (min-width: 1600px) {

  .hero,
  .about-container,
  .services-container,
  .brands-container,
  .footer-top,
  .navbar {

    max-width: 1800px !important;

    width: 96% !important;
  }

}

/* =========================================================
   PREMIUM CALLBACK POPUP
   DATACARE STYLE COMPACT DESIGN
========================================================= */

.callback-modal {

  position: fixed;

  inset: 0;

  width: 100%;

  height: 100%;

  background: rgba(15, 23, 42, 0.72);

  backdrop-filter: blur(4px);

  -webkit-backdrop-filter: blur(4px);

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 20px;

  z-index: 99999;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;

}


.callback-modal.active {

  opacity: 1;

  visibility: visible;

}


/* =========================================================
   POPUP WRAPPER
========================================================= */

.callback-wrapper {

  width: min(1080px, 94vw);

  min-height: 560px;

  max-height: 90vh;

  background: #ffffff;

  border-radius: 14px;

  overflow: hidden;

  display: grid;

  grid-template-columns: 48% 52%;

  position: relative;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28);

  transform: scale(0.94) translateY(20px);

  transition: transform 0.35s ease;

}


.callback-modal.active .callback-wrapper {

  transform: scale(1) translateY(0);

}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.callback-close {

  position: absolute;

  top: 18px;

  right: 18px;

  width: 46px;

  height: 46px;

  border: none;

  background: transparent;

  color: #475569;

  font-size: 28px;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  z-index: 20;

  transition:
    transform 0.3s ease,
    color 0.3s ease;

}


.callback-close:hover {

  color: #2563eb;

  transform: rotate(90deg);

}


/* =========================================================
   LEFT IMAGE
========================================================= */

.callback-left {

  position: relative;

  min-height: 560px;

  overflow: hidden;

}


.callback-left img {

  width: 100%;

  height: 100%;

  position: absolute;

  inset: 0;

  object-fit: cover;

  display: block;

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.callback-overlay {

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 40px;

    color: white;
}


.callback-overlay h3 {

  margin: 0;

  font-size: clamp(22px, 2vw, 28px);

  line-height: 1.25;

  font-weight: 600;

  color: #ffffff;

}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.callback-right {

  padding: 64px 52px 46px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: #ffffff;

}


.callback-right h2 {

  margin: 0;

  max-width: 520px;

  font-size: clamp(28px, 3vw, 38px);

  line-height: 1.16;

  font-weight: 700;

  color: #17173f;

}


.callback-right h2 i {

  color: #48adec;

  font-size: 28px;

  margin-right: 10px;

}


.callback-title-line {

  width: 80px;

  height: 3px;

  background: #11c1e4;

  margin: 18px 0 22px;

  border-radius: 999px;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.callback-description {

  margin-bottom: 24px;

  color: #4b4b6a;

}


.callback-description strong {

  display: block;

  font-size: 18px;

  line-height: 1.4;

  color: #3f3f5e;

}


.callback-description p {

  margin: 0;

  font-size: 17px;

  line-height: 1.45;

  color: #4b4b6a;

}


/* =========================================================
   FORM
========================================================= */

#callbackForm {

  display: flex;

  flex-direction: column;

  gap: 12px;

}


/* =========================================================
   FORM FIELDS
========================================================= */

.callback-field {

  width: 100%;

  height: 52px;

  position: relative;

  display: flex;

  align-items: center;

  border: 1px solid #9ca3af;

  border-radius: 10px;

  background: #ffffff;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;

}


.callback-field:focus-within {

  border-color: #2563eb;

  box-shadow:
    0 0 0 3px rgba(37, 99, 235, 0.1);

}


.callback-field > i {

  position: absolute;

  left: 16px;

  color: #303052;

  font-size: 17px;

  pointer-events: none;

  z-index: 2;

}


.callback-field input,
.callback-field select {

  width: 100%;

  height: 100%;

  border: none;

  outline: none;

  background: transparent;

  padding: 0 46px;

  font-family: inherit;

  font-size: 16px;

  color: #17173f;

}


.callback-field input::placeholder {

  color: #303052;

  opacity: 1;

}


.callback-field select {

  cursor: pointer;

  appearance: auto;

}


/* =========================================================
   WHATSAPP NOTE
========================================================= */

.callback-note {

  margin-top: -5px;

  padding-left: 2px;

  color: #238f99;

  font-size: 13px;

  line-height: 1.4;

  font-weight: 600;

  font-style: italic;

}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.callback-submit {

  width: fit-content;

  min-width: 110px;

  border: none;

  border-radius: 7px;

  background: #17173f;

  color: #ffffff;

  padding: 14px 26px;

  font-family: inherit;

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;

}


.callback-submit:hover {

  background: #2563eb;

  transform: translateY(-2px);

  box-shadow:
    0 10px 25px rgba(37, 99, 235, 0.22);

}


/* =========================================================
   DARK THEME
========================================================= */

.dark-theme .callback-wrapper,
.dark-theme .callback-right {

  background: #0f172a;

}


.dark-theme .callback-right h2 {

  color: #f8fafc;

}


.dark-theme .callback-description strong {

  color: #e2e8f0;

}


.dark-theme .callback-description p {

  color: #94a3b8;

}


.dark-theme .callback-field {

  background: #111c31;

  border-color: #334155;

}


.dark-theme .callback-field input,
.dark-theme .callback-field select {

  color: #f8fafc;

}


.dark-theme .callback-field input::placeholder {

  color: #cbd5e1;

}


.dark-theme .callback-field > i {

  color: #cbd5e1;

}


.dark-theme .callback-close {

  color: #cbd5e1;

}


/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .callback-wrapper {

    width: min(620px, 94vw);

    min-height: auto;

    max-height: 92vh;

    grid-template-columns: 1fr;

    overflow-y: auto;

  }


  .callback-left {

    display: none;

  }


  .callback-right {

    padding: 60px 36px 38px;

  }


  .callback-right h2 {

    font-size: 30px;

  }

}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 520px) {

  .callback-modal {

    padding: 12px;

  }


  .callback-wrapper {

    width: 100%;

    border-radius: 14px;

  }


  .callback-right {

    padding: 58px 20px 26px;

  }


  .callback-right h2 {

    font-size: 25px;

  }


  .callback-right h2 i {

    font-size: 21px;

    margin-right: 5px;

  }


  .callback-title-line {

    margin: 14px 0 18px;

  }


  .callback-description {

    margin-bottom: 18px;

  }


  .callback-description strong {

    font-size: 15px;

  }


  .callback-description p {

    font-size: 14px;

  }


  .callback-field {

    height: 50px;

  }


  .callback-field input,
  .callback-field select {

    font-size: 14px;

    padding-left: 44px;

  }


  .callback-note {

    font-size: 11px;

  }


  .callback-submit {

    width: 100%;

  }


  .callback-close {

    top: 10px;

    right: 10px;

    width: 42px;

    height: 42px;

    font-size: 23px;

  }

}
/* =========================================================
   YDR CALLBACK SUCCESS STATE
========================================================= */

.ydr-callback-success {
  display: none;

  width: 100%;
  min-height: 430px;

  padding: 40px 45px;

  box-sizing: border-box;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}


/* =========================================================
   SUCCESS ICON
========================================================= */

.ydr-success-icon {
  width: 86px;
  height: 86px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  margin: 0 auto 22px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #2563eb 0%,
      #38bdf8 100%
    );

  box-shadow:
    0 15px 35px rgba(37, 99, 235, 0.25);

  position: relative;

  animation: ydrSuccessPop 0.5s ease;
}


.ydr-success-icon::before {
  content: "";

  position: absolute;

  width: 108px;
  height: 108px;

  border-radius: 50%;

  border: 1px solid rgba(37, 99, 235, 0.15);
}


.ydr-success-icon::after {
  content: "";

  position: absolute;

  width: 126px;
  height: 126px;

  border-radius: 50%;

  border: 1px solid rgba(56, 189, 248, 0.08);
}


.ydr-success-icon i {
  position: relative;

  z-index: 2;

  font-size: 34px;

  color: #ffffff;
}


/* =========================================================
   SUCCESS BADGE
========================================================= */

.ydr-success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  margin: 8px auto 18px;

  padding: 8px 15px;

  border-radius: 50px;

  background: #ecfdf5;

  color: #15803d;

  font-size: 13px;
  line-height: 1;

  font-weight: 700;
}


.ydr-success-badge span {
  width: 8px;
  height: 8px;

  display: block;

  flex-shrink: 0;

  border-radius: 50%;

  background: #22c55e;

  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.12);
}


/* =========================================================
   SUCCESS TITLE
========================================================= */

.ydr-success-title {
  display: block;

  width: 100%;

  margin: 0 0 12px;

  padding: 0;

  font-size: 34px;
  line-height: 1.2;

  font-weight: 700;

  color: #111827;

  text-align: center;
}


/* =========================================================
   SUCCESS TEXT
========================================================= */

.ydr-success-text {
  display: block;

  width: 100%;
  max-width: 470px;

  margin: 0 auto;

  padding: 0;

  font-size: 16px;
  line-height: 1.7;

  font-weight: 400;

  color: #64748b;

  text-align: center;
}


/* =========================================================
   CALLBACK INFO BOX
========================================================= */

.ydr-success-info {
  width: 100%;
  max-width: 450px;

  display: flex;
  align-items: center;

  gap: 15px;

  margin: 28px auto 0;

  padding: 16px 18px;

  box-sizing: border-box;

  border: 1px solid #dbeafe;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #eff6ff,
      #f0f9ff
    );

  text-align: left;
}


.ydr-success-info-icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 12px;

  background: #ffffff;

  box-shadow:
    0 5px 15px rgba(37, 99, 235, 0.08);
}


.ydr-success-info-icon i {
  font-size: 18px;

  color: #2563eb;
}


.ydr-success-info-content {
  display: flex;
  flex-direction: column;

  gap: 4px;

  min-width: 0;
}


.ydr-success-info-content strong {
  display: block;

  font-size: 15px;
  line-height: 1.4;

  font-weight: 700;

  color: #1e293b;
}


.ydr-success-info-content span {
  display: block;

  font-size: 13px;
  line-height: 1.5;

  font-weight: 400;

  color: #64748b;
}


/* =========================================================
   SUCCESS ANIMATION
========================================================= */

@keyframes ydrSuccessPop {

  0% {
    opacity: 0;
    transform: scale(0.65);
  }

  70% {
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }

}


/* =========================================================
   CALLBACK SUCCESS MOBILE
========================================================= */

@media (max-width: 768px) {

  .ydr-callback-success {
    min-height: 390px;

    padding: 40px 22px;
  }


  .ydr-success-icon {
    width: 74px;
    height: 74px;

    margin-bottom: 20px;
  }


  .ydr-success-icon::before {
    width: 94px;
    height: 94px;
  }


  .ydr-success-icon::after {
    width: 108px;
    height: 108px;
  }


  .ydr-success-icon i {
    font-size: 29px;
  }


  .ydr-success-title {
    font-size: 28px;
  }


  .ydr-success-text {
    font-size: 15px;
    line-height: 1.6;
  }


  .ydr-success-info {
    margin-top: 24px;

    padding: 14px;

    gap: 12px;
  }


  .ydr-success-info-icon {
    width: 42px;
    height: 42px;
  }

}

/* =========================================================
   CONTACT FORM SUCCESS STATE
========================================================= */

.ydr-contact-success {

  display: none;

  min-height: 610px;

  width: 100%;

  padding: 45px 35px;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  box-sizing: border-box;

}


/* =========================================================
   SUCCESS ICON
========================================================= */

.ydr-contact-success-icon {

  position: relative;

  width: 92px;

  height: 92px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 28px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #2563eb,
      #38bdf8
    );

  box-shadow:
    0 15px 35px
    rgba(37, 99, 235, 0.25);

  animation:
    contactSuccessPop
    0.5s
    ease;

}


.ydr-contact-success-icon::before {

  content: "";

  position: absolute;

  inset: -12px;

  border-radius: 50%;

  border:
    1px solid
    rgba(37, 99, 235, 0.15);

}


.ydr-contact-success-icon::after {

  content: "";

  position: absolute;

  inset: -22px;

  border-radius: 50%;

  border:
    1px solid
    rgba(56, 189, 248, 0.10);

}


.ydr-contact-success-icon i {

  position: relative;

  z-index: 2;

  color: #ffffff;

  font-size: 38px;

}


/* =========================================================
   SUCCESS BADGE
========================================================= */

.ydr-contact-success-badge {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  padding: 8px 17px;

  margin-bottom: 22px;

  border-radius: 50px;

  background: #ecfdf5;

  color: #15803d;

  font-size: 14px;

  font-weight: 700;

}


.ydr-contact-success-badge span {

  width: 9px;

  height: 9px;

  border-radius: 50%;

  background: #22c55e;

  box-shadow:
    0 0 0 5px
    rgba(34, 197, 94, 0.12);

}


/* =========================================================
   SUCCESS TITLE
========================================================= */

.ydr-contact-success-title {

  margin: 0 0 15px;

  font-size: 42px;

  line-height: 1.2;

  font-weight: 700;

  color: #0f172a;

}


/* =========================================================
   SUCCESS TEXT
========================================================= */

.ydr-contact-success-text {

  max-width: 500px;

  margin: 0 auto 30px;

  font-size: 17px;

  line-height: 1.7;

  color: #64748b;

}


/* =========================================================
   CONFIRMATION INFO BOX
========================================================= */

.ydr-contact-success-info {

  width: 100%;

  max-width: 500px;

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 20px;

  margin-bottom: 18px;

  text-align: left;

  border:

    1px solid
    rgba(37, 99, 235, 0.14);

  border-radius: 16px;

  background:

    linear-gradient(
      135deg,
      #eff6ff,
      #f0f9ff
    );

  box-sizing: border-box;

}


.ydr-contact-success-info-icon {

  width: 58px;

  min-width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 14px;

  background: #ffffff;

  color: #2563eb;

  font-size: 22px;

  box-shadow:

    0 8px 20px
    rgba(15, 23, 42, 0.06);

}


.ydr-contact-success-info-content {

  display: flex;

  flex-direction: column;

  gap: 5px;

}


.ydr-contact-success-info-content strong {

  color: #0f172a;

  font-size: 16px;

  font-weight: 700;

}


.ydr-contact-success-info-content span {

  color: #64748b;

  font-size: 14px;

  line-height: 1.5;

}


/* =========================================================
   DEVICE SAFETY NOTE
========================================================= */

.ydr-contact-success-note {

  width: 100%;

  max-width: 500px;

  display: flex;

  align-items: flex-start;

  gap: 12px;

  padding: 16px 18px;

  text-align: left;

  border-radius: 12px;

  background: #fff7ed;

  color: #9a3412;

  font-size: 13px;

  line-height: 1.6;

  box-sizing: border-box;

}


.ydr-contact-success-note i {

  margin-top: 3px;

  color: #f97316;

}


/* =========================================================
   SUCCESS ANIMATION
========================================================= */

@keyframes contactSuccessPop {

  0% {

    opacity: 0;

    transform:
      scale(0.65);

  }


  70% {

    transform:
      scale(1.08);

  }


  100% {

    opacity: 1;

    transform:
      scale(1);

  }

}


/* =========================================================
   CONTACT SUCCESS RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .ydr-contact-success {

    min-height: auto;

    padding: 50px 20px;

  }


  .ydr-contact-success-icon {

    width: 78px;

    height: 78px;

  }


  .ydr-contact-success-icon i {

    font-size: 32px;

  }


  .ydr-contact-success-title {

    font-size: 34px;

  }


  .ydr-contact-success-text {

    font-size: 15px;

  }


  .ydr-contact-success-info {

    padding: 17px;

  }


  .ydr-contact-success-info-icon {

    width: 50px;

    min-width: 50px;

    height: 50px;

  }

}



/* =========================================================
   PREMIUM NAVBAR CALLBACK BUTTON
========================================================= */

.nav-callback-btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 48px;
  padding: 8px 20px 8px 9px;

  border: none;
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #2563eb 0%,
      #2f80ed 48%,
      #38bdf8 100%
    );

  color: #ffffff;

  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;

  cursor: pointer;

  box-shadow:
    0 8px 20px rgba(37, 99, 235, 0.22);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;

  overflow: hidden;
}


/* LIGHT SHINE EFFECT */

.nav-callback-btn::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.28),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.6s ease;
}


.nav-callback-btn:hover::before {
  left: 140%;
}


/* CALLBACK ICON */

.nav-callback-icon {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.18);

  font-size: 14px;
  transform: scaleX(-1);

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}


.nav-callback-btn span {
  position: relative;
  z-index: 1;
}


/* HOVER */

.nav-callback-btn:hover .nav-callback-icon {
  transform: scaleX(-1) scale(1.08);

  background: rgba(255, 255, 255, 0.25);
}

/* ACTIVE */

.nav-callback-btn:active {
  transform: translateY(0) scale(0.98);
}


/* FOCUS */

.nav-callback-btn:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.35);
  outline-offset: 3px;
}


/* =========================================================
   DARK MODE
========================================================= */

.dark-theme .nav-callback-btn {
  box-shadow:
    0 8px 24px rgba(56, 189, 248, 0.2);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

  .nav-callback-btn {
    width: 100%;

    min-height: 50px;

    margin-top: 8px;

    padding:
      9px 20px
      9px 10px;

    border-radius: 13px;
  }

}


@media (max-width: 480px) {

  .nav-callback-btn {
    font-size: 14px;

    min-height: 48px;
  }


  .nav-callback-icon {
    width: 30px;
    height: 30px;

    border-radius: 9px;
  }

}
