/* ===============================
   GLOBAL THEME VARIABLES
================================ */
:root {
  --primary: #2563eb;        /* Brand blue (modern SaaS blue) */
  --secondary: #eff6ff;      /* Light blue background */
  --dark: #0f172a;           /* Deep navy */
  --gray: #64748b;
  --light: #f8fafc;
  --card-bg: #ffffff;
  --radius: 12px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
}


/* ===============================
   BASE RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, #eff6ff 0%, transparent 40%),
    radial-gradient(circle at bottom right, #e0e7ff 0%, transparent 40%),
    linear-gradient(to bottom, #f8fafc, #eef2ff);
  background-attachment: fixed;
  color: var(--dark);
  line-height: 1.7;
}


/* ===============================
   COMMON LAYOUT
================================ */

section {
  position: relative;
}


section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.9),
    rgba(255,255,255,0.75)
  );
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  z-index: -1;
}


section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

h1, h2, h3 {
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

/* ===============================
   ADVANCED HERO (2025 STYLE)
================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 20px 140px;
  text-align: center;

  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,0.25), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(99,102,241,0.25), transparent 45%),
    linear-gradient(180deg, #f8fafc, #eef2ff);
}

/* floating glow */
.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.4), transparent 60%);
  animation: floatGlow 16s linear infinite;
}

@keyframes floatGlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8%); }
  100% { transform: translateY(0); }
}

/* content wrapper */
.hero-inner {
  position: relative;
  max-width: 820px;
  margin: auto;
  z-index: 2;
}

/* ===============================
   LOGO GLASS
================================ */


.company-logo {
  max-width: 40%;
  max-height: 40%;
  object-fit: contain;
}

.fallback-icon i {
  font-size: 3rem;
  color: var(--primary);
}

/* ===============================
   TEXT
================================ */
.hero-title {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 40px;
}

/* ===============================
   CTA BUTTONS
================================ */
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.btn-primary {
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 10px 30px rgba(37,99,235,0.35);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--dark);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  text-decoration: none;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 100px;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ===============================
   COMPANY HISTORY
================================ */
.history ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.history li {
  background-color: var(--card-bg);
  padding: 14px 18px;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ===============================
   CEO SECTION
================================ */
/* ===============================
   LEADERSHIP SECTION
================================ */
.leadership {
  text-align: center;
}

.leadership h2 {
  margin-bottom: 50px;
}

/* ===============================
   CEO CARD (ADVANCED)
================================ */
.ceo-card {
  max-width: 950px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;

  padding: 40px;
  border-radius: var(--radius);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(239, 246, 255, 0.85)
    );

  backdrop-filter: blur(10px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ceo-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.12);
}

/* ===============================
   CEO IMAGE
================================ */
.ceo-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.ceo-image-wrapper::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.25),
    transparent 70%
  );
  z-index: -1;
}

.ceo-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;

  border: 4px solid var(--primary);
  background: #fff;
}

/* ===============================
   CEO CONTENT
================================ */
.ceo-content {
  text-align: left;
}

.ceo-content h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.ceo-title {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;

  font-size: 0.85rem;
  font-weight: 600;

  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  border-radius: 999px;
}

.ceo-bio {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .ceo-card {
    flex-direction: column;
    text-align: center;
  }

  .ceo-content {
    text-align: center;
  }
}

/* ===============================
   GRID / CARDS
================================ */
/* Default grid (desktop) */


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr; /* one card per row */
  }
}
@media (max-width: 768px) {
  .card {
    box-shadow: none;
    animation: none;
    transition: none;
  }

  .product-icon {
    display: none; /* optional but powerful */
  }
}


.card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.95),
    rgba(255,255,255,0.85)
  );
  backdrop-filter: blur(6px);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 25px 50px rgba(15,23,42,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ===============================
   ICON STYLES (BOOTSTRAP ICONS)
================================ */
.service-icon,
.product-icon,
.stat-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ===============================
   STATS / ACHIEVEMENTS
================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  text-align: center;
}

.stat {
  background-color: var(--card-bg);
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat h3 {
  font-size: 2rem;
  color: var(--primary);
}

/* ===============================
   FUTURE PLAN SECTION
================================ */
.future {
  background-color: var(--dark);
  color: #ffffff;
  text-align: center;
  padding: 80px 30px;
  border-radius: var(--radius);
}

.future h2 {
  color: #ffffff;
}

.future p {
  max-width: 700px;
  margin: auto;
  color: #d1d5db;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .ceo-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ===============================
   FOOTER
================================ */
.site-footer {
  background:
    radial-gradient(circle at top, #1e3a8a 0%, transparent 60%),
    linear-gradient(180deg, #0f172a, #020617);
  color: #cbd5f5;
}


.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-col i {
  margin-right: 8px;
  color: var(--primary);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  font-size: 1.4rem;
  color: #ffffff;
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-links a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

/* Bottom Copyright */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px 10px;
  font-size: 0.9rem;
  color: #9ca3af;
}

.testimonial-card p {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 12px;
}

.testimonial-card h5 {
  color: var(--dark);
}

.testimonial-card span {
  font-size: 0.9rem;
  color: var(--primary);
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tech-stack span {
  background: var(--card-bg);
  padding: 10px 18px;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-weight: 600;
}




.company-logo {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

