/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --color-cyan: #00d4ff;
    --color-green: #7ef06c;
    --color-purple: #8b5cf6;
    --color-orange: #f59e0b;
    --color-dark: #0a0e27;
    --color-slate: #1e293b;
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    
    --gradient-cyan: linear-gradient(135deg, #00d4ff 0%, #00b8d4 100%);
    --gradient-green: linear-gradient(135deg, #7ef06c 0%, #00ff9d 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-brand: linear-gradient(135deg, #00d4ff 0%, #7ef06c 100%);
    
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

html, body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===========================
   Typography
   =========================== */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-cyan);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--color-cyan);
    color: var(--color-cyan);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
}

.btn-outline-cyan {
    border: 2px solid var(--color-cyan);
    color: var(--color-cyan);
}

.btn-outline-cyan:hover {
    background: rgba(0, 212, 255, 0.1);
}

.btn-outline-green {
    border: 2px solid var(--color-green);
    color: #059669;
}

.btn-outline-green:hover {
    background: rgba(126, 240, 108, 0.1);
}

.btn-outline-purple {
    border: 2px solid var(--color-purple);
    color: var(--color-purple);
}

.btn-outline-purple:hover {
    background: rgba(139, 92, 246, 0.1);
}

.btn-outline-orange {
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
}

.btn-outline-orange:hover {
    background: rgba(245, 158, 11, 0.1);
}

/* ===========================
   Badges
   =========================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: var(--color-gray-100);
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.badge-primary {
    background: var(--gradient-cyan);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.badge-green {
    background: var(--gradient-green);
    color: var(--color-white);
}

.badge-gradient {
    background: var(--gradient-brand);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.badge-popular {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    color: var(--color-white);
    border-radius: 1rem;
    padding: 0.1rem 0.5rem;
    font-size: 0.75rem;
}

.badge-outline-green {
    background: transparent;
    border: 2px solid var(--color-green);
    color: #059669;
    border-radius: 1rem;
    padding: 0.1rem 0.5rem;
    font-size: 0.75rem;
}

.badge-outline-orange {
    background: transparent;
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    border-radius: 1rem;
    padding: 0.1rem 0.5rem;
    font-size: 0.75rem;
}

/* Floating Action Button */
.fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000; /* keep on top of most content */
  transition: bottom 0.25s ease-out;
}

/* Animated Gradient Background */
.fab-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(270deg, #00d4ff, #7ef06c, #8b5cf6, #f59e0b);
  background-size: 600% 600%;
  animation: gradientAnimation 12s ease infinite;
  z-index: 0;
}

/* Icon */
.fab-icon {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 1;
  object-fit: contain;
  pointer-events: none;
  margin-left: 5px;
}

/* Hover effect */
.fab:hover {
  transform: scale(1.1) rotate(10deg);
  transition: transform 0.3s ease;
}

/* FAB Menu (Dynamic) */
.fab-menu {
  position: fixed; /* follows FAB position dynamically via JS */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1100; /* ensure it appears ABOVE the FAB */
}

.fab-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab-option {
  background-color: #fff;
  color: #333;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: translateX(30px);
  opacity: 0;
}

.fab-menu.show .fab-option {
  transform: translateX(0);
  opacity: 1;
}

.fab-option:hover {
  background-color: #007bff;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .fab {
    width: 50px;
    height: 50px;
  }

  .fab-icon {
    max-width: 85%;
    max-height: 85%;
    margin-left: 3px;
  }

  .fab-option {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .fab {
    width: 45px;
    height: 45px;
  }

  .fab-icon {
    max-width: 75%;
    max-height: 75%;
    margin-left: 5px;
  }

  .fab-option {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===========================
   Top Bar Container
   =========================== */
.top-bar {
  background-color: #00061b;  /* dark background */
  color: #fff;                 /* white text */
  font-size: 0.9rem;
  padding: 6px 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
}

.top-bar-container {
  display: flex;
  justify-content: flex-end; /* desktop: align right */
  align-items: center;
  gap: 30px;                 /* spacing between items */
}

.top-bar-container span {
  display: flex;
  align-items: center;
  gap: 5px;                  /* spacing between icon and text */
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: #0ff;
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
  .top-bar-container {
    justify-content: center;  /* center horizontally */
    flex-direction: row;      /* keep items in one line */
    flex-wrap: wrap;          /* wrap only if necessary */
    gap: 15px;                /* spacing between phone/email */
  }

  .top-bar-container span {
    gap: 5px;                 /* space between icon and text */
    white-space: nowrap;      /* prevent line breaks inside span */
  }

  body {
    padding-top: 50px;        /* prevent content overlap */
  }
}

/* Small Phones (up to 480px) */
@media (max-width: 480px) {
  .top-bar-container {
    justify-content: center;  /* center horizontally */
    flex-direction: row;      /* keep items in one line */
    flex-wrap: wrap;          /* wrap only if necessary */
    gap: 10px;                /* slightly smaller gap for tiny screens */
  }

  .top-bar-container span {
    gap: 3px;                 /* reduce icon-text gap for small screens */
    font-size: 0.75rem;       /* reduce text size slightly */
  }

  body {
    padding-top: 50px;
  }
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    position: fixed;
    top: 34px; /* leave space for top-bar */
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    gap: 2rem;
    padding-left: 0;  /* removes left gap */
    padding-right: 1rem; /* keep some right padding for spacing */
}

/* ===== Logo ===== */
.logo-img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
    margin-left: 0;
}

/* ===== Nav Links ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-gray-600);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-cyan);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-cyan);
}

/* ===== Dropdown ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1rem;
    background: var(--color-white);
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 14rem;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-gray-700);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--color-gray-50);
    color: var(--color-cyan);
}

/* ===========================
   Industries Dropdown - Two Column
=========================== */
.nav-dropdown.industries-dropdown .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr)); /* two columns */
    column-gap: 1rem;  /* gap between columns */
    row-gap: 0.25rem;  /* gap between rows */
    padding: 0.5rem 1rem; /* padding inside dropdown */
    min-width: 36rem;  /* wider for long text */
    max-width: 100%;
    box-sizing: border-box;
}

/* Item styles */
.nav-dropdown.industries-dropdown .dropdown-menu a {
    padding: 0.35rem 0.5rem; /* tighter spacing */
    font-size: 0.9rem;       /* slightly smaller for long text */
    white-space: normal;     /* wrap text if too long */
    word-break: break-word;
}

/* Hover effect */
.nav-dropdown.industries-dropdown .dropdown-menu a:hover {
    background: var(--color-gray-50);
    color: var(--color-cyan);
}

/* Responsive: Single column on smaller screens */
@media (max-width: 992px) {
    .nav-dropdown.industries-dropdown .dropdown-menu {
        display: flex;
        flex-direction: column;
        min-width: 14rem;  /* fallback width */
        padding: 0.5rem 0.75rem;
    }
}



/* ===== Actions & Mobile Toggle ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    font-size: 1.8rem;
    color: var(--color-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--color-cyan);
}



/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 91px; /* top-bar + navbar height */
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: 999;
}

.mobile-menu.active {
    max-height: 1000px;
}

.mobile-menu-content {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--color-gray-600);
    font-weight: 500;
    border-bottom: 1px solid var(--color-gray-100);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--color-cyan);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.mobile-nav-actions .btn {
    width: 100%;
    justify-content: flex-start;
}

/* ===== Mobile Dropdown ===== */
.mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    margin-top: 0.5rem;
}

.mobile-dropdown-menu a {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-gray-900);
    transition: var(--transition);
}

.mobile-nav-dropdown.open .mobile-dropdown-menu {
    display: flex;
}


/* ================================
   MOBILE MENU DROPDOWN STYLES
================================ */
.mobile-dropdown {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
}

.mobile-dropdown .mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
}

.mobile-dropdown .mobile-nav-link:hover {
  color: #00aaff; /* Highlight color on hover */
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  margin-top: 0.3rem;
  animation: slideDown 0.3s ease forwards;
}

.mobile-dropdown-menu a {
  color: #ccc;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-dropdown-menu a:hover {
  color: #fff;
}

/* Animation for smooth dropdown */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Optional: icon rotation when opened */
.mobile-dropdown.open .fa-chevron-down {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* Adjust dropdown alignment for Industries (last dropdown) */
.nav-dropdown:last-child .dropdown-menu {
  right: 0;             /* Anchor to the right edge of its parent */
  left: auto;           /* Disable left positioning */
  transform: translateX(-20%); /* Shift it slightly to the left */
}

/* Optional: ensure dropdown doesn't overflow */
.nav-dropdown .dropdown-menu {
  white-space: normal;
  min-width: 250px;
  max-width: 320px;
  word-wrap: break-word;
}

/* Mobile dropdown menu */
.mobile-dropdown-menu {
  display: none;              /* hidden by default */
  flex-direction: column;
  margin-top: 0.3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  gap: 0.3rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* When open */
.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
  max-height: 1000px; /* allow full height */
}

/* Dropdown links */
.mobile-dropdown-menu a {
  color: var(--color-gray-700);
  padding: 0.5rem 0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-dropdown-menu a:hover {
  color: var(--color-cyan);
}


/* ===========================
   Responsive Media Queries
   =========================== */

/* Tablets (up to 1024px) */
@media (max-width: 1024px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-img {
        height: 2.8rem;
    }

    .nav-wrapper {
        padding: 0 0rem;
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
    .nav-wrapper {
        height: 4rem;
        padding: 0 0rem;
    }

    .logo-img {
        height: 2.5rem;
    }

    .mobile-menu-btn {
        font-size: 1.5rem;
    }

    .mobile-menu-content {
        padding: 1rem 1.25rem;
    }

    .mobile-nav-link {
        font-size: 0.95rem;
    }
}

/* Small Phones (up to 480px) */
@media (max-width: 480px) {
    .nav-wrapper {
        height: 4rem;
        padding: 0 0rem;
    }

    .logo-img {
        height: 2.3rem;
    }

    .mobile-menu-btn {
        font-size: 1.4rem;
    }

    .mobile-menu-content {
        padding: 0.75rem 1rem;
    }

    .mobile-nav-link {
        font-size: 0.9rem;
    }
}

/* ===========================
   Mobile & Small Devices Adjustments
   =========================== */

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        font-size: 0.75rem; /* smaller font */
        height: 35px;
    }

    .top-bar-left a {
        margin-top: 3px;
    }

    .top-bar-right a{
      display: none;
    }

    .navbar {
        top: 35px; /* adjust for smaller top-bar */
    }
    /* Navbar */
    .nav-wrapper {
        height: 3.8rem; /* smaller navbar height */
        padding: 0 0rem;
    }
    .logo-img {
        height: 2.5rem; /* smaller logo */
    }
    .nav-link {
        font-size: 0.85rem; /* smaller link text */
    }

    /* Mobile Menu */
    .mobile-menu {
        top: 67px; /* adjust for smaller top-bar + navbar */
    }
    .mobile-menu-content {
        padding: 0.8rem 1rem;
    }
    .mobile-nav-link {
        font-size: 0.85rem;
    }
}

/* Small Phones (up to 480px) */
@media (max-width: 480px) {
    /* Top Bar */
    .top-bar {
        font-size: 0.7rem; /* even smaller font */
        height:35px;
    }

    .top-bar-left a {
        margin-top: 5px;
    }

    .top-bar-right a{
      display: none;
    }

    .navbar {
        top: 35px; /* adjust for smaller top-bar */
    }

    /* Navbar */
    .nav-wrapper {
        height: 3.5rem; /* smaller navbar height */
        padding: 0 0rem;
    }
    .logo-img {
        height: 2.2rem; /* smaller logo */
    }
    .nav-link {
        font-size: 0.8rem; /* smaller link text */
    }

    /* Mobile Menu */
    .mobile-menu {
        top: 63px; /* adjust for smaller top-bar + navbar */
    }
    .mobile-menu-content {
        padding: 0.6rem 0.8rem;
    }
    .mobile-nav-link {
        font-size: 0.8rem;
    }
}



/* ===========================
   Hero Section
   =========================== */
.hero-section {
    padding: 10rem 0 5rem;
    position: relative;
    min-height: 100vh;
    overflow: visible;
}

.gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 50%, #dcfce7 100%);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.15), transparent 50%);
}

.gradient-overlay-2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 80%, rgba(126, 240, 108, 0.15), transparent 50%);
}

.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.hero-title {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-slate) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: var(--color-gray-600);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.25rem 0.5rem;
}

.hero-image {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: var(--gradient-brand);
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

.image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--color-white);
}

.image-wrapper img {
    width: 100%;
    height: auto;
}

.stats-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border: 2px solid rgb(212, 212, 212);
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card.gradient-cyan:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
    transform: translateY(-5px);
}

.stat-card.gradient-green:hover {
    border-color: var(--color-green);
    box-shadow: 0 10px 30px rgba(126, 240, 108, 0.15);
    transform: translateY(-5px);
}

.stat-card.gradient-purple:hover {
    border-color: var(--color-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
    transform: translateY(-5px);
}

.stat-card.gradient-orange:hover {
    border-color: var(--color-orange);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.stat-card:hover .stat-value {
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.gradient-cyan {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-green {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-purple {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-orange {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 8rem 0 4rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 7rem 0 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   Sections
   =========================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-slate) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--color-gray-600);
}

.section-bg-circle {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.circle-right {
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-cyan) 0%, transparent 100%);
}

.circle-left {
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, var(--color-green) 0%, transparent 100%);
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* ===========================
   About Section
   =========================== */
.about-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

/* ===========================
   About Grid
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ===========================
   About Cards
   =========================== */
.about-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-100);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Icon separate from heading */
.about-icon {
    font-size: 2.5rem;          /* large icon */
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Container for icon + heading inline */
.about-heading {
    display: flex;           /* inline flex for icon + heading */
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center in card */
    gap: 0.75rem;            /* spacing between icon and heading */
    margin-bottom: 1rem;     /* space below heading */
}

/* Icon */
.about-icon {
    font-size: 2.5rem;       /* large icon */
    line-height: 1;          /* ensures vertical centering */
    display: inline-block;
    margin-bottom: 0;        /* remove extra margin */
    transition: transform 0.3s ease;
}

/* Heading */
.about-heading h3 {
    font-size: 1.5rem;
    line-height: 1;          /* aligns vertically with icon */
    margin-top: 25px;     /* slight spacing from icon */
}

/* Card Hover Effects */
.about-card.hover-blue:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.about-card.hover-green:hover {
    border-color: var(--color-green);
    box-shadow: 0 10px 30px rgba(126, 240, 108, 0.1);
}

.about-card.hover-blue:hover .about-icon {
    transform: scale(1.2);
    color: var(--color-cyan);
}

.about-card.hover-green:hover .about-icon {
    transform: scale(1.2);
    color: var(--color-green);
}

/* Heading inside card */
.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Paragraph text */
.about-card p {
    font-size: 1rem;
    color: var(--color-gray-700);
    line-height: 1.6;
}

/* ===========================
   Values Section
   =========================== */
.values-section {
  background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 50%, #dcfce7 100%);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

/* Center the badge */
.values-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* Grid layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Each card */
.value-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

/* Icon + heading in one line */
.value-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
}

/* Icon styling */
.value-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Hover effects */
.value-card:hover {
  border-color: var(--color-cyan);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.value-card:hover .value-icon {
  transform: scale(1.2);
}

/* Description text */
.value-card p {
  font-size: 1rem;
  color: var(--color-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Reduce gap between About and Values sections */
.about-grid {
  margin-bottom: 1rem; /* was 4rem */
}

.about-section {
  padding-bottom: 2rem; /* reduce bottom padding */
}

.values-section {
  margin-top: 0; /* ensure no extra gap at the top */
  padding-top: 2rem; /* keep some breathing space inside */
}

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

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

  .values-section {
    padding: 2rem 1.5rem;
  }

  .value-icon {
    font-size: 1.8rem;
  }

  .value-heading {
    font-size: 1.1rem;
  }
}


/* ===========================
   Services Section
   =========================== */
.services-section {
  background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-gray-100) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

/* Animated Blobs */
.blob-animation {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(60px);
  opacity: 0.3;
  animation: blob 7s infinite;
}
.blob-1 { top: 5rem; left: 5rem; background: var(--color-cyan); }
.blob-2 { top: 10rem; right: 5rem; background: var(--color-green); animation-delay: 2s; }
.blob-3 { bottom: -2rem; left: 10rem; background: var(--color-purple); animation-delay: 4s; }

@keyframes blob {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-50px) scale(1.1); }
  66% { transform: translate(-20px,20px) scale(0.9); }
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

/* Service Card */
.service-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: 500px; /* ensures button alignment */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Header: Icon + Title inline */
.service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: inset 0 3px 6px rgba(0,0,0,0.2);
}

.service-card.cyan .service-icon { background: var(--gradient-cyan); }
.service-card.green .service-icon { background: var(--gradient-green); }
.service-card.purple .service-icon { background: var(--gradient-purple); }
.service-card.orange .service-icon { background: var(--gradient-orange); }

.service-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gray-900);
}

/* Description + List */
.service-desc {
  color: var(--color-gray-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-list {
  flex: 1;
  text-align: left;
  margin-bottom: 1.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-gray-700);
}

.service-list i {
  color: var(--color-green);
  margin-top: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-cyan { border: 2px solid var(--color-cyan); color: var(--color-cyan); }
.btn-outline-cyan:hover { background: var(--gradient-cyan); color: #fff; }

.btn-outline-green { border: 2px solid var(--color-green); color: var(--color-green); }
.btn-outline-green:hover { background: var(--gradient-green); color: #fff; }

.btn-outline-purple { border: 2px solid var(--color-purple); color: var(--color-purple); }
.btn-outline-purple:hover { background: var(--gradient-purple); color: #fff; }

.btn-outline-orange { border: 2px solid var(--color-orange); color: var(--color-orange); }
.btn-outline-orange:hover { background: var(--gradient-orange); color: #fff; }

/* Match list icon color with card theme */
.service-card.cyan .service-list i {
  color: var(--color-cyan);
}

.service-card.green .service-list i {
  color: var(--color-green);
}

.service-card.purple .service-list i {
  color: var(--color-purple);
}

.service-card.orange .service-list i {
  color: var(--color-orange);
}


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

}

@media (max-width: 480px) {
  .service-list {
    margin-bottom: 0.2rem;
  }

  .service-card a.btn {
    margin-top: 0.05rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* ===========================
   Process Section
   =========================== */


.process-section {
    position: relative;
    z-index: 10;
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    overflow: hidden;
}

.process-section::before,
.process-section::after {
    content: '';
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.process-section::before {
    top: 0;
    left: 0;
    background: var(--color-cyan);
}

.process-section::after {
    bottom: 0;
    right: 0;
    background: var(--color-green);
}

.process-header {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 4rem;
}

.process-header h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-slate) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.process-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.process-step:hover .process-number {
    transform: scale(1.1);
}

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

@media (max-width: 640px) {
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-section {
        padding: 2.5rem 1.5rem;
    }
}

/* ===========================
   Service Details Section
   =========================== */
.service-details-section {
    background: var(--color-white);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .badge {
    display: inline-block;
    background: var(--color-cyan);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-gray-600);
    font-size: 1rem;
}

/* Tabs Header */
.tabs-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: var(--color-gray-100);
    padding: 0.5rem;
    border-radius: 0.75rem;
}

.tab-btn {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--color-gray-600);
    background: transparent;
    transition: var(--transition);
    text-align: center;
}

.tab-btn:hover {
    color: var(--color-dark);
}


/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Detail Card */
.detail-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-100);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.detail-card:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Icon + Heading Inline */
.detail-icon-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 1.25rem;
}

.detail-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.detail-card p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    margin: 0.75rem 0 1rem 0;
}

.detail-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-gray-700);
}

.detail-card i {
    color: var(--color-green);
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Tab Footer Button */
.tab-footer {
    text-align: center;
    margin-top: 2rem;
}

/* ===========================
   Service Details Section
   Tab-Specific Icon & Bullet Colors
===========================*/

/* Job Seekers: Cyan */
#job-seekers .detail-icon i,
#job-seekers .detail-card li i {
    color: var(--color-cyan) !important;
}

/* Employers: Green */
#employers .detail-icon i,
#employers .detail-card li i {
    color: var(--color-green) !important;
}

/* Aspirants: Purple */
#aspirants .detail-icon i,
#aspirants .detail-card li i {
    color: var(--color-purple) !important;
}

/* Institutions: Orange */
#institutions .detail-icon i,
#institutions .detail-card li i {
    color: var(--color-orange) !important;
}


#job-seekers .tab-footer .btn{
    background: var(--gradient-cyan);
    border-color: var(--color-cyan);
}

#employers .tab-footer .btn{
    background: var(--gradient-green);
    border-color: var(--color-green);
}

#aspirants .tab-footer .btn{
    background: var(--gradient-purple);
    border-color: var(--color-purple);
}

#institutions .tab-footer .btn{
    background: var(--gradient-orange);
    border-color: var(--color-orange);
}

/* ------------------------
   Tab-Specific Active Button Colors
-------------------------*/
/* Job Seekers Tab Active - Cyan Gradient */
.service-details-section.job-seekers-active .tabs-header .tab-btn[data-tab="job-seekers"].active {
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    color: #fff;
}

/* Employers Tab Active - Green Gradient */
.service-details-section.employers-active .tabs-header .tab-btn[data-tab="employers"].active {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: #fff;
}

/* Aspirants Tab Active - Purple Gradient */
.service-details-section.aspirants-active .tabs-header .tab-btn[data-tab="aspirants"].active {
    background: linear-gradient(135deg, #7b1fa2, #4a0072);
    color: #fff;
}

/* Institutions Tab Active - Orange Gradient */
.service-details-section.institutions-active .tabs-header .tab-btn[data-tab="institutions"].active {
    background: linear-gradient(135deg, #ff8c00, #ff6f00);
    color: #fff;
}

/* Optional: Smooth transition */
.tabs-header .tab-btn {
    transition: all 0.3s ease;
}

/* Card Hover - Job Seekers (Cyan Gradient) */
.service-details-section.job-seekers-active .detail-card:hover {
    border-color: #00aaff;
}

/* Card Hover - Employers (Green Gradient) */
.service-details-section.employers-active .detail-card:hover {
    border-color: #1e7e34;
}

/* Card Hover - Aspirants (Purple Gradient) */
.service-details-section.aspirants-active .detail-card:hover {
    border-color: #4a0072;
}

/* Card Hover - Institutions (Orange Gradient) */
.service-details-section.institutions-active .detail-card:hover {
    border-color: #ff6f00;
}

/* Optional: Smooth transition for hover */
.detail-card {
    transition: all 0.3s ease;
}


.tab-btn.active {
    box-shadow: linear-gradient(135deg, #00d4ff, #00aaff);
}

/* Default active style for Job Seekers tab */
.tabs-header .tab-btn[data-tab="job-seekers"].active {
  background: linear-gradient(135deg, #00d4ff, #00aaff);
  color: #fff;
}


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

@media (max-width: 640px) {
    .tabs-header {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.25rem;
    }
    .tab-btn {
        font-size: 0.875rem;
        padding: 0.4rem 0.5rem;
    }
    .detail-card {
        padding: 1rem;
    }
    .detail-card h3 {
        font-size: 1rem;
    }
    .detail-card p {
        font-size: 0.8rem;
    }
    .detail-card ul {
        gap: 0.4rem;
    }
    .detail-card li {
        font-size: 0.8rem;
    }
    .detail-icon {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    .section-header p {
        font-size: 0.875rem;
    }
    .tabs-header {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    .tab-btn {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }
    .details-grid {
        gap: 0.75rem;
    }
}

/* ---------- Service Details Tabs Mobile Fix ---------- */
@media (max-width: 640px) {
    .tabs-header {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns per row */
        grid-auto-rows: auto;
        gap: 0.5rem;
    }

    .tab-btn {
        font-size: 0.875rem; /* smaller text */
        padding: 0.5rem 0.75rem; /* smaller padding */
        text-align: center;
    }
}

/* ===========================
   Industries Section
=========================== */
.industries-section {
    background: var(--color-gray-50);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .badge {
    display: inline-block;
    background: var(--color-cyan);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-gray-600);
    font-size: 1rem;
}

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

/* Card */
.industry-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-100);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.industry-card:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Card Header: Icon + Title inline */
.industry-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Icon */
.industry-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 1.5rem;
}

/* Title */
.industry-card-header h3 {
    font-size: 1rem;
    margin: 0;
}

/* Description */
.industry-card p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin: 0;
}

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

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


/* ===========================
   Contact Section
   =========================== */
.contact-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    background: var(--color-white);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(126, 240, 108, 0.2);
    color: #059669;
    display: block;
}


/* ===========================
   Footer Styles
=========================== */
.footer {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: #fff;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 50%,
    rgba(126, 240, 108, 0.1) 100%
  );
  pointer-events: none; /* important so it doesn’t block stars */
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Column Styles */
.footer-col h4 {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 1.1rem;
}

.footer-col p {
  color: #d1d5db;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-logo {
  height: 3rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  padding-left: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* ===========================
   Testimonials
=========================== */
.testimonial-wrapper {
  height: 250px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.testimonial-list {
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.2s linear;
}

.testimonial-item {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-item:last-child {
  border-bottom: none;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-header img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid #ccc;
}

.testimonial-name {
  color: #fff;
  font-weight: 600;
}

/* ===========================
   Form Styling
=========================== */
.footer-col form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.footer-col form input,
.footer-col form textarea {
  width: 100%;
  margin-bottom: 3px;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  background-color: #1f2937;
  color: #fff;
  box-sizing: border-box;
}

.footer-col form input::placeholder,
.footer-col form textarea::placeholder {
  color: #9ca3af;
}

.footer-col form textarea {
  resize: none;
}

.footer-col form button {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-radius: 0.5rem;
  border: 2px solid #00d4ff;
  background: transparent;
  color: #00d4ff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-col form button:hover {
  background: linear-gradient(90deg, #00d4ff, #7ef06c);
  border-color: transparent;
  color: #fff;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload .file-label {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  background-color: #1f2937;
  color: #fff;
  box-sizing: border-box;
}

.file-upload .file-label:hover {
  opacity: 0.9;
}

.file-upload .file-name {
  color: #9ca3af;
  font-size: 0.9rem;
}


/* ===========================
   Star Rating
=========================== */
.star-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  position: relative;
  z-index: 1000;
  pointer-events: auto;
}

.stars {
  display: flex;
  gap: 8px;
  cursor: pointer;
  font-size: 2rem;
  position: relative;
  z-index: 1001;
  pointer-events: auto;
}

.star {
  color: #fff;
  transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
  position: relative;
  z-index: 1002;
  pointer-events: auto;
}

/* Hover + Active Effects */
.star.active, .star.hover {
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

/* Color Gradients by Level */
.star.one.active, .star.one.hover { color: #ff4747; }
.star.two.active, .star.two.hover { color: #ff914d; }
.star.three.active, .star.three.hover { color: #ffcc00; }
.star.four.active, .star.four.hover { color: #ffe600; }
.star.five.active, .star.five.hover { color: #00ff88; }

/* ===========================
   Responsive
=========================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-3 {
    margin-top: 2rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col-2,
  .footer-col-3 {
    margin-top: 2rem;
  }
  .footer-col form {
    padding: 0 0.5rem;
  }
  .footer-col form button {
    width: 100%;
  }
  .star-rating {
    justify-content: center;
  }
}

/* ===========================
   Utilities
=========================== */
.text-center {
  text-align: center;
}

/* ===========================
   Animations
=========================== */
@keyframes pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.3; }
}


/* ---------- Hero Section Mobile Fixes ---------- */
@media (max-width: 768px) {
  /* Make badge smaller */
  .badge {
    font-size: 16px;
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
  }

  /* Adjust hero layout for smaller screens */
  .hero-section {
    text-align: left;

  }

  /* Prevent stats overflow */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
    overflow-x: hidden;
  }

  .stat-card {
    width: 100%;
    margin: 0;
  }

  .stat-value {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

/* Extra small screens (phones under 480px) */
@media (max-width: 480px) {
  .badge {
    font-size: 16px;
    padding: 4px 8px;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
}

/* ---------- About Section Mobile Fixes ---------- */
@media (max-width: 768px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns like hero stats */
    gap: 1rem;
    padding: 0 1rem; /* avoid overflow */
    box-sizing: border-box;
  }

  .about-card {
    padding: 1.5rem; /* smaller card padding */
    text-align: center; /* align like hero section */
  }
}

@media (max-width: 480px) {
  .about-grid {
    grid-template-columns: 1fr; /* single column stack */
    gap: 0.75rem;
    padding: 0 0.75rem;
  }

  .about-card {
    padding: 1rem;
  }
}

/* ---------- Values Section Mobile Fixes ---------- */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }

  .value-card {
    padding: 1.2rem; /* slightly smaller padding */
  }

  .value-icon {
    font-size: 1.8rem; /* reduce icon size */
  }

  .value-card p {
    font-size: 0.9rem; /* smaller text */
  }
}

@media (max-width: 768px) {
   .section-header {
    text-align: left;
  }

  .values-grid {
    grid-template-columns: 1fr; /* single column on smaller screens */
    gap: 1rem;
    padding: 0 1rem; /* prevent overflow */
  }

  .value-card {
    padding: 1rem; /* reduce padding further */
  }

  .value-icon {
    font-size: 1.6rem; /* smaller icon */
  }

  .value-card p {
    font-size: 0.85rem; /* smaller text */
  }
}

@media (max-width: 480px) {

  .value-card {
    padding: 0.8rem; /* minimal padding on phones */
  }

  .value-icon {
    font-size: 1.4rem; /* smallest icon */
  }

  .value-card p {
    font-size: 0.8rem; /* smallest text */
  }
}

/* ---------- Services & Process Mobile Fixes ---------- */
@media (max-width: 1024px) {
  /* 2 columns on tablets */
  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }

  .service-desc,
  .service-list li {
    font-size: 0.85rem;
  }

  .process-section {
    padding: 1.5rem 2rem;
  }

  .process-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  /* Single column on smaller screens */
  .services-grid{
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0 1rem;
  }
  .process-grid{
    grid-template-columns: 1fr;
    gap: 0.1rem;
    padding: 0 1rem;
  }


  .service-card {
    padding: 1rem;
  }

  .service-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  .service-desc,
  .service-list li {
    font-size: 0.8rem;
  }

  .process-section {
    padding: 1rem 1.5rem;
  }

  .process-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .service-card {
    padding: 0.8rem;
  }

  .service-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
  }

  .service-desc,
  .service-list li {
    font-size: 0.75rem;
  }

  .process-section {
    padding: 1.5rem 1rem;
  }

  .process-number {
    font-size: 2rem;
  }
  .process-grid {
    gap: 0.2rem;
  }
}

/* ---------- Services Section Mobile Fixes ---------- */
@media (max-width: 768px) {
  .service-card .learn-more-btn {
    font-size: 0.75rem;  /* smaller text */
    padding: 0.4rem 0.8rem; /* smaller button padding */
  }
}

@media (max-width: 480px) {
  .service-card .learn-more-btn {
    font-size: 0.7rem;
    padding: 0.1rem 0.3rem;
  }
}


/* ---------- Services Section Mobile Card Fixes ---------- */
@media (max-width: 768px) {
  .service-card {
    padding: 0.9rem;      /* smaller padding inside card */
    min-height: unset;    /* remove minimum height */
  }

  .service-card a.btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
    margin-top: 0.05rem;
    align-self: flex-start;
  }

  .service-list {
    margin-bottom: 0.15rem;
    flex: unset;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 0.7rem;      /* even smaller padding for small phones */
  }

  .service-card a.btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    margin-top: 0.05rem;
  }

  .service-list {
    margin-bottom: 0.1rem;
  }
}


/* ---------- Process Section Mobile Fixes ---------- */
@media (max-width: 768px) {
  .process-header {
    margin-bottom: 2rem; /* reduce space below heading */
  }

  .process-header h3 {
    font-size: 1.75rem; /* slightly smaller heading */
  }

  .process-grid {
    gap: 0.5rem; /* reduce gap between steps */
  }

  .process-step {
    margin-bottom: 0.5rem; /* reduce space between number, title, and description */
  }

  .process-number {
    font-size: 2.5rem; /* smaller number */
    margin-bottom: 0.75rem;
  }

  .process-step h4 {
    font-size: 1rem; /* smaller step title */
    margin-bottom: 0.5rem;
  }

  .process-step p {
    font-size: 0.8rem; /* smaller description text */
    line-height: 1.2rem;
  }
}

@media (max-width: 480px) {
  .process-header {
    margin-bottom: 1.5rem;
  }

  .process-header h3 {
    font-size: 1.5rem;
  }

  .process-grid {
    gap: 0.3rem;
  }

  .process-number {
    font-size: 2rem;
    margin-bottom: 0.2rem;
  }

  .process-step h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .process-step p {
    font-size: 0.75rem;
    line-height: 1.1rem;
  }
}

/* ---------- Industries Section Mobile Fixes ---------- */
@media (max-width: 768px) {
    .industry-card {
        padding: 1rem 1rem; /* smaller padding */
    }

    .industry-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .industry-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .industry-card p {
        font-size: 0.75rem;
    }
    .industries-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
  }
}

@media (max-width: 480px) {
    .industries-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
  }
    .industry-card {
        padding: 0.75rem 0.75rem; /* even smaller on extra small screens */
    }

    .industry-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .industry-card h3 {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }

    .industry-card p {
        font-size: 0.7rem;
    }
}

/* ===========================
   Custom Form Styles
   =========================== */
.form-container {
    background: var(--color-white);
    margin-top: 9rem; /* space for fixed navbar */
    padding: 4rem 2rem;
    border-radius: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.form-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-slate) 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-gray-600);
}

.custom-form .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.custom-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.custom-form input,
.custom-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
}

.custom-form input:focus,
.custom-form textarea:focus {
    border-color: var(--color-cyan);
    outline: none;
}

.custom-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  margin-top: 0.3rem;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
  white-space: nowrap;
}

.custom-form .btn {
    display: block;       /* make it block to center */
    margin: 1.5rem auto 0 auto;  /* top margin + auto left/right */
    background: var(--color-cyan);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.custom-form .btn:hover {
    background: var(--color-dark);
}

/* Job Seeker Form Dropdown */
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #ccc; /* or var(--color-gray) */
  border-radius: 0.5rem;
  background-color: #f9f9f9;
  color: #0a0e27; /* dark text */
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none; /* removes default arrow on some browsers */
}

/* Focus effect */
.form-select:focus {
  border-color: #00d4ff; /* highlight color */
  box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
  background-color: #ffffff;
}

/* Optional: add a custom arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%230a0e27' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}


/* ===========================
   Responsive Mobile Fixes
   =========================== */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1rem;
        margin-top: auto;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .custom-form input,
    .custom-form textarea {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .custom-form .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .checkbox-group label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1.5rem 1rem;
        margin-top: 50px;
    }
    .form-title {
        font-size: 1.25rem;
    }

    .custom-form input,
    .custom-form textarea {
        font-size: 0.8rem;
        padding: 0.5rem 0.5rem;
    }

    .custom-form .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}


@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

section {
  padding-top: 5rem;
}

html {
  scroll-behavior: smooth;
}