/* ==========================================
ABOUT HERO
========================================== */
.about-hero {
  padding: 140px 0;
  background: linear-gradient(135deg, #061321, #12386d);
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-left h1 {
  font-size: 60px;
  margin: 20px 0;
  line-height: 1.1;
}

.about-left p {
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.glass-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.glass-card div {
  padding: 35px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s;
}

.glass-card div:hover {
  transform: translateY(-10px);
}

.glass-card h2 {
  font-size: 42px;
  color: #4da3ff;
  margin-bottom: 10px;
}

/* ==========================================
WHO WE ARE
========================================== */
.who-we-are {
  padding: 120px 0;
}

.about-company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 60px;
}

.company-image img {
  width: 100%;
  border-radius: 25px;
}

.company-content h3 {
  font-size: 40px;
  margin-bottom: 25px;
}

.company-content p {
  margin-bottom: 25px;
  line-height: 1.8;
  color: #64748b;
}

.company-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
  font-weight: 600;
}

/* ==========================================
MISSION
========================================== */
.mission-section {
  padding: 120px 0;
  background: #f8faff;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 60px;
}

.mission-card {
  padding: 45px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e6ebf4;
  transition: 0.35s;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.mission-icon {
  font-size: 45px;
  margin-bottom: 20px;
}

.mission-card h3 {
  margin-bottom: 18px;
  font-size: 28px;
}

/* ==========================================
VALUES
========================================== */
.values-section {
  padding: 120px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.value-card {
  padding: 35px;
  border: 1px solid #e6ebf4;
  border-radius: 18px;
  transition: 0.35s;
  background: #fff;
}

.value-card:hover {
  background: #2f6bff;
  color: white;
  transform: translateY(-10px);
}

.value-card:hover p {
  color: #dce6ff;
}

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  color: #64748b;
  line-height: 1.8;
}

/* ==========================================
TIMELINE
========================================== */
.timeline-section {
  padding: 120px 0;
  background: #081321;
  color: white;
}

.timeline {
  margin-top: 70px;
  border-left: 3px solid #2f6bff;
  padding-left: 40px;
}

.timeline-item {
  margin-bottom: 60px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: #2f6bff;
  border-radius: 50%;
}

.timeline-year {
  font-size: 18px;
  font-weight: 700;
  color: #4da3ff;
  margin-bottom: 10px;
}

.timeline-content h3 {
  margin-bottom: 15px;
  font-size: 28px;
}

.timeline-content p {
  color: #b9c8dd;
  line-height: 1.8;
}

/* ==========================================
TEAM
========================================== */
.team-section {
  padding: 120px 0;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 70px;
}

.team-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: 0.35s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.team-image {
  overflow: hidden;
  height: 340px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s;
}

.team-card:hover img {
  transform: scale(1.08);
}

.team-content {
  padding: 30px;
}

.team-content h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.designation {
  display: block;
  color: #2f6bff;
  font-weight: 600;
  margin-bottom: 18px;
}

.team-content p {
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 25px;
}

.team-social {
  display: flex;
  gap: 15px;
}

.team-social a {
  padding: 10px 18px;
  border-radius: 999px;
  background: #f3f7ff;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.team-social a:hover {
  background: #2f6bff;
  color: white;
}

/* ==========================================
TECH STACK
========================================== */
.technology-section {
  padding: 120px 0;
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.tech-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 22px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(47, 107, 255, 0.08);
  border-radius: 50%;
  top: -170px;
  right: -170px;
  transition: 0.4s;
}

.tech-card:hover::before {
  top: -90px;
  right: -90px;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: #2f6bff;
}

.tech-card i {
  font-size: 55px;
  color: #2f6bff;
  margin-bottom: 25px;
  transition: 0.35s;
}

.tech-card:hover i {
  transform: scale(1.2) rotate(8deg);
}

.tech-card span {
  display: block;
  font-size: 17px;
  font-weight: 700;
}

/* ==========================================
WHY US
========================================== */
.why-us {
  padding: 120px 0;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 70px;
}

.why-card {
  padding: 45px 35px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 0;
  background: #2f6bff;
  transition: 0.35s;
}

.why-card:hover::before {
  height: 100%;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  border-radius: 18px;
  margin-bottom: 30px;
}

.why-icon i {
  font-size: 30px;
  color: #2f6bff;
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.why-card p {
  line-height: 1.8;
  color: #64748b;
}

/* ==========================================
COMPANY STATS
========================================== */
.company-stats {
  padding: 120px 0;
  background: #0d1424;
  color: white;
  position: relative;
  overflow: hidden;
}

.company-stats::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(47, 107, 255, 0.12);
  border-radius: 50%;
  top: -250px;
  right: -150px;
}

.company-stats::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(47, 107, 255, 0.08);
  border-radius: 50%;
  bottom: -180px;
  left: -120px;
}

.center {
  text-align: center;
  margin: auto;
}

.company-stats .section-sub {
  color: #b7c2de;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 70px;
  position: relative;
  z-index: 2;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 45px 30px;
  border-radius: 24px;
  text-align: center;
  transition: 0.35s;
}

.stat-box:hover {
  transform: translateY(-10px);
  background: #2f6bff;
}

.stat-box i {
  font-size: 42px;
  margin-bottom: 25px;
  color: #8fb0ff;
  transition: 0.35s;
}

.stat-box:hover i {
  color: white;
  transform: scale(1.15);
}

.stat-box h3 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-box p {
  color: #d2d9ea;
  font-size: 16px;
}

/* ==========================================
VISION
========================================== */
.vision-section {
  padding: 120px 0;
  background: #fff;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.vision-card {
  padding: 50px;
  border-radius: 24px;
  border: 1px solid #e6eaf2;
  transition: 0.35s;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.vision-icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: #eef4ff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.vision-icon i {
  font-size: 34px;
  color: #2f6bff;
}

.vision-card h3 {
  margin-bottom: 20px;
  font-size: 30px;
}

.vision-card p {
  line-height: 1.9;
  color: #64748b;
}

/* ==========================================
SOCIALS
========================================== */
.socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.socials a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1e3c7a;
  color: white;
  transition: 0.3s;
}

.socials a:hover {
  background: #2457ff;
  transform: translateY(-6px);
}

/* ==========================================
MOBILE RESPONSIVE
========================================== */

/* Tablets */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-company {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-left h1 {
    font-size: 28px;
  }

  .about-left p {
    font-size: 15px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
  }

  .glass-card {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .glass-card div {
    padding: 20px;
  }

  .glass-card h2 {
    font-size: 28px;
  }

  .who-we-are {
    padding: 60px 16px;
  }

  .about-company {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .company-content h3 {
    font-size: 28px;
  }

  .company-content p {
    font-size: 15px;
  }

  .company-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    font-size: 14px;
  }

  .mission-section {
    padding: 60px 16px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-card {
    padding: 30px 24px;
  }

  .mission-card h3 {
    font-size: 24px;
  }

  .values-section {
    padding: 60px 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    padding: 28px 24px;
  }

  .value-card h3 {
    font-size: 20px;
  }

  .timeline-section {
    padding: 60px 16px;
  }

  .timeline {
    margin-top: 40px;
    padding-left: 24px;
  }

  .timeline-item {
    margin-bottom: 40px;
  }

  .timeline-item::before {
    left: -32px;
    width: 14px;
    height: 14px;
  }

  .timeline-content h3 {
    font-size: 22px;
  }

  .team-section {
    padding: 60px 16px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-image {
    height: 260px;
  }

  .team-content {
    padding: 24px;
  }

  .team-content h3 {
    font-size: 24px;
  }

  .technology-section {
    padding: 60px 16px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tech-card {
    padding: 24px 16px;
  }

  .tech-card i {
    font-size: 36px;
  }

  .tech-card span {
    font-size: 14px;
  }

  .why-us {
    padding: 60px 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 28px 24px;
  }

  .why-card h3 {
    font-size: 20px;
  }

  .company-stats {
    padding: 60px 16px;
  }

  .stats-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-box {
    padding: 28px 20px;
  }

  .stat-box h3 {
    font-size: 32px;
  }

  .vision-section {
    padding: 60px 16px;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vision-card {
    padding: 30px 24px;
  }

  .vision-card h3 {
    font-size: 24px;
  }

  /* Section Headers */
  .section-head h2 {
    font-size: 28px;
  }

  .section-head p {
    font-size: 15px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .glass-card {
    grid-template-columns: 1fr;
  }

  .company-features {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .about-left h1 {
    font-size: 24px;
  }

  .section-head h2 {
    font-size: 24px;
  }
}
/* ==========================================
   BUTTON STYLES FOR ABOUT PAGE
   ========================================== */

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 52px;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  color: #ffffff;
}

/* Secondary Button (Outline) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 52px;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #2563eb;
  transform: translateY(-3px);
  border-color: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Ghost Button (for light backgrounds) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid #2563eb;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 52px;
}

.btn-ghost:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ==========================================
   RESPONSIVE BUTTONS
   ========================================== */

@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    padding: 12px 24px;
    font-size: 14px;
    min-height: 48px;
    width: 100%;
    max-width: 280px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    padding: 10px 20px;
    font-size: 13px;
    min-height: 44px;
    max-width: 100%;
  }
}
