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

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  /* Slate 50 */
  --bg-tertiary: #f1f5f9;
  /* Slate 100 */
  --text-primary: #0f172a;
  /* Slate 900 */
  --text-secondary: #334155;
  /* Slate 700 */
  --text-muted: #64748b;
  /* Slate 500 */
  --accent-color: #d97706;
  /* Amber */
  --accent-hover: #b45309;
  --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #b45309 100%);
  --highlight-color: #d97706;
  /* Warm Amber */
  --highlight-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #b45309 100%);
  --border-color: rgba(15, 23, 42, 0.06);
  --border-color-focus: rgba(217, 119, 6, 0.35);

  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
  --shadow-premium: 0 20px 40px -15px rgba(217, 119, 6, 0.15), 0 15px 25px -10px rgba(15, 23, 42, 0.05);

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-premium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CSS Reset & Global Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}


section {
  padding: 100px 0;
  position: relative;
}

.bg-alt {
  background-color: var(--bg-secondary);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  height: 90px;
  transition: var(--transition-premium);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 72px;
}

.header-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-premium);
}

.logo img {
  height: 45px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  position: relative;
  padding: 8px 0;
  transition: var(--transition-premium);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--highlight-gradient);
  border-radius: 10px;
  transform: translateX(-50%);
  transition: var(--transition-premium);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-btn {
  background: var(--highlight-gradient);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.25);
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35);
}

/* Mobile Nav Toggler */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text-primary);
  margin-bottom: 5px;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

/* Premium Typography Helper */
.section-title-wrap {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-tag {
  background: rgba(217, 119, 6, 0.08);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 80px 0 100px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.15;
  background: linear-gradient(135deg, #0f172a 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 19px;
  color: var(--text-main);
  margin-bottom: 30px;
}

.midc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
}

.badge {
  background: rgba(217, 119, 6, 0.06);
  color: var(--accent-color);
  border: 1px solid rgba(217, 119, 6, 0.12);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.badge i {
  color: var(--highlight-color);
}

.badge:hover {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.badge:hover i {
  color: #ffffff;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn {
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--highlight-gradient);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.btn-secondary {
  background: var(--bg-white);
  border: 1px solid rgba(226, 232, 240, 1);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-image-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(217, 119, 6, 0.05);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.hero-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(217, 119, 6, 0.08);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-stat-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-stat-text p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Portal/CTA Row */
.portals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.portal-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.portal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 119, 6, 0.15);
}

.portal-card:hover::before {
  opacity: 1;
}

.portal-card.employer-portal::before {
  background: var(--highlight-gradient);
}

.portal-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(217, 119, 6, 0.06);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
}

.portal-card.employer-portal .portal-icon {
  background: rgba(217, 119, 6, 0.06);
  color: var(--highlight-color);
}

.portal-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.portal-card p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.portal-list {
  margin-bottom: 30px;
}

.portal-list li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-list li i {
  color: #10b981;
  /* Green */
}

/* Sectors Grid */
.sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.sector-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--accent-color);
  transition: var(--transition);
}

.sector-card:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: var(--shadow-lg);
}

.sector-card.automobile {
  border-left-color: var(--highlight-color);
}

.sector-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sector-card ul li {
  margin-bottom: 12px;
  font-size: 17px;
  position: relative;
  padding-left: 20px;
}

.sector-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.sector-card.automobile ul li::before {
  color: var(--highlight-color);
}

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

.hub-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.hub-card-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.hub-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.hub-card:hover .hub-card-img {
  transform: scale(1.05);
}

.hub-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hub-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hub-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hot Jobs Section */
.jobs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.job-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.job-card-header {
  margin-bottom: 20px;
}

.job-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.job-card-company {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-card-details {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  margin-bottom: 20px;
}

.job-card-detail-item {
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.job-card-detail-item:last-child {
  margin-bottom: 0;
}

.job-card-detail-item i {
  color: var(--accent-color);
  width: 16px;
}

.btn-sm {
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
}

/* Page Headers (Details/Registration) */
.page-hero {
  margin-top: 80px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.92) 0%, rgba(15, 23, 42, 0.96) 100%), url('../img/its-2/banner.jpg') no-repeat center center / cover;
  color: #ffffff;
  padding: 100px 0 100px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

.page-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.page-meta-item {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-meta-item i {
  color: var(--highlight-color);
}

/* Form Styles */
.form-card-wrap {
  margin-top: -40px;
  margin-bottom: 100px;
}

.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

.form-card h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row-full {
  margin-bottom: 20px;
}

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

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(203, 213, 225, 0.8);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition);
  color: var(--text-primary);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Form Alert Boxes */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  display: none;
}

.alert-success {
  background: #dcfce7;
  color: #14532d;
  border: 1px solid #bbf7d0;
}

.alert-danger {
  background: #fee2e2;
  color: #7f1d1d;
  border: 1px solid #fecaca;
}

/* Detail Box layout */
.detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: -40px auto 100px auto;
}

.detail-section-title {
  font-size: 20px;
  font-weight: 800;
  border-bottom: 2px solid var(--bg-secondary);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.description-box {
  white-space: pre-line;
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 17px;
}

.detail-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

/* Clients Owl/Scroll Section */
.client-logo-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.client-logo-scroll::-webkit-scrollbar {
  display: none;
}

.client-logo-item {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-logo-card {
  width: 100%;
  height: 150px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  padding: 12px;
  transition: var(--transition);
  margin-bottom: 8px;
}

.client-logo-item:hover .client-logo-card {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 115px;
  object-fit: contain;
}

.client-logo-name {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  font-weight: 500;
}

/* Footer layout */
.footer {
  background-color: #0b1329;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 65px;
  background-color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 16px;
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-contact li i {
  color: var(--accent-color);
  margin-top: 4px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hubs-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .portals-grid,
  .sectors-grid,
  .hubs-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .jobs-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card,
  .detail-card {
    padding: 30px 20px;
  }

  /* Mobile Nav active */
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    flex-direction: column;
    padding: 40px 24px;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .header-btn {
    width: 100%;
    text-align: center;
  }
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Bootstrap Container Width Custom Override */
@media (min-width: 1400px) {
  .container {
    max-width: 1380px !important;
  }
}

/* Roadmap Steps Layout */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.roadmap-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.roadmap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.roadmap-step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(217, 119, 6, 0.12);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.roadmap-card h4 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
}

.roadmap-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* FAQ Layout styles */
.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 30px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.faq-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
}

.faq-question i {
  color: var(--accent-color);
  transition: var(--transition);
}

.faq-card.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 0;
  line-height: 1.7;
}

.faq-card.active .faq-answer {
  max-height: 200px;
  margin-top: 15px;
}

/* Hero Floating Badge Responsiveness */
@media (max-width: 768px) {
  .hero-floating-badge {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    margin: 15px 0 0 0 !important;
    display: inline-flex !important;
    width: calc(100% - 10px) !important;
  }
}

/* Urgent Dark Red Badge */
.urgent-badge {
  background-color: #991b1b;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  line-height: 1;
}

.urgent-badge i {
  color: #ffffff !important;
  animation: pulseFire 1.5s infinite;
}

@keyframes pulseFire {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* Three Columns Grid Utility & Responsiveness */
.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

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

/* Scroll-Driven reveal transitions */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left {
  transform: translateX(-30px);
}

.reveal.reveal-right {
  transform: translateX(30px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0) !important;
}

/* Card hover shine reflection effect */
.shine-card {
  position: relative;
  overflow: hidden;
}

.shine-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

.shine-card:hover::before {
  left: 150%;
}

/* CTA button glows & transitions */
.btn-primary {
  transition: var(--transition-premium) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none !important;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-premium) !important;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  transition: var(--transition-premium) !important;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}