:root {
  --blue: #0056D2;
  --text-dark: #000;
  --text-gray: #444;
  --bg-gray: #f9f9f9;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: white;
  color: var(--text-dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px;
}

header {
  padding: 10px 0;
  border-bottom: 2px solid #eee;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  vertical-align: middle;
}


nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
}

.hero {
  text-align: center;
  padding: 80px 20px 60px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero .highlight {
  color: var(--blue);
}

.hero p {
  font-size: 22px;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  background: var(--blue);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline {
  background: var(--blue);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 5px;
  background: var(--blue);
  color: white;
}

.stats {
  background: var(--bg-gray);
  padding: 40px 20px;
  text-align: center;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat {
  font-size: 18px;
  margin: 20px;
}

.stat .blue {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
}

.about {
  padding: 60px 20px;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.about p {
    font-family: Inter, system-ui, sans-serif;
  font-size: 24px;
  max-width: 800px;
  color: var(--text-gray);
  text-align: center;
  line-height: 1.5;
}

footer {
  padding: 30px 20px;
  text-align: center;
  color: #777;
  font-size: 14px;
}
.center-text {
  text-align: center;
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}

.mission h3,
.why h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.mission p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5; /* Default is 1.6, this gives more breathing room */
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li::before {
  content: "✔";
  color: green;
  margin-right: 10px;
  font-weight: bold;
  line-height: 1.5;
}

.why {
  background: linear-gradient(to bottom right, #f5f9ff, #e8f0ff);
  padding: 30px;
  border-radius: 15px;
}

.why ul {
  list-style: disc;
  padding-left: 20px;
  color: #333;
  line-height: 1.5;
}
.services {
  background: #f9fbff;
  padding: 80px 20px;
}

.services h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services p {
  color: #555;
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: left;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.service-card .icon {
  font-size: 32px;
  color: #0056D2;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
.cta-section {
  background: linear-gradient(to right, #2563eb, #3b28cc);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.btn-white {
  background: white;
  color: #0056D2;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.contact {
  padding: 60px 20px;
}

.contact h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact p {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #f9fbff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 1px 5px rgba(0,0,0,0.03);
}

.contact-card .icon {
  font-size: 30px;
  color: #0056D2;
  margin-bottom: 15px;
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: #333;
}
.linkedin-row {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
}

.linkedin-modern-card {
  flex: 0 0 260px;
  background: white;
  border-radius: 12px;
  overflow: hidden; /* This is the magic */
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
}


.linkedin-modern-card:hover {
  transform: translateY(-4px);
}

.linkedin-modern-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.linkedin-modern-card .badge {
  margin: 12px;
  padding: 4px 12px;
  background-color: #f2f2f2;
  color: #555;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  display: inline-block;
  width: fit-content;
}

.linkedin-modern-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 0 12px 16px;
  margin: 0;
  line-height: 1.4;
}



/* Target mobile screens up to 767px wide */
@media (max-width: 767px) {
  
  /* Override swiper's forced single-row behavior */
  .swiper-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    transform: none !important; /* Disables JS sliding translations */
    justify-content: center;
    gap: 20px;
  }

  /* Style the individual slide containers */
  .swiper-slide {
    width: calc(50% - 10px) !important; /* Forces 2 columns per row */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Ensure the images stay contained */
  .swiper-slide img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p,
  .about p,
  .services p,
  .contact p,
  .cta-section p {
    font-size: 16px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }

  .service-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .btn-outline,
  .btn-white {
    width: 100%;
    text-align: center;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .service-card,
  .contact-card {
    padding: 20px;
  }

  .logo img {
    height: 32px;
  }

  .hero {
    padding: 60px 20px;
  }

  .about,
  .services,
  .contact {
    padding: 40px 20px;
  }

  .footer {
    padding: 20px;
  }
  