:root {
  --primary-blue: #2563eb;
  --light-blue: #3b82f6;
  --dark-blue: #1e40af;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
}

* {
  font-family: "Inter", sans-serif;
}

body {
  overflow-x: hidden;
}

.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--light-blue) 100%
  );
  color: white;
  padding: 250px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn-custom a {
  background: white;
  color: var(--primary-blue);
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.btn-custom a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary-blue);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--gray-600);
  line-height: 1.6;
}

.stats-section {
  background: var(--gray-50);
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--gray-600);
  font-weight: 500;
}

.services-section {
  background: white;
}

.service-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.service-item:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
  border-left-color: var(--primary-blue);
  transform: translateX(10px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--primary-blue) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer {
  background-color: #0a1f44; /* Deep Blue */
  color: #cfd8e3;
  padding: 40px 0 20px;
}
.footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.footer p {
  font-size: 15px;
  line-height: 1.6;
}
.footer ul li {
  list-style: none;
  margin-bottom: 10px;
}
.footer ul li a {
  text-decoration: none;
  color: #cfd8e3;
  transition: all 0.3s ease;
}
.footer ul li a:hover {
  color: #00c3ff;
  padding-left: 5px;
}
.footer .social-icons a {
  font-size: 18px;
  color: #cfd8e3;
  margin-right: 12px;
  transition: 0.3s;
}
.footer .social-icons a:hover {
  color: #00c3ff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #9caec7;
}
.no-link {
  text-decoration: none !important; /* removes underline */
  color: #fff !important; /* ensures white text */
}

.no-link:hover {
  color: #0dcaf0 !important; /* optional: blue on hover (Bootstrap info color) */
}

/* ================================
   DATA PARTNERS SECTION (ISOLATED)
================================ */

.data-partners-section {
  padding: 40px 20px;
  background-color: #ffffff;
  position: relative;
  isolation: isolate;
  min-height: 320px;
}

.data-partners-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Section title */
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0f172a;
}

/* Grid layout */
.data-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  place-items: center;
}

/* Card */
.data-partner-card {
  width: 100%;
  max-width: 320px;
  height: 180px; /* 🔑 more vertical room */

  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  position: relative;
  z-index: 1;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.data-partner-card:hover {
  transform: translateY(-6px);

  /* Primary blue glow */
  box-shadow:
    0 18px 40px rgba(59, 130, 246, 0.25),
    /* blue depth */ 0 0 0 1px rgba(99, 102, 241, 0.35); /* subtle blue outline */
}

/* Stack logo + divider + role */
.partner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 🔑 UNIFORM LOGO SLOT (prevents layout break) */
.partner-logo {
  width: 180px;
  height: 90px; /* fixed slot height */
  display: flex;
  align-items: center;
  justify-content: center;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Bounce Cure – perfect circle */
.partner-logo.bounce-cure {
  width: 105px;
  height: 105px;

  background-image: url("../image/rasul.jpg");
  background-size: cover;
  background-position: center;

  border-radius: 50%;
  overflow: hidden;
}

/* Verify Emails */
.partner-logo.veriemails {
  background-image: url("../image/veriemails.png");
}

/* Global Business Alliance */
.partner-logo.gba {
  background-image: url("../image/global_business_alliance.png");
}

/* Divider under logo */
.partner-divider {
  width: 40px;
  height: 2px;
  background-color: #6366f1;
  margin: 14px 0 10px;
  border-radius: 2px;
  transition:
    width 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* Role text */
.partner-role {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  text-align: center;
  letter-spacing: 0.3px;
}
