* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  /* background:
    radial-gradient(circle at top left, rgba(243, 121, 32, 0.08), transparent 50%),
    linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px); */
  background-size: cover, 40px 40px, 40px 40px;
}

/* background: #ffffff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 10 10"><rect width="1" height="1" fill="%23e6e6e6"/></svg>');
} */

/* Header */
header {
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: rgba(255, 255, 255, 0.7);
   */

  background:
    /* radial-gradient(circle at top left, rgba(243, 121, 32, 0.08), transparent 50%), */ linear-gradient(
      to right,
      rgba(0, 0, 0, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #30549f;
}

/* Contact Button */
.contact-btn {
  padding: 12px 25px;
  background: linear-gradient(90deg, #30549f, #30549f);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0px 8px 20px rgba(0, 180, 255, 0.4);
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

/* Mode Toggle Button */
.mode-toggle {
  width: 55px;
  height: 30px;
  border-radius: 50px;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  cursor: pointer;
}

.circle {
  width: 22px;
  height: 22px;
  background: #f27921;
  border-radius: 50%;
  transition: 0.3s;
}

/* Dark Mode */
.dark .circle {
  transform: translateX(22px);
  background: #222;
}

.dark {
  background: #111 !important;
}

/* ===== GLOBAL STYLE START ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4f7fb;
  color: #1f2933;
  line-height: 1.8;
}

/* ===== GLOBAL STYLE END ===== */

.section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 10%;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.section.dark {
  background: linear-gradient(135deg, #0a2540, #143a63);
  color: #ffffff;
}

h2 {
  font-size: 36px;
  margin-bottom: 25px;
  position: relative;
}

h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ffb703;
  display: block;
  margin-top: 12px;
  border-radius: 10px;
}

p {
  max-width: 900px;
  font-size: 17px;
}

/* ===== VALUES START ===== */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.values span {
  padding: 12px 24px;
  background: #0a2540;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
}

/* ===== VALUES END ===== */

/* ===== SERVICES START ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #ffffff;
  color: #1f2933;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
}

.section.dark .service-card {
  background: #ffffff;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* ===== SERVICES END ===== */

/* CSS Footer Start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

.footer-modern {
  background: #2f54a0;
  color: #cbd5e1;
}

.footer-top {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* BRAND */
.brand {
  font-size: 30px;
  color: #fff;
}

.brand span {
  color: #38bdf8;
}

.footer-col p {
  margin-top: 15px;
  line-height: 1.7;
}

/* HEADINGS */
.footer-col h3 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 18px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #38bdf8;
  padding-left: 6px;
}

/* CONTACT */
.contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact img {
  width: 20px;
  filter: invert(1);
}

/* SOCIAL */
.socials {
  margin-top: 15px;
}

.socials a {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.socials img {
  width: 18px;
  filter: invert(1);
  filter: brightness(0) invert(1);
}

.socials a:hover {
  background: #f37920;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 18px;
  font-size: 14px;
  color: #94a3b8;
}

.contact img {
  width: 30px;   /* yaree ama weynee sidaad rabto */
  height: auto; /* si uusan u qalloocin */
  filter: brightness(0) saturate(100%) invert(60%) sepia(90%) saturate(1200%) hue-rotate(-10deg);
}

/* CSS Footer End */

/* CSS hero section Start */

/* ================= RESET START ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", sans-serif;
}

/* ================= RESET END ================= */

/* ================= HERO SECTION START ================= */
.hankaab-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #fffdfb, #ffffff);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 50px;
}

/* Soft background grid + very light orange glow */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(243, 121, 32, 0.08),
      transparent 50%
    ),
    linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: cover, 40px 40px, 40px 40px;
  z-index: 0;
}

/* Wrapper */
.hero-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Tag */
.hero-tag {
  display: inline-block;
  padding: 7px 18px;
  margin-bottom: 22px;
  background: rgba(243, 121, 32, 0.12);
  color: #f37920;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* Headline */
.hero-title {
  font-size: 60px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .light {
  display: block;
  /* font-weight: 400; */
  color: #1e293b;
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.hero-title .accent {
  display: block;
  font-weight: 800;
  color: #f37920;
}

/* Description */
.hero-desc {
  font-size: 18px;
  color: #475569;
  max-width: 560px;
  margin-bottom: 40px;
  text-align: justify;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 45px;
}

.btn {
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #f37920;
  color: #fff;
  box-shadow: 0 14px 30px rgba(243, 121, 32, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px dashed #f37920;
  color: #f37920;
  background: transparent;
}

.btn-outline:hover {
  background: #f37920;
  color: #fff;
}

/* Stats Cards */
.hero-stats {
  display: flex;
  gap: 22px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 140px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.stat-card strong {
  display: block;
  font-size: 22px;
  color: #0f172a;
}

.stat-card span {
  font-size: 14px;
  color: #64748b;
}

/* Image */
.hero-visual img {
  width: 100%;
  max-width: 600px;
}

/* ================= HERO SECTION END ================= */

/* ================= RESPONSIVE START ================= */
@media (max-width: 900px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-desc {
    margin: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 42px;
  }
}

/* ================= RESPONSIVE END ================= */

/* CSS hero section End */

/* ===== CLIENTS LOGOS STYLE START ===== */

.clients-section {
  padding: 70px 6%;
  /* background: #ffffff; */
}

/* Wrapper with stroke & shadow */
.clients-wrapper {
  background-color: transparent !important;
  /* border-radius: 28px; */
  /* background: #ffffff;
  padding: 50px 30px;
  /* box-shadow: */
  /* 0 0 0 1.5px rgba(47, 84, 160, 0.15), */
  /* stroke */
  /* 0 25px 60px rgba(0, 0, 0, 0.08); */
  /* shadow */
  /* overflow: hidden; */
}

/* Title */
.clients-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 35px;
}

.clients-title h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
}

.clients-title span {
  width: 60px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

/* Logos track */
.clients-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scrollLogos 28s linear infinite;
}

/* Logo */
.client-logo img {
  height: 40px;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

/* Divider between logos */
.logo-divider {
  width: 1px;
  height: 30px;
  background: rgba(0, 0, 0, 0.12);
}

/* Hover */
.client-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .clients-track {
    gap: 28px;
  }

  .client-logo img {
    height: 32px;
  }

  .clients-title h3 {
    font-size: 14px;
  }
}

/* ===== CLIENTS WRAPPER – FLAT CLEAN STYLE ===== */

.clients-wrapper {
  border-radius: 28px;
  /* background: #ffffff; */
  padding: 50px 30px;

  /* REMOVE STROKE & SHADOW */
  box-shadow: none;
  border: none;

  overflow: hidden;
}

/* ===== MOVE CLIENTS SECTION UP ===== */
/* ===== MOVE LOGOS TRACK UP TO BLUE LINE ===== */

.clients-section {
  margin-top: -250px;
  /* 👈 tan ayaa kor u keenaysa */
  padding-top: 0;
}

.clients-section {
  position: relative;
  z-index: 5;
  /* 👉 ka sarreeya hero */
  margin-top: -190px;
}

/* ===== CLIENTS LOGOS STYLE END ===== */

/* ===== ABOUT ALT SECTION (MODERN TECH) START ===== */

.about-alt {
  padding: 120px 8%;

  background: radial-gradient(
      circle at top left,
      rgba(243, 121, 32, 0.08),
      transparent 50%
    ),
    linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-choose-us4 {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ================= BADGE ================= */
.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  background: linear-gradient(
    135deg,
    rgba(47, 84, 160, 0.18),
    rgba(243, 121, 32, 0.18)
  );
  color: #2f54a0;
  font-size: 13px;
  font-weight: 700;
  border-radius: 30px;
  /* margin-bottom: 22px; */
  letter-spacing: 0.4px;
}

/* ================= HEADLINE ================= */
.about-content h2 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #0f172a;
}

.about-content h2 span {
  background: linear-gradient(135deg, #2f54a0, #f37920);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= DESCRIPTION ================= */
.about-desc {
  font-size: 16.5px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 620px;
  text-align: justify;
}

/* ================= CORE VALUES ================= */
.core-values-inline {
  margin-bottom: 45px;
}

.core-values-inline h4 {
  font-size: 18px;
  color: #2f54a0;
  margin-bottom: 16px;
  font-weight: 700;
}

.values-horizontal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.values-horizontal li {
  padding: 10px 24px;
  background: linear-gradient(
    135deg,
    rgba(47, 84, 160, 0.14),
    rgba(243, 121, 32, 0.14)
  );
  color: #2f54a0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(47, 84, 160, 0.2);
  transition: all 0.35s ease;
}

.values-horizontal li:hover {
  background: linear-gradient(135deg, #2f54a0, #f37920);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(47, 84, 160, 0.4);
}

/* ================= INFO CARDS ================= */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.info-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  text-align: justify;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47, 84, 160, 0.12),
    rgba(243, 121, 32, 0.12)
  );
  opacity: 0;
  transition: 0.35s ease;
}

.info-card:hover::before {
  opacity: 1;
}

.info-card h4 {
  color: #2f54a0;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
}

.info-card p {
  font-size: 14.8px;
  color: #475569;
  line-height: 1.7;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* ================= RIGHT VISUAL ================= */
.about-visual {
  position: relative;
  height: 460px;
}

/* GLOW BLOB */
.blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, #2f54a0, #f37920);
  border-radius: 55% 45% 60% 40%;
  top: 20px;
  right: 20px;
  filter: blur(18px);
  opacity: 0.9;
  animation: floatBlob 8s ease-in-out infinite;
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* ================= GLASS CARD ================= */
.glass-card {
  position: absolute;
  bottom: 50px;
  left: 10px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  padding: 30px 34px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(243, 121, 32, 0.35);
}

.glass-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.glass-card p {
  font-size: 14px;
  color: #475569;
  letter-spacing: 0.5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 360px;
    margin-top: 40px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 36px;
  }
}

/* ===== ABOUT ALT SECTION (MODERN TECH) END ===== */

/* <!-- ===== WHY CHOOSE US SECTION CSS START ===== -->*/

.why-choose-us {
  padding: 110px 8%;
  background-color: transparent !important;
  background: radial-gradient(
      circle at top right,
      rgba(47, 84, 160, 0.08),
      transparent 45%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(243, 121, 32, 0.08),
      transparent 45%
    ),
    #ffffff;
  font-family: "Montserrat", sans-serif;
}

.why-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.why-header {
  max-width: 600px;
  margin-bottom: 70px;
}

.why-header h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 18px 0;
  color: #0f172a;
}

.why-header h2 span {
  background: linear-gradient(135deg, #2f54a0, #f37920);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-header p {
  font-size: 16.5px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* CARD */
.why-card {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47, 84, 160, 0.12),
    rgba(243, 121, 32, 0.12)
  );
  opacity: 0;
  transition: 0.35s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card h4 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #2f54a0;
  font-weight: 700;
}

.why-card p {
  font-size: 14.8px;
  color: #475569;
  line-height: 1.7;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-header h2 {
    font-size: 34px;
  }

  .why-header {
    margin-bottom: 50px;
  }
}

/* <!-- ===== WHY CHOOSE US SECTION CSS END ===== -->*/

/* CSS OUR SERVICES SECTION START */
:root{
  --primary:#f37920;
  --secondary:#2f54a0;
  --dark:#0f172a;
  --muted:#6b7280;
  --border:#e5e7eb;
  --bg:#ffffff;
}

.our-services{
  background:var(--bg);
  padding:80px 20px;
  font-family:system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.section-title{
  text-align:center;
  font-size:36px;
  color:var(--dark);
  margin-bottom:10px;
}

.section-subtitle{
  text-align:center;
  color:var(--muted);
  max-width:650px;
  margin:0 auto 60px;
}

.services-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  transition:.3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.service-card h3{
  font-size:22px;
  color:var(--secondary);
  margin-bottom:24px;
  display:flex;
  align-items:center;
  gap:10px;
}

.service-card h3 i{
  color:var(--primary);
}

.service-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  text-decoration:none;
  padding:14px 16px;
  border-radius:12px;
  margin-bottom:14px;
  border:1px solid var(--border);
  transition:.3s ease;
}

.service-item i{
  font-size:18px;
  color:var(--primary);
  margin-top:4px;
}

.service-item span{
  display:block;
  font-weight:600;
  color:var(--dark);
}

.service-item small{
  display:block;
  margin-top:4px;
  color:var(--muted);
  line-height:1.4;
}

.service-item:hover{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  border-color:transparent;
}

.service-item:hover i,
.service-item:hover span,
.service-item:hover small{
  color:#ffffff;
}

/* 4 cards hal saf */
.services-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
}

/* Tablet */
@media (max-width: 1024px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px){
  .services-grid{
    grid-template-columns:1fr;
  }
}
/* ICON COLORS – HAL MEEL */
.service-card h3 i,
.service-item i{
  color:#f37920;
}


/* CSS OUR SERVICES SECTION END */

/* ================= PRICE SECTION START CSS START ================= */
/* ================= BASE & FONT ================= */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* ================= SECTION ================= */
.pricing-section {
  padding: 90px 20px;
  background: #f4f6fb;
  text-align: center;
}

/* Header */
.pricing-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #2f54a0;
}

.pricing-header p {
  max-width: 700px;
  margin: 12px auto 45px;
  color: #6b7280;
}

/* ================= TOGGLE ================= */
.toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 70px;
  font-weight: 600;
}

.toggle {
  width: 70px;
  height: 34px;
  background: #ddd;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
}

.toggle::after {
  content: "";
  width: 26px;
  height: 26px;
  background: #f97316;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 5px;
  transition: left 0.2s ease;
}

.toggle.active::after {
  left: 39px;
}

/* ================= CARDS ================= */
.cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* ================= SHAPES ================= */
.shape {
  padding: 22px;
  border-radius: 18px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

/* Shape arrow */
.shape::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

.shape.blue {
  background: #2f54a0;
}

.shape.blue::after {
  border-top: 14px solid #2f54a0;
}

.shape.orange {
  background: #f97316;
}

.shape.orange::after {
  border-top: 14px solid #f97316;
}

/* ================= SHAPE ANIMATIONS (ONLY THIS IS NEW) ================= */
/* Soft floating animation */
@keyframes floatShape {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Animation class */
.animate-shape {
  animation: floatShape 5s ease-in-out infinite;
}

/* Small delays so they don’t move together */
.delay-1 {
  animation-delay: 0s;
}

.delay-2 {
  animation-delay: 1.2s;
}

.delay-3 {
  animation-delay: 2.4s;
}

/* ================= PRICE ================= */
.price {
  font-size: 42px;
  font-weight: 700;
  color: #f97316;
}

.duration {
  color: #6b7280;
  margin-bottom: 20px;
}

/* ================= LIST ================= */
ul {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

ul li {
  padding: 7px 0;
  font-size: 14px;
  display: flex;
  gap: 8px;
}

/* ul li::before{
  content:"✔";
  color:#f97316;
  font-weight:bold;
} */

/* Tick only for package lists */
.package-list li {
  position: relative;
  padding-left: 22px;
}

.package-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}

.pricing-section ul li::before {
  content: "✔";
  color: #f97316;
}

/* ================= BUTTONS ================= */
.btn {
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
}

.btn.blue {
  background: #2f54a0;
  color: #fff;
}

.btn.white {
  background: #fff;
  color: #f97316;
}

/* ================= HORMARIYE FULL ORANGE ================= */
.card.hormariye {
  background: #f97316;
  color: #fff;
}

.card.hormariye .price,
.card.hormariye .duration,
.card.hormariye ul li,
.card.hormariye ul li::before {
  color: #fff;
}

.card.hormariye .shape {
  background: #fff;
  color: #f97316;
}

.card.hormariye .shape::after {
  border-top: 14px solid #fff;
}

/* ================= PRICE SECTION START CSS END ================= */

:root {
  --primary: #2f54a0;
  --accent: #f37920;
}

/* Section */
.branding-section {
  padding: 100px 20px;
  background: #f9fafc;
  font-family: Montserrat, sans-serif;
}

/* Header */
.branding-header {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}
.branding-header h2 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}
.branding-header p {
  color: #666;
  line-height: 1.7;
}

/* Grid */
.branding-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.brand-card {
  background: #fff;
  padding: 45px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}
.brand-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}
.brand-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Featured */
.brand-card.featured {
  background: linear-gradient(135deg, #f37920, #ff9c4a);
  color: #fff;
  transform: scale(1.05);
}
.brand-card.featured h3,
.brand-card.featured .price {
  color: #fff;
}

/* Price */
.price {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 25px;
}

/* Features */
.features {
  list-style: none;
  margin-bottom: 35px;
  padding: 0;
}
.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin: 10px 0;
  font-weight: 500;
}
.brand-card:not(.featured) .features li {
  color: #222;
}
.brand-card.featured .features li {
  color: #fff;
}

/* Active / Inactive */
.features li.on::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}
.features li.off {
  opacity: 0.35;
}
.features li.off::before {
  content: "✕";
  color: var(--accent);
  font-weight: 700;
}

/* Button */
.brand-card button {
  padding: 14px 34px;
  border-radius: 30px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.brand-card.featured button {
  background: #fff;
  color: var(--accent);
}

/* Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transition: 0.6s;
}
.s1 {
  width: 60px;
  height: 60px;
  background: rgba(243, 121, 32, 0.18);
  top: -20px;
  left: -20px;
}
.s2 {
  width: 40px;
  height: 40px;
  background: rgba(47, 84, 160, 0.18);
  bottom: 30px;
  right: -20px;
}
.s3 {
  width: 25px;
  height: 25px;
  background: rgba(243, 121, 32, 0.3);
  top: 45%;
  right: 20px;
}
.brand-card:hover .shape {
  opacity: 1;
}
.brand-card:hover .s1 {
  transform: translate(25px, 25px) scale(1.2);
}
.brand-card:hover .s2 {
  transform: translate(-30px, -20px) scale(1.3);
}
.brand-card:hover .s3 {
  transform: translateY(-25px) scale(1.4);
}

/* Fade animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= BRANDING CSS PACKAGE SECTION END ================= */

/* ================= CSS FAQ SECTION START ================= */
/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 80px 20px;
  background: #f9fafb;
  font-family: "Montserrat", sans-serif;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
}

/* LEFT */
.faq-left h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
  color: #2f54a0;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid rgba(47, 84, 160, 0.15);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #2f54a0;
}

.faq-question .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f37920;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* ANSWER (MUHIIM) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 500px; /* <<< TAN AYAAN SAXAY */
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* RIGHT CARD */
.faq-card {
  background: #2f54a0;
  padding: 32px;
  border-radius: 14px;
  color: #fff;
}

.faq-icon {
  width: 42px;
  height: 42px;
  background: #f37920;
  margin-bottom: 20px;
  border-radius: 6px;
}

.faq-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-card p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.faq-btn {
  display: inline-block;
  background: #f37920;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.faq-btn:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}

/* ================= FAQ DESIGN ENHANCEMENT ================= */

/* FAQ item hover effect */
.faq-item {
  transition: all 0.35s ease;
  background: linear-gradient(180deg, #ffffff, #fafbff);
}

.faq-item:hover {
  box-shadow: 0 18px 40px rgba(47, 84, 160, 0.12);
  transform: translateY(-3px);
  border-color: rgba(47, 84, 160, 0.3);
}

/* Question text animation */
.faq-question {
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: #f37920;
}

/* Icon animation (pulse + smooth rotate) */
.faq-question .icon {
  box-shadow: 0 8px 18px rgba(243, 121, 32, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.faq-item.active .icon {
  box-shadow: 0 12px 28px rgba(243, 121, 32, 0.55);
  transform: rotate(45deg) scale(1.05);
}

/* Answer fade + slide effect */
.faq-answer p {
  animation: fadeSlide 0.45s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* LEFT TITLE polish */
.faq-left h2 {
  position: relative;
}

.faq-left h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 65px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2f54a0, #f37920);
}

/* RIGHT CARD premium look */
.faq-card {
  position: sticky;
  top: 40px;
  background: linear-gradient(135deg, #2f54a0, #1f3c75);
  box-shadow: 0 25px 60px rgba(47, 84, 160, 0.35);
}

/* CTA Button glow */
.faq-btn {
  position: relative;
  overflow: hidden;
}

.faq-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.faq-btn:hover::after {
  transform: translateX(100%);
}

/* Mobile spacing polish */
@media (max-width: 600px) {
  .faq-left h2 {
    font-size: 30px;
  }

  .faq-question {
    font-size: 14px;
  }
}

/* =====================================================
   SECTIONS HA DABOOLIN PATTERN-KA
===================================================== */
section {
  background-color: transparent !important;
}

/* ================= CSS FAQ SECTION END ================= */

/* =====================================================
   ADDED BY REQUEST
   GLOBAL PAGE BACKGROUND PATTERN
   Isla pattern-kii hero – page-ka oo dhan
===================================================== */
body {
  background: radial-gradient(
      circle at top left,
      rgba(243, 121, 32, 0.08),
      transparent 50%
    ),
    linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: cover, 40px 40px, 40px 40px;
}

/* =====================================================
   ADDED BY REQUEST
   GLOBAL PAGE BACKGROUND PATTERN
   Isla pattern-kii hero – page-ka oo dhan
===================================================== */

/* =====================================================
   ADDED BY REQUEST
   GLOBAL SPACING NORMALIZATION
===================================================== */
section {
  margin: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Header-ka waa fixed */
header + section {
  padding-top: 160px;
}

/* =====================================================
  Pattern section Start
===================================================== */

/* =====================================================
   FINAL – HERO PATTERN PAGE-KA OO DHAN
   (KAN HOOS KU DAR DHAMAADKA CSS-KA)
===================================================== */

/* Hero pattern-ka oo page dhan la socda */
.hero-bg-pattern {
  position: fixed; /* MUHIIM */
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background: radial-gradient(
      circle at top left,
      rgba(243, 121, 32, 0.08),
      transparent 50%
    ),
    linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);

  background-size: cover, 40px 40px, 40px 40px;
}

/* Hero laftiisa ha daboolin pattern-ka */
.hankaab-hero {
  background: transparent;
}

/* Sections dhan ha daboolin pattern-ka */
section {
  background-color: transparent !important;
}

/* =====================================================
   FINAL FIX – KA JOOJI SECTION-YADA INAY JABIYAAN PATTERN-KA
===================================================== */

/* Sections leh background gaar ah ha goynin pattern-ka */
.about-alt,
.why-choose-us,
.services-tilt,
.pricing-section,
.branding-section,
.faq-section {
  background: transparent !important;
}

/* =====================================================
   ADDED BY REQUEST
   DARK MODE STYLES
===================================================== */
body.dark {
  background: radial-gradient(
      circle at top left,
      rgba(47, 84, 160, 0.18),
      transparent 50%
    ),
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  color: #e5e7eb;
}

/* =====================================================
  Pattern section End
===================================================== */

/* =====================================================
   FINAL – SPACING FIX Start
===================================================== */

/* ❌ Hero lama taabanayo */
.hankaab-hero {
  /* intentionally untouched */
}

/* ❌ Clients section lama taabanayo */
.clients-section {
  /* intentionally untouched */
}

/* ✅ About Us kor u soo qaad (Clients ka dib) */
.about-alt {
  padding-top: 60px !important;
  padding-bottom: 80px !important;
  margin-top: -100px;
}

/* ✅ Sections-ka ka hooseeya About Us – isku dhaw */
.why-choose-us,
.services-tilt,
.pricing-section,
.branding-section,
.faq-section {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

/* ✅ Footer spacing nadiifi */
.footer-top {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* =====================================================
   FINAL – KA JOOJI SPACE-KA BADAN
   Social Media Packages ↔ Branding Package
===================================================== */

/* Social Media Packages – hoos u yaree */
.pricing-section {
  padding-bottom: 60px !important;
}

/* Branding Package – kor u soo qaad */
.branding-section {
  padding-top: 60px !important;
}

/* =====================================================
   FINAL – SPACING FIX End
===================================================== */

/* =====================================================
   DARK MODE – GLOBAL TEXT & SHAPES START
===================================================== */

/* 1️⃣ Qoraalka page-ka oo dhan */
body.dark {
  color: #ffffff;
}

/* headings, paragraphs, links */
body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6,
body.dark p,
body.dark span,
body.dark li,
body.dark a,
body.dark strong {
  color: #ffffff !important;
}

/* 2️⃣ Background guud */
body.dark {
  background-color: #0b1220 !important;
}

/* =====================================================
   DARK MODE – SHAPES & CARDS COLORS
===================================================== */

/* Cards & boxes */
body.dark .card,
body.dark .brand-card,
body.dark .our-services,
body.dark .why-card,
body.dark .info-card,
body.dark .faq-item,
body.dark .faq-card,
body.dark .mini-stats,
body.dark .mini-card,
body.dark .contact-soft-form,
body.dark .contact-btn,
body.dark .services-grid,
body.dark .service-card,
body.dark .card-bottom,
body.dark .mini-card {
  background: #111827 !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.1);
}

/* Shapes (pricing & branding) */
body.dark .shape,
body.dark .s1,
body.dark .s2,
body.dark .s3 {
  background: #1f2937 !important;
}

/* Icons & accent elements */
body.dark .tilt-icon,
body.dark .faq-question .icon {
  background: #f37920 !important;
  color: #ffffff !important;
}

/* Buttons */
body.dark .btn.blue {
  background: #f37920;
  color: #ffffff;
}

body.dark .btn.white {
  background: #ffffff;
  color: #0b1220;
}

/* Footer */
body.dark .footer-modern {
  background: #020617;
}

/* =====================================================
   DARK MODE – GLOBAL TEXT & SHAPES END
===================================================== */

/* ================= Section CSS Client expectations Start  ================= */
.stats-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 12px;
  color: #2f54a0;
}

.mini-stats {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.mini-stat {
  text-align: center;
}

.count {
  font-size: 26px;
  font-weight: 700;
  color: #2f54a0;
}

.count::after {
  content: "+";
  color: #f37920;
}

.mini-stat p {
  font-size: 13px;
  margin-top: 4px;
  color: #777;
}

.divider {
  width: 1px;
  height: 30px;
  background: #e5e7eb;
}

/* ================= Section CSS Client expectations END  ================= */

/* ================= CSS TESTIMONIALS SECTION START ================= */
.testimonial-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.testimonial-track {
  display: flex;
  gap: 20px;                /* space yar oo qurux badan */
  animation: scroll 30s linear infinite;
}

/* CARD */
.testimonial-card {
  flex: 0 0 320px;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
}

/* TOP */
.card-top {
  background: linear-gradient(180deg, #f37920, #ff9f55);
  color: #fff;
  padding: 40px 25px;
  text-align: center;
  flex: 1;                 /* ❗ isku dherer */
}

.card-top h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.card-top p {
  font-size: 15px;
  line-height: 1.7;
}

/* BOTTOM */
.card-bottom {
  padding: 25px 20px;
  text-align: center;
}

.card-bottom strong {
  display: block;
  font-size: 16px;
  color: #111827;
}

.card-bottom span {
  font-size: 14px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-track {
    gap: 15px;
  }
  .testimonial-card {
    flex: 0 0 85%;
  }
}

/* SLIDER ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.card-top {
  position: relative;
}

/* Quote icons */
.card-top::before,
.card-top::after {
  position: absolute;
  font-size: 34px;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
}

.card-top::before {
  content: "“";
  top: 16px;
  left: 16px;
}

.card-top::after {
  content: "”";
  bottom: 16px;
  right: 16px;
}

.testimonial-section-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Segoe UI', sans-serif;
}

.testimonial-section-title h2 {
  font-size: 16px;          /* yar */
  font-weight: 600;
  color: #f37920;           /* accent color */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.testimonial-section-title p {
  font-size: 32px;          /* weyn */
  font-weight: 700;
  color: #111827;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
}



/* Wrapper */
.testimonial-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Track – marquee sax ah */
.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 35s linear infinite;
  will-change: transform;
}

/* Animation – ka bilaab bannaanka shaashada */
@keyframes marquee {
  0% {
    transform: translateX(100%);   /* off-screen (midig) */
  }
  100% {
    transform: translateX(-50%);   /* dhammaad dabiici ah */
  }
}

/* Ikhtiyaar: pause marka la hover-gareeyo */
.testimonial-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}


/* Default: HA SOCON */
.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* KALIYA marka ay jiraan 4 ama ka badan */
.testimonial-track:has(.testimonial-card:nth-child(4)) {
  animation: marquee 35s linear infinite;
}

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-50%);
  }
}


.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* marka JS-ku ku daro class-kan ayuu soconayaa */
.testimonial-track.is-marquee {
  animation: marquee 35s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Arrows */
.ts-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
}

.ts-arrow.left{
  left: -20px; /* haddii aad rabto wax yar u soo dhoweey */
}

.ts-arrow.right{
  right: -20px;
}

.ts-arrow:hover{
  background: rgba(255,255,255,0.1);
}

/* Dots */
.ts-dots{
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.ts-dots .dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

.ts-dots .dot.active{
  background: #fff;
}




/* ================= CSS TESTIMONIALS SECTION END ================= */

/* ================= CONTACT INFO CARDS START ================= */
.contact-soft {
  padding: 90px 20px;
  background: #f7f9fc;
}

.contact-soft-wrap {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

/* Left text */
.contact-soft-info h5 {
  color: #f37920;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 8px;
}

.contact-soft-info h2 {
  font-size: 32px;
  color: #111;
  line-height: 1.3;
  margin-bottom: 16px;
}

.contact-soft-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 35px;
}

/* Small cards */
.contact-mini-cards {
  display: grid;
  gap: 14px;
  max-width: 420px;
}

.mini-card {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: #444;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.mini-card i {
  color: #2f54a0;
  font-size: 15px;
}

/* Form */
.contact-soft-form {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.contact-soft-form form {
  display: grid;
  gap: 18px;
}

.contact-soft-form input,
.contact-soft-form textarea {
  border: 1px solid #e2e6ef;
  padding: 13px 14px;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
}

.contact-soft-form input:focus,
.contact-soft-form textarea:focus {
  border-color: #2f54a0;
}

.contact-soft-form button {
  background: #2f54a0;
  color: #fff;
  border: none;
  padding: 13px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-soft-form button:hover {
  background: #f37920;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-soft-wrap {
    grid-template-columns: 1fr;
  }
}



/* ================= CONTACT INFO CARDS END ================= */
.contact i,
.socials i {
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
}

.socials a {
  margin-right: 12px;
  font-size: 20px;
}

/* ================= Service links CSS START ================= */
.service-title-link {
  text-decoration: none; /* ka saar underline */
  color: inherit; /* qaado color-ka card-ka */
  font-weight: inherit; /* ha bedelin bold-kii */
}

.service-title-link:hover {
  text-decoration: underline; /* dareen clickable */
}
.service-title-link {
  text-decoration: none !important;
  color: inherit;
  font-weight: inherit;
}

/* ================= Service links CSS END ================= */

/* about-2 */

.about-2 {
  --accent: #f37920;
  --muted: #6b7280;
  --card-bg: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 16px;
}

.about-2 {
  /* padding: 28px 0px; */
  max-width: 1100px;
 margin-top: -100px;
margin-right: auto;
margin-bottom: 10px;
margin-left: 110px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial;
}

.about-2-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.about-2-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2px;
}
.about-2-sub {
  color: var(--muted);
  font-size: 13px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.about-2 .info-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 20px 18px 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 6px 24px rgba(12, 12, 20, 0.35);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.28s;
}

/* subtle accent stripe using pseudo-element */
.about-2 .info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  background: linear-gradient(180deg, var(--accent), #9b8cff);
  transform: scaleY(1);
  transition: transform 0.28s;
  transform-origin: top;
}

.about-2 .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(12, 12, 20, 0.5);
}
.about-2 .info-card:focus-within {
  outline: 3px solid rgba(108, 99, 255, 0.12);
}
.about-2 .info-card:hover::before {
  transform: scaleY(1.03);
}

.info-card-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-card-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.12),
    rgba(155, 140, 255, 0.06)
  );
  box-shadow: inset 0 -6px 12px rgba(255, 255, 255, 0.02);
}

.info-card h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #ffffff;
}
.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

/* small decorative detail */
.info-card-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.16);
  padding: 6px 8px;
  border-radius: 999px;
}

.about-2 {
  padding-top: 32px;
  padding-bottom: 48px;
}

.about-2-header {
  margin-bottom: 20px;
}

.about-2 .about-cards {
  margin-top: 8px;
}

.about-2{
  background-color: red;
}


/* fav icon

*/
.faq-media {
  border: 1px solid var(--grid);
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
}

/* CSS vision and mission Start */
/* CARD DEFAULT */
.info-card{
  cursor:pointer;
  transition:.3s;
}

/* TITLE */
.info-card h4{
  color:#111827; /* madow */
  transition:.3s;
}

/* ICON CONTAINER */
.info-card-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3f4f6; /* gray light */
  transition:.3s;
}

/* SVG DEFAULT */
.info-card-icon svg{
  stroke:#6b7280; /* gray */
  transition:.3s;
}

/* ========== ACTIVE & HOVER ========== */
.info-card.active .info-card-icon,
.info-card:hover .info-card-icon,
.info-card:focus-visible .info-card-icon{
  background:#f37920; /* orange bg */
}

/* ICON CADAAN */
.info-card.active .info-card-icon svg,
.info-card:hover .info-card-icon svg,
.info-card:focus-visible .info-card-icon svg{
  stroke:#ffffff;
}

/* TITLE HADII UU ACTIVE YAHAY */
.info-card.active h4,
.info-card:hover h4,
.info-card:focus-visible h4{
  color:#111827; /* madow sii ahaado */
}

/* FOCUS */
.info-card:focus-visible{
  outline:none;
}

/* CSS vision and mission End */

