:root {
  /* --primary-color: #b11226; */
  --primary-color: #2c3e50;
  --highlight-color: #f4b400;
  --text-default: #333;
  --bg-white: #fff;
  --bg-light: #fafafa;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --secondary-color: #ff6b00;
}

/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--bg-white);
  z-index: 1000;
  box-shadow: 0 1px 12px var(--shadow-light);
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  /* max-width: 1200px; */
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  flex-wrap: wrap;
}

/* LEFT: Logo + Nav */
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
img.logo {
  width: 150px;
}
.nav-primary ul {
  display: flex;
  list-style: none;
  gap: 25px;
}
.nav-primary a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-default);
  padding: 8px;
  transition: color 0.3s;
}
.nav-primary a:hover {
  color: var(--primary-color);
}

/* RIGHT: Actions */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.language-selector {
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.btn.primary {
  background: var(--primary-color);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn.cta-btn {
  background: var(--highlight-color);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn.primary:hover,
.btn.cta-btn:hover {
  background: var(--highlight-color);
  color: #000;
}
.btn.secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn.secondary:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ================= MEGA MENU ================= */
.mega-menu.full-width {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: var(--bg-white);
  box-shadow: 0 8px 25px var(--shadow-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
}
.mega-menu.full-width.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  display: flex;
  gap: 30px;
  padding: 25px 40px;
}
.mega-col.sectors {
  flex: 0 0 20%;
}
.mega-col.sectors ul li {
  list-style: none;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mega-col.sectors ul li.active,
.mega-col.sectors ul li:hover {
  background: rgba(244, 180, 0, 0.15);
}
.recent-launch {
  padding: 12px 10px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: rgba(241, 196, 15, 0.15);
  margin-bottom: 15px;
  transition: background 0.3s;
}
.recent-launch:hover,
.recent-launch.active {
  background: rgba(241, 196, 15, 0.25);
}
.mega-col.features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-content: start;
}
.feature-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.feature-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.feature-card i {
  font-size: 28px;
  color: var(--primary-color);
}
.feature-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin: 12px 0 6px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-default);
  line-height: 1.5;
  flex-grow: 1;
}
.feature-card .btn {
  align-self: stretch;
  text-align: center;
  margin-top: auto;
  font-size: 14px;
  padding: 8px 12px;
}

/* ================= HERO ================= */
.hero {
  padding: 10px 0;
  background: var(--bg-light);
}
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}
.hero-cta a {
  margin-right: 15px;
}
.hero-image {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 500px;
  max-width: 100%;
}

/* HERO DASHBOARD CARDS */
.hero-dashboard {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-dashboard:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.hero-dashboard i {
  font-size: 22px;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-clients i {
  background: linear-gradient(135deg, #b11226, #f43f5e);
}
.card-projects i {
  background: linear-gradient(135deg, #10b981, #3b82f6);
}
.card-support i {
  background: linear-gradient(135deg, #f4b400, #f59e0b);
  color: #333;
}
.hero-dashboard h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111;
}
.hero-dashboard p {
  font-size: 14px;
  color: #555;
  line-height: 1.3;
}

/* HERO ANIMATION */
.hero h1,
.hero p,
.hero-cta,
.hero-image {
  opacity: 0;
}
.hero.animate h1 {
  animation: fadeUp 0.8s ease forwards;
}
.hero.animate p {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.15s;
}
.hero.animate .hero-cta {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}
.hero.animate .hero-image {
  animation: fadeRight 0.9s ease forwards;
  animation-delay: 0.2s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= RESPONSIVE ================= */

/* Laptop / small desktops */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 40px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  /* Header stacking */
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
  }
  .nav-left {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .nav-right {
    width: 100%;
    display: flex;
    margin: 5px 0px;
    justify-content: space-between;
  }
  /* Hamburger menu */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-default);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Nav slide-in */
  .nav-primary {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 20px;
    gap: 20px;
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.35s ease;
    z-index: 999;
  }
  .nav-primary.active {
    right: 0;
  }
  .nav-primary ul {
    flex-direction: column;
    gap: 20px;
    margin: 0;
  }

  /* Mega menu full screen scrollable */
  .mega-menu.full-width {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-white);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .mega-menu.full-width.active {
    transform: translateX(0);
  }

  .mega-inner {
    flex-direction: row;
    gap: 15px;
    height: 100%;
    padding: 20px;
  }

  .mega-col.sectors,
  .mega-col.features {
    width: 50%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 100%;
    padding-right: 10px;
  }

  .mega-col.sectors::-webkit-scrollbar,
  .mega-col.features::-webkit-scrollbar {
    width: 6px;
  }
  .mega-col.sectors::-webkit-scrollbar-thumb,
  .mega-col.features::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }

  /* Stack vertically on very small screens */
  @media (max-width: 576px) {
    .mega-inner {
      flex-direction: column;
      padding: 15px 20px;
    }
    .mega-col.sectors,
    .mega-col.features {
      width: 100%;
      max-height: 50vh;
    }
  }

  /* Hero stacking */
  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }
  .hero-text h1 {
    font-size: 32px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-cta a {
    width: 100%;
    margin-bottom: 10px;
  }
  .hero-image {
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 26px;
  }
  .hero-text p {
    font-size: 14px;
  }
  .hero-dashboard h4 {
    font-size: 14px;
  }
  .hero-dashboard p {
    font-size: 12px;
  }
  .hero-dashboard i {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .nav-right {
    gap: 10px;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
  }

  .header {
    width: 100%;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
  }
  .nav-left {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .nav-right {
    width: 100%;
    display: flex;
    margin: 5px 0px;
    justify-content: space-between;
  }
}

.product-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-text .highlight {
  color: var(--primary-color);
  position: relative;
}

.hero-text .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  /* width: 100%; */
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #f4b400);
  border-radius: 2px;
}

.hero-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #333;
}

.hero-tagline span {
  display: inline-block;
  margin-right: 6px;
  color: var(--primary-color);
  opacity: 0;
  animation: taglineFade 0.6s ease forwards;
}

.hero-tagline span:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-tagline span:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-tagline span:nth-child(3) {
  animation-delay: 0.3s;
}
.hero-tagline span:nth-child(4) {
  animation-delay: 0.4s;
}
.hero-tagline span:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes taglineFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-tagline {
    font-size: 16px;
  }

  .hero-text h1 {
    font-size: 30px;
  }
}

/* ================= KAMAL ECOSYSTEM ================= */
.kamal-ecosystem {
  padding: 80px 20px;
  background: var(--bg-white);
}

.kamal-ecosystem .section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.kamal-ecosystem .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.kamal-ecosystem .section-header p {
  font-size: 16px;
  color: var(--text-default);
}

/* Grid layout */
.kamal-ecosystem .ecosystem-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Product Card */
.kamal-ecosystem .product-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.kamal-ecosystem .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  background: var(--bg-white);
}

/* Icon */
.kamal-ecosystem .product-card i {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.kamal-ecosystem .product-card:hover i {
  transform: scale(1.2);
  color: var(--highlight-color);
}

/* Product Title */
.kamal-ecosystem .product-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

/* Product Description */
.kamal-ecosystem .product-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-default);
}

/* Animate cards on scroll */
.kamal-ecosystem .animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.kamal-ecosystem .animate-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .kamal-ecosystem .ecosystem-products {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .kamal-ecosystem .ecosystem-products {
    grid-template-columns: 1fr;
  }
}

/* Products Section */
.kamal-products {
  padding: 80px 20px;
  background: var(--bg-light);
}

.kamal-products .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.kamal-products .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.kamal-products .section-header p {
  font-size: 16px;
  color: var(--text-default);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Product Card */
.product-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card Hover Effect */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Hero SVG */
.product-hero {
  position: relative;
  background: #f9f9f9;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-hero .product-image {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 8px;
}
.product-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

/* Product Content */
.product-content {
  padding: 20px;
}
.product-content h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.product-content p {
  font-size: 14px;
  color: var(--text-default);
  margin-bottom: 15px;
}

/* Features List */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.03);
  padding: 6px 10px;
  border-radius: 6px;
}
.feature-item i {
  color: var(--primary-color);
}
.feature-item p {
  display: flex;
  height: 100%;
  align-items: center;
}
/* CTA Buttons */
.product-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-cta a {
  flex: 1;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Use Case */

.kamal-usecases {
  padding: 80px 20px;
  background-color: #f9fafb;
  text-align: center;
}

.kamal-usecases .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111827;
}

.kamal-usecases .section-header p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 50px;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.usecase-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.usecase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.usecase-icon {
  font-size: 3rem;
  color: #10b981; /* green accent */
  margin-bottom: 15px;
}

.usecase-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #111827;
}

.usecase-card p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 20px;
}

.usecase-card .btn.primary {
  padding: 10px 25px;
  font-size: 0.95rem;
}

/* Animate Cards on Scroll */
.animate-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.animate-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .kamal-usecases .section-header h2 {
    font-size: 2rem;
  }
  .usecase-card {
    padding: 25px 15px;
  }
}

/* Demo */

.kamal-demo {
  padding: 80px 20px;
  background: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 50px;
  align-items: center;
}

.demo-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease forwards;
}

.demo-svg {
  width: 100%;
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.1));
  border-radius: 15px;
}

.demo-right {
  flex: 1;
  min-width: 300px;
  animation: fadeInUp 1s ease forwards;
}

.demo-right h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #111827;
}

.demo-right p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #6b7280;
}

.demo-form {
  display: grid;
  gap: 15px;
}

.demo-form .form-group {
  display: flex;
  flex-direction: column;
}

.demo-form input,
.demo-form select {
  padding: 12px 15px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  transition: all 0.3s ease;
}

.demo-form input:focus,
.demo-form select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  outline: none;
}

.demo-form button {
  padding: 12px 20px;
  background: #3b82f6;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-form button:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .demo-container {
    flex-direction: column;
    gap: 40px;
  }
}

/* Integration */

.kamal-techstack {
  padding: 80px 20px;
  background: #f9fafb;
  text-align: center;
}

.kamal-techstack .section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111827;
}

.kamal-techstack .section-header p {
  color: #6b7280;
  margin-bottom: 50px;
}

.techstack-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tech-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tech-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tech-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tech-icon {
  width: 48px;
  height: 48px;
}

.tech-item p {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

/* Animate fade-in for scroll */
.kamal-techstack .animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.kamal-techstack .animate-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .techstack-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* FAQs */

.kamal-faq {
  padding: 80px 20px;
  background: #f9fafb;
  text-align: center;
}

.kamal-faq .section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111827;
}

.kamal-faq .section-header p {
  color: #6b7280;
  margin-bottom: 50px;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h4 {
  font-size: 18px;
  margin: 0;
  color: #111827;
}

.faq-question i {
  font-size: 18px;
  color: #10b981;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 15px;
  color: #374151;
  line-height: 1.6;
}

/* Animate fade-in for scroll */
.kamal-faq .animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.kamal-faq .animate-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-item {
    padding: 15px 20px;
  }
}

/* Testimonials */

.kamal-testimonials {
  padding: 80px 20px;
  background: var(--bg-white);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 0 auto;
}
.testimonial-card {
  background: var(--bg-light);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.testimonial-card h4 {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: var(--primary-color);
}

.kamal-cta {
  padding: 80px 20px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
}
.kamal-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.kamal-cta p {
  font-size: 18px;
  margin-bottom: 25px;
}
.kamal-cta .btn-lg {
  padding: 12px 25px;
  font-size: 16px;
}

/* ================= Footer ================= */
.kamal-footer {
  background-color: var(--bg-light);
  color: var(--text-default);
  font-family: "Poppins", sans-serif;
  padding: 60px 20px 30px;
  box-shadow: inset 0 1px 0 var(--shadow-light);
}

.kamal-footer a {
  color: var(--text-default);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kamal-footer a:hover {
  color: var(--primary-color);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-brand h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.footer-links {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column {
  flex: 1 1 140px;
}

.footer-column h4 {
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 12px;
  cursor: default;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.footer-column ul li {
  margin-bottom: 10px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--shadow-light);
  padding-top: 20px;
  font-size: 14px;
  color: #777;
}

.footer-socials a {
  display: inline-block;
  margin-left: 12px;
  color: var(--text-default);
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: var(--highlight-color);
  transform: translateY(-3px);
}

/* ================= Back to Top Button ================= */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none;
  transition: all 0.3s ease;
}

#backToTop:hover {
  background-color: var(--highlight-color);
  transform: translateY(-4px);
}

#backToTop i {
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* ================= Responsive ================= */

/* Tablets & small laptops */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column; /* Stack columns vertically */
    gap: 15px;
  }
  .footer-column {
    flex: 1 1 100%; /* Full width */
    margin-bottom: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Mobile accordion */
@media (max-width: 768px) {
  .footer-links {
    display: block; /* Stack columns vertically */
  }

  .footer-column {
    width: 100%;
    margin-bottom: 15px;
  }

  .footer-column h4 {
    cursor: pointer;
    position: relative;
    padding-right: 25px;
  }

  .footer-column h4::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .footer-column.active h4::after {
    content: "-";
    transform: rotate(180deg);
  }

  .footer-column ul {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }

  .footer-column.active ul {
    max-height: 500px; /* Enough to show all links */
    opacity: 1;
  }

  .footer-brand h2 {
    font-size: 24px;
  }
  .footer-brand p {
    font-size: 13px;
  }
  .footer-column h4 {
    font-size: 15px;
  }
  .footer-column ul li {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 13px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .kamal-footer {
    padding: 40px 15px 20px;
  }
  .footer-brand h2 {
    font-size: 22px;
  }
  .footer-column h4 {
    font-size: 14px;
  }
  .footer-column ul li {
    font-size: 12px;
  }
  .footer-socials a {
    font-size: 14px;
    margin-left: 8px;
  }
  .footer-bottom {
    gap: 8px;
  }
}
.footer-legal a {
  color: #777;
  margin: 0 5px;
  font-size: 13px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* Client & Patners */
.kamal-clients-carousel {
  background: var(--bg-light);
  padding: 60px 20px;
  text-align: center;
}

.kamal-clients-carousel .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.kamal-clients-carousel .section-header p {
  color: var(--text-default);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.clients-carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  animation: scrollCarousel 20s linear infinite;
  cursor: grab;
}

/* Pause animation on hover */
.clients-carousel:hover .carousel-track {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 auto;
  padding: 15px;
  width: 200px;
  height: 200px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-light);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.client-logo:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 24px var(--shadow-light);
}

/* Carousel Animation */
@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Faster Responsive Adjustments */
@media (max-width: 1024px) {
  .carousel-track {
    gap: 1.5rem;
    /* animation-duration: 15s; Faster */
  }
  .client-logo img {
    max-width: 90px;
  }
}

@media (max-width: 768px) {
  .carousel-track {
    gap: 1rem;
    /* animation-duration: 20s; Faster than before */
  }
  .client-logo img {
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .carousel-track {
    gap: 0.8rem;
    /* animation-duration: 25s; Faster for mobile */
  }
  .client-logo img {
    max-width: 60px;
  }
}

/* SMS Page */

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* SECTIONS */
.product-section {
  padding: 80px 0;
}

.product-section:nth-child(even) {
  background: var(--bg-light);
}

.product-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif;
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARDS */
.info-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card i {
  font-size: 34px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.info-card:hover {
  transform: translateY(-6px);
}

/* CTA */
.product-cta {
  /* background: linear-gradient(135deg, #1e40af, #2563eb); */
  color: #fff;
  text-align: center;
}

.product-cta .btn {
  margin-top: 20px;
}

.product-cta .small {
  font-size: 13px;
  margin-top: 12px;
  opacity: 0.9;
}

/* FAQ */
.faq-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-hero h1 {
    font-size: 32px;
  }
  .product-section h2 {
    font-size: 26px;
  }
}

/* FAQ Section */
.product-faq {
  padding: 60px 0;
}

.product-faq h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Question Button */
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f9f9f9;
}

/* Icon rotation */
.faq-question i {
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fefefe;
  padding: 0 24px;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Open state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Large enough for content */
  padding: 15px 24px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
    padding: 14px 20px;
  }
  .faq-answer p {
    font-size: 14px;
  }
}

/* Demo Page */
/* ================= DEMO PAGE STYLES ================= */

/* HERO SECTION */
.hero-demo {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f9f9;
}

.hero-demo .hero-text {
  max-width: 600px;
}

.hero-demo .product-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.hero-demo h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-demo .hero-tagline span {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
}

.hero-demo p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.hero-demo .hero-image svg {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* FORM SECTION */
.product-form {
  padding: 60px 0;
  background: #fff;
}

.product-form h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.product-form p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.demo-form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.demo-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.demo-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.demo-form label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(177, 18, 38, 0.5);
}

.demo-form textarea {
  resize: none;
}

.demo-form button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-form button:hover {
  background: var(--secondary-color);
}

/* CTA SECTION */
.cta-demo {
  padding: 80px 0;
  text-align: center;
  background: var(--primary-color);
  color: #fff;
}

.cta-demo h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-demo p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-demo .cta-btn {
  background: #fff;
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-demo .cta-btn:hover {
  background: #ffe6e6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-demo {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-demo .hero-text {
    max-width: 100%;
  }

  .demo-form .form-row {
    flex-direction: column;
  }
}

/* About US Page */
/* ================= ABOUT PAGE ================= */
.about-hero {
  background: linear-gradient(180deg, #fafafa, #ffffff);
  padding: 20px 20px;
}

.about-section {
  padding: 80px 20px;
}

.about-section.light-bg {
  background-color: var(--bg-light);
}

.about-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-section p {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  text-align: center;
}
/* ================= PRODUCT GRID ================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.feature-grid .feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 26px;
  border: 1px solid #e5e7eb;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-grid .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.feature-grid .feature-card i {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.feature-grid .feature-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.feature-grid .feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}
/* ================= VISION / MISSION ================= */
.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 50px auto 30px;
  text-align: left;
}

.vision-mission h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.vision-mission p {
  text-align: left;
  font-size: 16px;
  margin: 0;
  color: #444;
}

.values-list {
  max-width: 800px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.values-list li {
  font-size: 16px;
  padding: 8px 0;
  color: #333;
}
/* ================= ABOUT STATS ================= */
.about-stats {
  padding: 80px 20px;
}

.stats-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stats-grid h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.stats-grid p {
  font-size: 15px;
  color: #555;
  margin: 0;
}
/* ================= ABOUT CTA ================= */
.about-cta {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(90deg, #2c3e50, #1f2933);
  color: #fff;
}

.about-cta h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  margin-bottom: 14px;
}

.about-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 17px;
  color: #e5e7eb;
}

.about-cta .btn.primary {
  font-size: 16px;
  padding: 12px 28px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 16px;
  }

  .about-section h2 {
    font-size: 28px;
  }

  .about-section p {
    font-size: 15px;
  }

  .stats-grid h3 {
    font-size: 32px;
  }

  .about-cta h2 {
    font-size: 28px;
  }

  .about-cta p {
    font-size: 15px;
  }
}
/* ================= LEADERSHIP MESSAGES ================= */
.leadership-messages {
  padding: 90px 20px;
}

.leadership-messages h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  color: var(--primary-color);
}

.leadership-messages > .container > p {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

/* ================= MESSAGE CARD ================= */
.message-card {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* Reverse layout for MD */
.message-card.reverse {
  grid-template-columns: 1fr 280px;
}

.message-card.reverse .message-photo {
  order: 2;
}

.message-card.reverse .message-content {
  order: 1;
}

/* ================= PHOTO ================= */
.message-photo {
  position: sticky;
  top: 130px;
}

.message-photo img {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  background: #fff;
}

/* ================= CONTENT ================= */
.message-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.message-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}

/* ================= AUTHOR ================= */
.message-author {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--primary-color);
}

.message-author strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.message-author span {
  font-size: 14px;
  color: #666;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .message-card,
  .message-card.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .message-photo {
    position: static;
    text-align: center;
  }

  .message-photo img {
    max-width: 200px;
  }
}

@media (max-width: 576px) {
  .leadership-messages {
    padding: 60px 16px;
  }

  .leadership-messages h2 {
    font-size: 28px;
  }

  .leadership-messages > .container > p {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .message-content h3 {
    font-size: 22px;
  }

  .message-content p {
    font-size: 15px;
  }

  .message-author {
    padding-left: 14px;
  }
}

/* ================= CAREER PAGE ================= */
.career-hero {
  background: linear-gradient(180deg, #fafafa, #ffffff);
  padding: 20px 20px;
}

.career-section {
  padding: 80px 20px;
}

.career-section.light-bg {
  background: var(--bg-light);
}

.career-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.career-section p {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 17px;
  color: #444;
}

/* Benefits */
.career-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.benefit-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.benefit-card i {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 14px;
}

/* Jobs */
.job-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 25px;
}

.job-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 26px 30px;
  border-radius: 12px;
}

.job-card h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.job-card span {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
}

.job-card p {
  text-align: left;
  margin: 12px 0 0;
  font-size: 15px;
}

/* CTA */
.career-cta {
  padding: 90px 20px;
  background: linear-gradient(90deg, #2c3e50, #1f2933);
  color: #fff;
  text-align: center;
}

.career-cta h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.career-cta p {
  font-size: 17px;
  margin-bottom: 30px;
}

/* ================= APPLY MODAL ================= */
.apply-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
  overflow-y: auto; /* modal background scroll */
  padding: 20px;
}

.apply-modal.active {
  display: block;
}

/* Overlay */
.apply-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Modal Box */
.apply-modal-content {
  position: relative;
  max-width: 600px; /* wider for long JD */
  max-height: 90vh; /* fits in screen */
  margin: 40px auto; /* top margin from screen */
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  z-index: 2001;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);

  overflow-y: auto; /* scroll inside modal */
  scroll-behavior: smooth;
}

/* Scrollbar styling */
.apply-modal-content::-webkit-scrollbar {
  width: 8px;
}

.apply-modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.apply-modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #555;
}

/* Modal Text */
.apply-modal-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  margin-bottom: 12px;
}

.apply-modal-content h3 {
  font-size: 18px;
  margin-top: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.apply-modal-content p,
.apply-modal-content ul,
.apply-modal-content ol,
.apply-modal-content li {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Form */
.apply-form .form-group {
  margin-bottom: 18px;
}

.apply-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.apply-form input,
.apply-form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.apply-form input:focus,
.apply-form select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-top: 10px;
}

/* View Details Button */
.view-details-btn {
  float: right;
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.view-details-btn:hover {
  background: darken(var(--primary-color), 10%);
}

/* Contact US */
/* ---------------- CONTACT US - THEMED ---------------- */
.contact-section {
  padding: 80px 20px;
  background: #f8f8f8; /* light background, consistent with About Us/Career */
  text-align: center;
  font-family: "Inter", sans-serif;
}

.contact-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 700;
}

.contact-section p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

/* Two columns structure */
.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: left;
}

.contact-left,
.contact-right {
  flex: 1 1 400px;
  max-width: 500px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-left:hover,
.contact-right:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-left h3,
.contact-right h3 {
  margin-bottom: 25px;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Contact Info List */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
  color: #555;
}

.contact-info-list i {
  color: var(--primary-color);
  margin-right: 12px;
  min-width: 20px;
  text-align: center;
  font-size: 18px;
}

/* Map styling */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Contact Form Styling */
.contact-right .form-group {
  margin-bottom: 20px;
}

.contact-right label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-right input:focus,
.contact-right textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Responsive for smaller devices */
@media (max-width: 991px) {
  .contact-columns {
    flex-direction: column;
    text-align: center;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
  }

  .contact-info-list li {
    justify-content: center;
  }
}

/* FAQs Page */
/* ================= FAQ Accordion Styles ================= */
.faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #0a3d62;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #f1f1f1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  border-top: 1px solid #eee;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-question.active + .faq-answer {
  padding: 20px;
  max-height: 1000px; /* large enough to accommodate any content */
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(45deg);
}

/* Help Center */

/* ================= Help Center Styles ================= */
.help-center {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.help-center .container {
  max-width: 900px;
  margin: 0 auto;
}

.help-center h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0a3d62;
  margin-bottom: 30px;
}

.help-search {
  text-align: center;
  margin-bottom: 40px;
}

.help-search input {
  width: 80%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.help-category {
  margin-bottom: 40px;
}

.help-category h3 {
  color: #0a3d62;
  margin-bottom: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #f1f1f1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  border-top: 1px solid #eee;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-question.active + .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(45deg);
}

/* All Products */

/* ===== All Products Section ===== */
.products-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}
.products-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.products-section h1 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 60px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.product-card img {
  width: 80px;
  margin-bottom: 20px;
}
.product-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.product-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  min-height: 60px;
}
.product-card a {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.product-card a:hover {
  background-color: var(--highlight-color);
}

/* Section Responsive */
@media (max-width: 768px) {
  .products-section {
    padding: 60px 15px;
  }
  .products-section h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .product-card p {
    min-height: auto;
  }
  .product-card h3 {
    font-size: 1.3rem;
  }
}
