/* =============================================
   SART TECH SOLUTIONS – ABOUT PAGE STYLESHEET
   ============================================= */
/* ====================== PRELOADER ====================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease-in-out;
}

/* Loader */
.loader {
  width: 48px;
  height: 48px;
  position: relative;
}

.loader:before {
  content: '';
  width: 48px;
  height: 5px;
  background: #80a5f050;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow324 0.5s linear infinite;
}

.loader:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #8096f0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
  15% {
    border-bottom-right-radius: 3px;
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, .9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow324 {

  0%,
  100% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1);
  }
}

/* ---- CSS Variables ---- */
:root {
  --dark: #0d0d0d;
  --dark2: #111214;
  --dark3: #1a1c1f;
  --blue: #1a73e8;
  --blue-light: #4a90e2;
  --white: #ffffff;
  --gray: #6c6c6c;
  --gray-light: #f5f6f8;
  --card-light: #f5f6f8;
  --card-dark: #1a1c1f;
  --radius: 14px;
  --font: 'Poppins', sans-serif;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---- Utility ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.section-header p {
  color: #909090;
  font-size: 0.95rem;
}

.blue-h2 {
  color: var(--blue) !important;
}


/* ============================================================
   CORE COMPETENCIES
   ============================================================ */
.competencies {
  background: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
}

.card-light {
  background: var(--card-light);
}

.card-dark {
  background: var(--card-dark);
}

.card-dark h3 {
  color: var(--white);
}

.card-dark p {
  color: rgba(255, 255, 255, 0.55);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 16px 0 8px;
}

.card p {
  font-size: 0.88rem;
  color: #909090;
  line-height: 1.6;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.card-icon.blue {
  background: var(--blue);
  color: var(--white);
}

/* ============================================================
   MISSION & VISION
   ============================================================ */
.mission-vision {
  background: var(--gray-light);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.mv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.mv-icon.blue {
  background: var(--blue);
  color: var(--white);
}

.mv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mv-card p {
  font-size: 0.88rem;
  color: #909090;
  line-height: 1.7;
}

/* Base styles */
.pro-section {
    padding: 60px 20px;
}

.pro-container {
    max-width: 1200px;
    margin: auto;
}

.pro-header {
    text-align: center;
    margin-bottom: 40px;
}

.pro-title {
    font-size: 32px;
    color: #0a3d62;
}

.pro-subtitle {
    color: #555;
    font-size: 16px;
}

/* Grid layout */
.pro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.pro-card {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.pro-card:hover {
    transform: translateY(-6px);
}

/* Image wrapper */
.pro-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Avatar container (perfect circle + fixed size) */
.pro-img-avatar {

    width: 500px;
    height: 570px;
    border-radius: 5%;
    overflow: hidden; /* ensures image stays inside circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image itself */
.pro-img-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* prevents stretching */
}

/* Name */
.pro-name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* -------------------- */
/* RESPONSIVE BREAKPOINTS */
/* -------------------- */
@media (max-width: 750px) {
    .pro-img-avatar {
        width: 210px;
        height: 310px;
    }
     .pro-grid {
        grid-template-columns: 1fr;
    }

}

/* ============================================================
   WHY TRUST
   ============================================================ */
.why-trust {
  background: var(--white);
}

.trust-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-header h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.trust-right {
  text-align: right;
}

.proven {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.trust-right p {
  font-size: 0.85rem;
  color: #909090;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.trust-item {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 24px 18px;
  transition: background var(--transition), transform var(--transition);
}

.trust-item:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.trust-item:hover h4,
.trust-item:hover p {
  color: var(--white);
}

.trust-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.78rem;
  color: #909090;
  line-height: 1.55;
}

/* ============================================================
   ABOUT COMPANY
   ============================================================ */
.about-company {
  background: var(--dark);
  padding: 80px 0;
}

.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.img-placeholder {
  background: #1e2025;
  border-radius: var(--radius);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.08), transparent 60%);
}

.about-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership {
  background: var(--white);
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;

  margin: 0 auto;
}

.leader-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
}

.leader-img {
  margin-bottom: 20px;
}

.leader-avatar {
  width: 210px;
  height: 235px;
  border-radius: 14px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.5);
  /* background: linear-gradient(135deg, #2d2d2d, #1a1a1a); */
}

.leader-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.leader-card p {
  font-size: 0.82rem;
  color: #909090;
  line-height: 1.65;
}

/* ============================================================
   STATS
   ============================================================ */
.abo-start-section {
  background: #f9fafb;
  padding: 60px 0;
}

.abo-start-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
}

.abo-start-item h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
}

.abo-start-item span {
  color: #2563eb;
  margin-left: 4px;
}

.abo-start-item p {
  font-size: 0.85rem;
  color: #666;
  margin-top: 6px;
  letter-spacing: 0.08em;
}

/* ============================================================
   TRUSTED
   ============================================================ */
.trusted {
  background: var(--white);
  text-align: center;
}

.trusted h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}

.divider-line {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.divider-line span {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.brand-logo {
  width: 100px;
  height: 100px;
  background: #f5f6f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.brand-logo:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.brand-logo.upwork {
  color: #6fda44;
}

.brand-logo.fiverr {
  color: #1dbf73;
}

.brand-logo.clutch {
  font-size: 0.8rem;
  font-weight: 800;
  color: #f03;
}

.join-text {
  font-size: 0.88rem;
  color: #909090;
}

.join-text strong {
  color: var(--blue);
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .img-placeholder {
    height: 260px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .btn-contact {
    display: none;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .competencies.section-pad,
  .mission-vision.section-pad,
  .why-trust.section-pad,
  .leadership.section-pad,
  .stats.section-pad,
  .trusted.section-pad {
    padding: 56px 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-right {
    text-align: left;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    padding: 0 20px;
  }

  .brand-logos {
    gap: 16px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;

  }
}

@media (max-width: 420px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item h2 {
    font-size: 2.2rem;
  }
}