body {
  font-family: 'Poppins', sans-serif;
  padding-top: 80px;
}




/* ===============================
   HERO SECTION (VALUEPRO)
================================ */

.hero {
  position: relative;
  padding: 120px 0 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #0a2540 0%,
    #123a63 45%,
    #1e4f8f 100%
  );
  overflow: hidden;
}

/* TEXT */
.hero-text h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons .btn-primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #0a2540;
  font-weight: 600;
}

.hero-buttons .btn-outline-primary {
  border-color: #ffffff;
  color: #ffffff;
}

.hero-buttons .btn-outline-primary:hover {
  background-color: #ffffff;
  color: #0a2540;
}

/* IMAGE */
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -12px;
  background: linear-gradient(
    135deg,
    rgba(255,193,7,0.9),
    rgba(30,79,143,0.9)
  );
  border-radius: 18px;
  z-index: 0;
}

.hero-image {
  position: relative;
  z-index: 1;
  background: #ffffff;
}


.hero-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}



/* TEXT ANIMATION */
#hero-title,
#hero-subtitle {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  display: block;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    top: 8px;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 110px 0 80px;
  }

  .hero-text {
    margin-bottom: 40px;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-image {
    max-width: 75%;
  }
}







/* ===============================
   CLIENT LOGOS
================================ 
.hero-logos {
  margin-top: 70px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.8s;
}

.hero-logos span {
  display: block;
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hero-logos .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-logos img {
  max-height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

*/



/* ===============================
   SCROLL INDICATOR
================================ */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 22px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 12px;
  display: block;
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.5s infinite;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-logos .logos {
    gap: 25px;
  }
}

/* HERO BASE */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 650px;
}

.hero-slider img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,37,64,0.85),
    rgba(10,37,64,0.5)
  );
  display: flex;
  align-items: center;
}

/* TEXT ANIMATION */
.hero-content {
  max-width: 680px;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.carousel-item.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* KPI BAR */
.hero-kpis {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: 50px;
  color: #fff;
}

.kpi span {
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 25px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  display: block;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% { opacity: 0; top: 8px; }
  50% { opacity: 1; }
  100% { opacity: 0; top: 20px; }
}










/* ===============================
   WHY VALUEPRO SECTION
================================ */
.why-valuepro {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-header h2 {
  font-size: 2.6rem;
  color: #0a2540;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* VALUE CARDS */
.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.value-card h5 {
  color: #0d6efd;
  margin-bottom: 12px;
}

/* SUB HEADINGS */
.sub-heading {
  font-size: 1.8rem;
  color: #0a2540;
  margin-bottom: 25px;
}

/* LISTS */
.engage-list,
.model-list {
  list-style: none;
  padding-left: 0;
}

.engage-list li,
.model-list li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.engage-list li::before,
.model-list li::before {
  content: "•";
  color: #0d6efd;
  position: absolute;
  left: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .sub-heading {
    font-size: 1.5rem;
  }
}


/* ===============================
   SALES TRAINING SECTION
================================ */

.sales-training-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  color: #0a2540;
}

.section-header p {
  max-width: 760px;
  margin: 0 auto 70px;
  color: #555;
}

/* BLOCKS */
.training-block {
  margin-bottom: 40px;
}

.block-title {
  font-size: 1.9rem;
  margin-bottom: 30px;
  color: #1b3a8a;
  position: relative;
}

.block-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #1b3a8a;
  display: block;
  margin-top: 8px;
}


/* CARDS */
.training-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card h5 {
  margin-bottom: 12px;
  color: #0a2540;
}

.training-card p {
  color: #555;
  font-size: 0.95rem;
}

.training-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}


/* HIGHLIGHT FOR HUTHWAITE */
.training-card.highlight {
  border-left: 5px solid #1b3a8a;
  background: linear-gradient(135deg, #f4f7ff, #ffffff);
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.1rem;
  }

  .block-title {
    font-size: 1.6rem;
  }
}




.card {
  border: none;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 28px;
  z-index: 1000;
}


/* ===============================
   CHANNEL PARTNER MANAGEMENT
================================ */
.channel-partner-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}

.partner-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0a2540;
}

.partner-content p {
  color: #555;
  margin-bottom: 18px;
}

.partner-points {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.partner-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #444;
}

.partner-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1b3a8a;
  font-weight: bold;
}

/* CARDS */
.partner-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card h5 {
  margin-bottom: 12px;
  color: #0a2540;
}

.partner-card p {
  color: #555;
  font-size: 0.95rem;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .channel-partner-section {
    text-align: center;
  }

  .partner-content h3 {
    font-size: 1.8rem;
  }
}


/* ===============================
   SALES & NEGOTIATION ADVISORY
================================ */
.advisory-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #0a2540 0%, #1b3a8a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.advisory-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 60%);
}

.advisory-header h2 {
  color: #ffffff;
}

.advisory-header p {
  color: rgba(255,255,255,0.9);
}

/* CONTENT */
.advisory-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.advisory-content p {
  margin-bottom: 18px;
  opacity: 0.95;
}

.advisory-points {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.advisory-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}

.advisory-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00e5ff;
  font-weight: bold;
}

/* CARDS */
.advisory-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 26px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.advisory-card h5 {
  margin-bottom: 10px;
}

.advisory-card p {
  font-size: 0.95rem;
  opacity: 0.95;
}

.advisory-card:hover {
  transform: translateY(-6px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .advisory-section {
    text-align: center;
  }

  .advisory-content h3 {
    font-size: 1.8rem;
  }
}


/* ===============================
   BUSINESS ACUMEN SKILLS
================================ */
.business-acumen-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.acumen-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0a2540;
}

.acumen-content p {
  color: #555;
  margin-bottom: 18px;
}

.acumen-points {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.acumen-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #444;
}

.acumen-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1b3a8a;
  font-weight: bold;
}

/* CARDS */
.acumen-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.acumen-card h5 {
  margin-bottom: 12px;
  color: #0a2540;
}

.acumen-card p {
  color: #555;
  font-size: 0.95rem;
}

.acumen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .business-acumen-section {
    text-align: center;
  }

  .acumen-content h3 {
    font-size: 1.8rem;
  }
}


@media (min-width: 992px) {
  .hero-image {
    animation: floatImage 6s ease-in-out infinite;
  }
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}


.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
  color: #0a2540;
}

.social-links a {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50%;
  color: #0a2540;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #0a66c2;
  color: #ffffff;
  transform: translateY(-2px);
}
