/* ================================
   RESET & BASE
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
  font-size: 18px;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  margin: 0 0 16px;
}

p {
  margin: 0 0 20px;
  font-size: 18px;
}

/* ================================
   GLOBAL CONTAINER & SECTIONS
================================ */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.grey {
  background: #F4F6F8;
}

.center {
  text-align: center;
}

/* ================================
   GRID SYSTEM
================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

/* ================================
   HEADER
================================ */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  height: 72px;
  z-index: 100;
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
}

.main-nav a:hover {
  color: #2F80ED;
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.15s ease-in-out;
}

.btn-primary {
  background: #2F80ED;
  color: #ffffff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-outline {
  border: 1px solid #2F80ED;
  color: #2F80ED;
}

.btn-outline:hover {
  background: #2F80ED;
  color: #ffffff;
}

.btn-primary.light {
  background: #ffffff;
  color: #0F172A;
}

.btn-outline-light {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.small {
  padding: 8px 16px;
  font-size: 14px;
}

.button-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

/* ================================
   HERO
================================ */
.hero h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
}

.hero-subtext {
  font-size: 18px;
  color: #f3f3f3;
  max-width: 520px;
}

.hero-visual {
  height: 360px;
  background: #E5E7EB;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 14px;
}

/* ================================
   TRUST BAR
================================ */
.trust-bar {
  background: #F4F6F8;
  padding: 18px 0;
}

.trust-items {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

/* ================================
   SERVICES
================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 36px;
  transition: all 0.15s ease-in-out;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-color: #2F80ED;
}

/* ================================
   WHY TEJOMA
================================ */
.bullet-list {
  padding-left: 18px;
}

.bullet-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.abstract-box {
  height: 280px;
  background: #E5E7EB;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
}

/* ================================
   ENGAGEMENT MODELS
================================ */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.pill {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #CBD5E1;
  font-size: 14px;
  background: #ffffff;
  transition: all 0.15s ease-in-out;
}

.pill:hover {
  background: #2F80ED;
  color: #ffffff;
  border-color: #2F80ED;
}

/* ================================
   INDUSTRIES
================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.industries-grid div {
  padding: 28px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

/* ================================
   SOCIAL PROOF
================================ */
.testimonial {
  font-size: 20px;
  font-style: italic;
  max-width: 800px;
  margin: auto;
}

.testimonial span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  color: #6B7280;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.logo-box {
  height: 80px;
  border: 1px dashed #CBD5E1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
}

/* ================================
   FINAL CTA
================================ */
.final-cta {
  background: #0F172A;
  color: #ffffff;
  padding: 96px 0;
}

.final-cta p {
  color: #CBD5E1;
}

/* ================================
   FOOTER
================================ */
.site-footer {
  background: #111827;
  color: #ffffff;
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.copyright {
  text-align: center;
  color: #9CA3AF;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .industries-grid,
  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .card-grid,
  .industries-grid,
  .logo-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none; /* for future mobile menu */
  }
}


.hero-visual {
  background: #E5E7EB;
  border-radius: 16px;
  height: 360px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* HERO BANNER */
.hero-banner {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background-image: url("images/hero-tech-people.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #ffffff;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 15, 35, 0.85),
    rgba(5, 15, 35, 0.45)
  );
}

/* Content */
.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
  text-align: center !important;
}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtext {
    font-size: 1.1rem;
    max-width: 1000px;
    margin-bottom: 32px;
    opacity: 0.95;
    padding-top: 15px;
}

/* Buttons */
.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background: #1e4fd8;
}

.btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner {
    height: auto;
    padding: 120px 0 100px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}





.trust-bar {
  background: #f8fafc;
  padding: 24px 0;
}

.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-items {
    flex-wrap: wrap;
    gap: 16px;
  }

  .trust-items span {
    width: 50%;
  }
}




.inner-banner {
    position: relative;
    height: 260px; /* 🔹 SMALL HEIGHT */
    background: url("assets/imgs/home-bg.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* dark overlay */
}

.inner-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.inner-banner-content h1 {
    font-size: 55px;
    font-weight: 500;
    margin-bottom: 10px;
}

.inner-banner-content p {
    font-size: 18px;
    
    opacity: 0.9;
}





.services-visual {
    padding: 80px 0;
    background: #0b132b; /* dark background to match image */
}

.services-image {
    width: 100%;
    max-width: 1100px; /* prevents over-stretching */
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-visual {
        padding: 50px 0;
    }

    .services-image {
        max-width: 100%;
    }
}




.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    position: relative;
}

/* Dropdown container */
.nav-item {
    position: relative;
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

/* Submenu links */
.submenu a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #222;
}

.submenu a:hover {
    background: #f4f6f8;
}

/* Hover behavior */
.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



.logo img {
    height: 40px;        /* adjust if needed */
    width: auto;
    display: block;
}








.services-visual {
    background: radial-gradient(circle at top left, #1b2a4a, #0b1220);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.services-icons {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-bottom: 60px;
}

.service-item p {
    margin-top: 15px;
    font-weight: 500;
    color: #e5e7eb;
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #5b8cff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #7aa2ff;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 25px rgba(91, 140, 255, 0.3);
}

.services-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-subtitle {
    color: #b5c1d8;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-icons {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .services-icons {
        flex-direction: column;
        gap: 40px;
    }

    .services-title {
        font-size: 30px;
    }
}





.section {
  padding: 50px 20px;
  background: #f9fbff;
  text-align: center;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.section-subtext {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: left;
  border: 1px solid #eee;
}

/* ICON */
.icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* TITLE */
.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

/* TEXT */
.card p {
  color: #666;
  line-height: 1.6;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: #2f6df6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}






.why-section {
  padding: 50px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtext {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
  background: #f9fbff;
  padding: 30px 25px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #eee;
}

/* ICON */
.why-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* TITLE */
.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

/* TEXT */
.why-card p {
  color: #666;
  line-height: 1.6;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}





.cta-section {
  text-align: center;
  color: #fff;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
    padding: 80px 20px;
  background: linear-gradient(135deg, #2f6df6, #1d4ed8);
border-radius: 10px;
}

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

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0e7ff;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-bottom: 50px;
}

/* Primary Button */
.btn-primary {
  background: #fff;
  color: #1d4ed8;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e5e7eb;
}

/* Outline Button */
.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #1d4ed8;
}

/* Responsive */
@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
  }
}






.services-page {
  padding: 80px 20px;
  background: #f9fbff;
  font-family: Arial, Helvetica, sans-serif;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
}

/* Title */
.page-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

/* Overview Block */
.service-block.full {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.service-block h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-block p {
  color: #555;
  line-height: 1.7;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Cards */
.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Hover */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: #2f6df6;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}





.eor-page {
  padding: 80px 20px;
  background: #f9fbff;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
}

/* Title */
.page-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

/* Description */
.page-subtext {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* Benefits */
.benefits-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.benefit-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* Icon */
.icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* Title */
.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

/* Text */
.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Hover */
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: #2f6df6;
}

/* Responsive */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}




.hero-banner {
  position: relative;
  height: 0vh;

  background: url('assets/imgs/home-bg.jpg') no-repeat center center/cover;

  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* adjust if needed */
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center !important;
  color: #fff;
}




.button-row {
  display: flex;
  justify-content: center;   /* centers horizontally */
  align-items: center;       /* centers vertically (if needed) */
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
}
.hero-content {
  text-align: center;
}





.appdev-page {
  padding: 80px 20px;
  background: #f9fbff;
  font-family: Arial, sans-serif;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
}

/* Flex Layout */
.appdev-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Text */
.appdev-text {
  flex: 1;
}

.page-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.page-subtext {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Right Image */
.appdev-image {
  flex: 1;
}

.appdev-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .appdev-flex {
    flex-direction: column;
    text-align: center;
  }
}



/*contact page*/

.contact-section {
  padding: 80px 20px;
  background: #f9fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info .lead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-info p {
  color: #555;
  margin-bottom: 20px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  text-decoration: none;
  color: #6a1b9a;
  font-weight: 500;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact-form button {
  padding: 12px;
  border: none;
  cursor: pointer;
}



.contact-section {
  padding: 80px 20px;
  background: #f8f9fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */
.contact-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-info .lead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-info p {
  color: #555;
  margin-bottom: 20px;
}

.contact-details p {
  margin-bottom: 8px;
}

/* SOCIAL ICONS */
.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #2563eb;
  transform: translateY(-3px);
}

/* FORM CARD */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6a1b9a;
  outline: none;
}

/* BUTTON */
.full-width {
  width: 100%;
  padding: 14px;
  font-weight: 600;
}






.section-subtext {
  margin: 10px auto 30px;
  color: #666;
  font-size: 1.125rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pill {
  padding: 10px 18px;
  border-radius: 25px;
  background: #f1f3f8;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: 0.3s ease;
}

.pill:hover {
  background: #6a1b9a;
  color: #fff;
  transform: translateY(-2px);
}





.grey {
  background: #f8f9fc;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.industry-card {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}






.testimonial {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  font-style: italic;
  color: #333;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #777;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logo-box {
  width: 120px;
  height: 60px;
  background: #f1f3f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #888;
  border-radius: 6px;
}





.solutions {
  padding: 80px 20px;
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  font-size: 12px;
  font-weight: bold;
  color: #2563eb;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header h2 {
  font-size: 32px;
  margin: 10px 0;
}

.header p {
  color: #64748b;
  
  margin: auto;
  font-size: 1.125rem;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.card h3 {
  margin: 10px 0 5px;
}

.card p {
  color: #64748b;
}

/* Icons */
.icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 10px;
}

.blue {
  background: #eff6ff;
  color: #2563eb;
}

.blue-dark {
  background: #dbeafe;
  color: #1e40af;
}

.teal {
  background: #f0fdfa;
  color: #0d9488;
}

.teal-dark {
  background: #ccfbf1;
  color: #0f766e;
}

/* List */
.card ul {
  margin-top: auto;
  padding-left: 18px;
}

.card li {
  margin-bottom: 8px;
  color: #475569;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}






/* Section */
.edge-section {
  position: relative;
  padding: 80px 20px;
  background: #020617;
  overflow: hidden;
}

/* Gradient overlay */
.edge-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #020617, rgba(30, 58, 138, 0.3), #0f172a);
}

/* Top gradient line */
.edge-section .top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(59,130,246,0.5), transparent);
}


.edge-section .subtitle {
  font-size: 12px;
  color: #2dd4bf;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.edge-section .header h2 {
  font-size: 42px;
  margin: 10px 0;
}

.edge-section .header p {
  color: #94a3b8;
  
  margin: auto;
  font-size: 18px;
}

/* Grid */
.edge-section .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Cards */
.edge-section .card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 25px;
  transition: 0.3s ease;
}

.edge-section .card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.edge-section .card h3 {
  margin: 10px 0;
}

.edge-section .card p {
  color: #94a3b8;
}

/* Icons */
.edge-section .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.3s;
}

.edge-section .card:hover .icon {
  transform: scale(1.1);
}

.edge-section .blue {
  background: rgba(59,130,246,0.2);
  color: #3b82f6;
}

.edge-section .teal {
  background: rgba(20,184,166,0.2);
  color: #14b8a6;
}

/* Stats text */
.edge-section .stat {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}

.blue-text {
  color: #60a5fa;
}

.light-blue-text {
  color: #93c5fd;
}

.teal-text {
  color: #2dd4bf;
}

.light-teal-text {
  color: #5eead4;
}

/* Bottom stats */
.stats {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-box span {
  color: #94a3b8;
  font-size: 14px;
}

.stat-box strong {
  color: white;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}



/* Section */
.engagement {
  padding: 80px 20px;
}


.subtitle {
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header h2 {
  font-size: 32px;
  margin: 10px 0;
  color: #0f172a;
}

.header p {
  color: #64748b;
  
  margin: auto;
  font-size: 16px;
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tab svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.tab:hover {
  border-color: #bfdbfe;
  color: #2563eb;
}

.tab.active {
  background: #2563eb;
  color: white;
  box-shadow: 0 8px 20px rgba(37,99,235,0.2);
}

/* Content box */
.content-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}

.content-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
}

/* Left */
.left {
  padding: 40px;
  border-right: 1px solid #f1f5f9;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.icon {
  background: #eff6ff;
  padding: 10px;
  border-radius: 10px;
}

.icon svg {
  width: 20px;
  height: 20px;
  stroke: #2563eb;
}

.left h3 {
  margin: 0;
  color: #0f172a;
}

.desc {
  color: #475569;
  margin-bottom: 20px;
}

.highlight {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 15px;
  border-radius: 12px;
}

.label {
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
  text-transform: uppercase;
}

/* Right */
.right {
  padding: 40px;
  background: #f8fafc;
}

.included-title {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #334155;
  font-weight: 500;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #14b8a6;
}

/* CTA */
.cta {
  display: block;
  margin-top: 25px;
  text-align: center;
  background: #2563eb;
  color: white;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .left {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
}




.tab-content {
  display: none;
  padding: 30px;
}

.tab-content.active {
  display: block;
}






/* Base */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  font-size: 18px;
  
}

/* Section */
.industries {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header h2 {
  font-size: 32px;
  margin: 10px 0;
  color: #ffffff;
}

.header p {
  color: #64748b;
  text-align: left;
  margin: auto;
}


/* Card */
.card {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  background: #fff;
  transition: all 0.3s ease;
  cursor: default;
}

.card:hover {
  border-color: #dbeafe;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

/* Icon */
.icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.card:hover .icon {
  transform: scale(1.1);
}

.blue {
  background: #eff6ff;
  color: #2563eb;
}

.blue-dark {
  background: #dbeafe;
  color: #1e40af;
}

.teal {
  background: #f0fdfa;
  color: #0d9488;
}

.teal-dark {
  background: #ccfbf1;
  color: #0f766e;
}

/* Text */
.card h3 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #0f172a;
}

.card p {
  margin: 0;
  color: #64748b;
  font-size:18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}








/* Section */
.hire {
  position: relative;
  padding: 100px 20px;
  background: #020617;
  overflow: hidden;
  text-align: center;
}

/* Gradient overlay */
.hire .overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom right, #1e3a8a, #020617, rgba(20, 184, 166, 0.3));
}

/* Blur circles */
.hire .blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hire .blur-blue {
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.2);
  top: 0;
  left: 20%;
}

.hire .blur-teal {
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.2);
  bottom: 0;
  right: 20%;
}


/* Badge */
.hire .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,184,166,0.2);
  border: 1px solid rgba(20,184,166,0.3);
  color: #5eead4;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hire .dot {
  width: 6px;
  height: 6px;
  background: #2dd4bf;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Heading */
.hire h2 {
  color: white;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hire .gradient-text {
  background: linear-gradient(to right, #60a5fa, #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.hire .desc {
  color: #cbd5f5;
  font-size: 18px;
  margin-bottom: 30px;
}

/* Buttons */
.hire .actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hire .btn {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hire .primary {
  background: #2563eb;
  color: white;
}

.hire .primary:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

.hire .secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.hire .secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* Points */
.hire .points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #94a3b8;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hire .hire h2 {
    font-size: 30px;
  }

  .hire .desc {
    font-size: 16px;
  }
}







.company-story { padding: 50px 0; background: #ffffff; } .container { max-width: 1100px; margin: auto; padding: 0 20px; } .section-heading { text-align: center; max-width: 750px; margin: 0 auto 80px; } .section-heading span { color: #2563eb; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; } .section-heading h2 { font-size: 48px; margin: 15px 0; color: #111827; } .section-heading p { color: #6b7280; line-height: 1.8; } .journey { position: relative; } .journey::before { content: ""; position: absolute; left: 35px; top: 0; width: 2px; height: 100%; background: #dbeafe; } .journey-item { display: flex; gap: 40px; margin-bottom: 60px; position: relative; } .number { min-width: 70px; width: 70px; height: 70px; border-radius: 50%; background: #2563eb; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; z-index: 2; } .content { background: #f8fafc; padding: 30px; border-radius: 16px; flex: 1; } .content h3 { margin-bottom: 15px; color: #111827; font-size: 24px; } .content p { color: #4b5563; line-height: 1.8; } @media (max-width: 768px) { .journey-item { flex-direction: column; gap: 20px; } .journey::before { display: none; } .section-heading h2 { font-size: 34px; } }



.future-ready-section{
    padding:100px 20px;
    background:#050816;
    position:relative;
    overflow:hidden;
}

/* Animated Background Glow */
.future-ready-section::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,
        rgba(37,99,235,0.35) 0%,
        transparent 70%);
    top:-250px;
    left:-150px;
    animation:moveGlow 10s ease-in-out infinite;
}

.future-ready-section::after{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,
        rgba(168,85,247,0.3) 0%,
        transparent 70%);
    bottom:-200px;
    right:-150px;
    animation:moveGlow 12s ease-in-out infinite alternate;
}

@keyframes moveGlow{
    0%{
        transform:translate(0,0);
    }
    50%{
        transform:translate(40px,40px);
    }
    100%{
        transform:translate(0,0);
    }
}

.container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    text-align: left;
}

.feature-card{
    position:relative;
    padding:40px;
    border-radius:24px;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.1);

    transition:all .4s ease;
    overflow:hidden;
}

/* Animated Gradient Border */
.feature-card::before{
    content:"";
    position:absolute;
    inset:-2px;

    background:linear-gradient(
        135deg,
        #3b82f6,
        #8b5cf6,
        #06b6d4,
        #3b82f6
    );

    background-size:300% 300%;
    animation:borderFlow 6s linear infinite;

    border-radius:24px;
    z-index:-2;
}

.feature-card::after{
    content:"";
    position:absolute;
    inset:2px;
    background:#0b1120;
    border-radius:22px;
    z-index:-1;
}

@keyframes borderFlow{
    0%{
        background-position:0% 50%;
    }
    100%{
        background-position:100% 50%;
    }
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(59,130,246,0.25);
}

.icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    border-radius:18px;

    background:linear-gradient(
        135deg,
        #3b82f6,
        #8b5cf6
    );

    margin-bottom:25px;
}

.feature-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.feature-card p{
    color:#cbd5e1;
    line-height:1.9;
    font-size:16px;
}

/* Responsive */
@media(max-width:991px){
    .feature-grid{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:30px;
    }
}





















/* ===== App Development page ===== */

body{
    overflow-x:hidden;
    background:#ffffff;
    font-size: 18px;
}

/* Fade Up Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Fade Left */
@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Fade Right */
@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Floating Effect */
@keyframes floating{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* Gradient Animation */
@keyframes gradientMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

.inner-banner{
    position:relative;
    overflow:hidden;
}

.inner-banner::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a,
        #2563eb,
        #0f172a
    );

    background-size:400% 400%;
    animation:gradientMove 12s ease infinite;
    z-index:-2;
}

.inner-banner-content h1{
    animation:fadeUp 1s ease forwards;
}

.appdev-text{
    animation:fadeLeft 1s ease forwards;
    text-align: left;
}

.appdev-image img{
    width:100%;
    border-radius:20px;
    animation:fadeRight 1s ease forwards,
              floating 5s ease-in-out infinite;
}

.future-ready-section{
    position:relative;
    overflow:hidden;
    background:#050816;
}

.feature-card{
    position:relative;
    overflow:hidden;
    transition:.4s;
    animation:fadeUp .8s ease forwards;
}

.feature-card:nth-child(1){
    animation-delay:.2s;
}

.feature-card:nth-child(2){
    animation-delay:.4s;
}

.feature-card:hover{
    transform:translateY(-12px);
}

.feature-card::before{
    content:"";
    position:absolute;
    top:-100%;
    left:-100%;
    width:300%;
    height:300%;

    background:linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );

    transform:rotate(25deg);
    transition:1s;
}

.feature-card:hover::before{
    left:100%;
}

.icon{
    animation:floating 4s ease-in-out infinite;
}

.btn{
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );

    transition:.8s;
}

.btn:hover::before{
    left:120%;
}

.testimonial{
    animation:fadeUp 1s ease forwards;
}

.logo-box{
    transition:.4s;
}

.logo-box:hover{
    transform:translateY(-8px) scale(1.05);
}

.final-cta{
    position:relative;
    overflow:hidden;

    background:linear-gradient(
        -45deg,
        #0f172a,
        #1e40af,
        #2563eb,
        #0f172a
    );

    background-size:400% 400%;
    animation:gradientMove 10s ease infinite;
}

.final-cta h2,
.final-cta p,
.final-cta .button-row{
    animation:fadeUp 1s ease forwards;
}

.site-footer{
    background:#020617;
}

.footer-grid div{
    transition:.3s;
    cursor:pointer;
}
.footer-grid div img{
    width: 180px;
}
.footer-grid div:hover{
    transform:translateX(8px);
    color:#3b82f6;
}

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}









@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#0f172a;
    overflow-x:hidden;
    font-size: 18px;
}
.gradient-text{
    background:linear-gradient(
        135deg,
        #2563eb,
        #06b6d4,
        #8b5cf6,
        #2563eb
    );

    background-size:300% 300%;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:gradientMove 8s ease infinite;
}

@keyframes gradientMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}
.hero-banner{
    min-height:90vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-banner::before{
    content:"";
    position:absolute;
    inset:0;

    /*background:linear-gradient(*/
    /*    -45deg,*/
    /*    #0f172a,*/
    /*    #1e40af,*/
    /*    #2563eb,*/
    /*    #0f172a*/
    /*);*/

    background-size:400% 400%;
    animation:gradientMove 12s ease infinite;
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.hero-content h1{
    font-size: 55px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 25px;
    font-family: Arial, Helvetica, sans-serif;
}

.hero-subtext{
    max-width:1000px;
    font-size:20px;
    line-height:1.8;
}
.card{
    background:#fff;
    border-radius:24px;
    padding:35px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 60px rgba(37,99,235,.15);
}
.icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    font-size:30px;

    margin-bottom:20px;

    animation:float 5s ease infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

.blue{
    background:linear-gradient(135deg,#2563eb,#3b82f6);
}

.teal{
    background:linear-gradient(135deg,#06b6d4,#14b8a6);
}

.blue-dark{
    background:linear-gradient(135deg,#1e40af,#2563eb);
}

.teal-dark{
    background:linear-gradient(135deg,#0f766e,#14b8a6);
}
.btn,
.btn-primary,
.btn-outline{
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.btn-primary{
    background:#2563eb;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-primary::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.3),
      transparent
    );

    transition:.8s;
}

.btn-primary:hover::before{
    left:100%;
}
.header{
    text-align:center;
    margin-bottom:70px;
}

.subtitle{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:#eff6ff;

    color:#2563eb;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

.header h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}

.header p{
    max-width:1000px;
    margin:auto;
    line-height:1.8;
    color:#64748b;
    font-size:18px;
}
.cta-section{
    padding:120px 0;
    text-align:center;

    background:linear-gradient(
        -45deg,
        #0f172a,
        #1e40af,
        #2563eb,
        #7c3aed
    );

    background-size:400% 400%;
    animation:gradientMove 10s ease infinite;
}

.cta-section h2{
    color:#fff;
    font-size:42px;
}

.cta-section p{
    color:#e2e8f0;
    margin:20px 0 40px;
}
.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}








/*EOR Page*/

.eor-section{
    padding:50px 0;
    background:#f8fafc;
}

.eor-section .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    text-align: left;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;

    background:#e0f2fe;
    color:#0284c7;

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:30px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    margin:20px 0;
}

.section-header p{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

.eor-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.eor-card{
    background:#ffffff;
    padding:40px;
    border-radius:24px;

    border:1px solid #e5e7eb;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:all .4s ease;
    position:relative;
    overflow:hidden;
}

.eor-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(37,99,235,.15);
}

.eor-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #2563eb,
        #06b6d4,
        #8b5cf6
    );
}

.eor-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff;
    font-size:30px;

    margin-bottom:25px;
}

.eor-card h3{
    font-size:24px;
    color:#0f172a;
    margin-bottom:15px;
    font-weight:700;
}

.eor-card p{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

@media(max-width:991px){

    .eor-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:36px;
    }

    .eor-card{
        padding:30px;
    }
}








/*Recruiting Page*/

.recruitment-section{
    padding:50px 0;
    background:#f8fafc;
}

.recruitment-section .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#e0f2fe;
    color:#0284c7;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:48px;
    font-weight:800;
    color:#0f172a;
    margin:20px 0;
    line-height:1.2;
}

.section-header p{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

.recruitment-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.recruitment-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    border:1px solid #e5e7eb;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.4s ease;
    position:relative;
    overflow:hidden;
    text-align: left;
}

.recruitment-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(37,99,235,.15);
}

.recruitment-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #2563eb,
        #06b6d4,
        #8b5cf6
    );
}

.recruitment-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff;
    font-size:30px;

    margin-bottom:25px;
}

.recruitment-card h3{
    font-size:24px;
    color:#0f172a;
    margin-bottom:15px;
    font-weight:700;
}

.recruitment-card p{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

@media(max-width:991px){

    .recruitment-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:36px;
    }

    .recruitment-card{
        padding:30px;
    }
}








/*Content Services Page*/

.content-services-section{
    padding:100px 0;
    background:#f8fafc;
}

.content-services-section .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-header{
    max-width:950px;
    margin:0 auto 70px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;

    background:#e0f2fe;
    color:#0284c7;

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    margin:20px 0;
}

.section-header p{
    font-size:18px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:15px;
}

.content-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.content-card{
    background:#fff;
    padding:40px;
    border-radius:24px;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.content-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(37,99,235,.15);
}

.content-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #2563eb,
        #06b6d4,
        #8b5cf6
    );
}

.content-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff;
    font-size:30px;

    margin-bottom:25px;
}

.content-card h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.content-card p{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

@media(max-width:991px){

    .content-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:36px;
    }

    .content-card{
        padding:30px;
    }
}




/*Content Services Page*/

.content-expertise{
    padding:50px 0;
    background:#f8fafc;
}

.section-header{
    max-width:900px;
    margin:0 auto 80px;
    text-align:left;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#e0f2fe;
    color:#0284c7;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
}

.section-header h2{
    font-size:36px;
    font-weight:700;
    color:#0f172a;
    margin:20px 0;
}

.section-header p{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

.expertise-block{
    display:flex;
    gap:40px;
    margin-bottom:50px;
    padding:40px;
    background:#fff;
    border-radius:24px;
    border:1px solid #e5e7eb;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.block-number{
    min-width:80px;
    height:80px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    color:#fff;
    font-size:28px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.block-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:#0f172a;
}

.block-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:15px;
}

.ai-ready-content{
    padding:0 0 50px;
    background:#f8fafc;
}

.ai-card{
    padding:60px;
    border-radius:30px;
    background:linear-gradient(
        135deg,
        #0f172a,
        #1e40af,
        #2563eb
    );
    color:#fff;
}

.ai-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
}

.ai-card h2{
    font-size:42px;
    margin-bottom:25px;
}

.ai-card p{
    font-size:18px;
    line-height:1.9;
    color:#e2e8f0;
}

@media(max-width:768px){

    .expertise-block{
        flex-direction:column;
    }

    .section-header h2{
        font-size:36px;
    }

    .ai-card{
        padding:35px;
    }

    .ai-card h2{
        font-size:30px;
    }
}





.footer-logo img {
    width: 180px;   /* Adjust as needed */
    height: auto;
    display: block;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-grid > div:last-child {
    white-space: nowrap;
}
.copyright {
    white-space: nowrap;
}





.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;   /* Space between menu items */
}

.main-nav a {
    font-size: 20px;      /* Increase text size */
    font-weight: 600;     /* Make it slightly bold */
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2563eb;
}

.submenu a {
    font-size: 16px;
    font-weight: 500;
}