/* =========================
   HERO SLIDER STYLES
   ========================= */

.hero_slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Slides */
.hero_slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1.4s ease;
}

.hero_slider .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero_slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.hero_slider .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(10, 15, 30, 0.45),
    rgba(10, 15, 30, 0.85)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

/* Content box */
.hero_slider .content {
  max-width: 900px;
  text-align: center;
  color: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 26px;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.03)
  );
  box-shadow: 0 35px 90px rgba(0,0,0,0.35);
  animation: hero_slider_fadeUp 1.1s ease forwards;
}

.hero_slider .content h1 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero_slider .content p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  opacity: 0.9;
  max-width: 720px;
  margin: 0 auto;
}

/* Navigation dots */
.hero_slider .navigation {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 10;
}

.hero_slider .navigation .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero_slider .navigation .dot.active {
  background: #ffffff;
  transform: scale(1.5);
}

/* Animation */
@keyframes hero_slider_fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero_slider .content {
    padding: 2rem 1.5rem;
    border-radius: 22px;
  }
}


/*============= Middle of the page Start =========*/

/* ================= BASE ================= */
.about-section {
  width: 100%;
  font-family: Arial, sans-serif;
  color: #0a1f44;
  background: #ffffff;
}

/* ================= TOP STATS ================= */
#force-top-stats {
  display: flex;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.force-box {
  flex: 1;
  text-align: center;
  padding: 20px 20px;
  border-right: 1px solid #e5e7eb;
}

.force-box:last-child {
  border-right: none;
}

.force-box h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.force-box p {
  font-size: 14px;
  color: #475569;
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== RATING ===== */
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stars {
  font-size: 16px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #f59e0b, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= CENTER CONTENT ================= */
.content-container {
  max-width: 60%;
  margin: auto;
  padding: 100px 0;
}

.about-main {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ================= EXPERIENCE CIRCLE (ENHANCED) ================= */
.exp-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ece6ff, #dcd3ff); /* Darker gradient */
  box-shadow: 0 14px 35px rgba(59, 56, 227, 0.18); /* Slightly stronger shadow */
  flex-shrink: 0; /* Prevent circle from shrinking */
}

.exp-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4dcff, #cfc3ff); /* Darker inner circle */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.exp-inner h3 {
  font-size: 45px;
  font-weight: 700;
  color: #0a1f44;
  margin: 0;
}

.exp-inner span {
  font-size: 20px;
  line-height: 1.4;
  color: #1b1f34;
  margin-top: 4px;
}

.exp-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
  background: #3b38e3;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 6px 15px rgba(59, 56, 227, 0.35);
  line-height: 1.2;
}

/* ================= ABOUT TEXT ================= */
.about-text {
  max-width: 480px;   /* 🔥 Reduced text width so circle gets proper space */
}

.about-text small {
  color: #3b38e3;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-text h2 {
  font-size: 36px;
  margin: 12px 0 18px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* ================= ACTIONS ================= */
.about-actions {
  margin-top: 35px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ================= BUTTON ================= */
.btn-read {
  position: relative;
  padding: 10px 38px;
  background: #0a1f44;
  color: #ffffff;
  border-radius: 24px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-read::before,
.btn-read::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-read::before {
  content: "→";
  left: -22px;
  opacity: 0;
}

.btn-read::after {
  content: "←";
  right: 16px;
  opacity: 1;
}

.btn-read:hover::after {
  right: -22px;
  opacity: 0;
}

.btn-read:hover::before {
  left: 16px;
  opacity: 1;
}

.btn-read:hover {
  box-shadow: 0 14px 28px rgba(10, 31, 68, 0.35);
}

.btn-read:active {
  transform: scale(0.95);
}

/* ================= BOTTOM STATS ================= */
.bottom-stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.bottom-item h3 {
  font-size: 36px;
  font-weight: 700;
}

.line {
  width: 55px;
  height: 4px;
  background: linear-gradient(90deg, #3b38e3, #f59e0b);
  margin: 12px auto;
  border-radius: 3px;
}

.bottom-item p {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  #force-top-stats {
    flex-direction: column;
  }

  .force-box {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .content-container {
    max-width: 90%;
  }

  .about-main,
  .bottom-stats {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-actions {
    justify-content: center;
  }

  .rating-row {
    flex-direction: column;
    gap: 4px;
  }
}

/* ===== Why Us Section Start ====== */

/* ============================= */
/* PHARMA WHY SECTION (ISOLATED) */
/* ============================= */

.pharma-why-section {
  width: 100%;
 
  padding: 100px 0;
  font-family: Arial, sans-serif;
}

.pharma-container {
  width: 65%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.pharma-left {
  flex: 1;
}

.pharma-tag {
  display: inline-block;
  background: #e9edff;
  color: #3b38e3;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pharma-left h2 {
  font-size: 38px;
  margin-bottom: 40px;
  color: #0a1f44;
}

/* TIMELINE */
.pharma-timeline {
  position: relative;
}

.pharma-timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e2e8f0;
}

.pharma-item {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}

.pharma-number {
  width: 50px;
  height: 50px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #64748b;
  transition: 0.3s ease;
  z-index: 2;
}

/* HOVER EFFECT (NUMBER TURNS BLUE) */
.pharma-item:hover .pharma-number {
  background: #3b38e3;
  color: #ffffff;
}

.pharma-content h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0a1f44;
}

.pharma-content p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  max-width: 450px;
}

/* RIGHT IMAGE */
.pharma-right {
  flex: 1;
  text-align: right;
}

.pharma-right img {
  max-width: 100%;
  height: auto;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

  .pharma-container {
    flex-direction: column;
    text-align: center;
  }

  .pharma-right {
    text-align: center;
    margin-top: 50px;
  }

  .pharma-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .pharma-item {
    flex-direction: column;
    align-items: center;
  }

  .pharma-content p {
    max-width: 100%;
  }
}
/* ===== Why Us Section End ====== */

/* ===== OUR PARTNERS SECTION Start ===== */

/* ============================= */
/*   OUR PARTNERS                 */
/* ============================= */

.rp-partners-section {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.rp-container {
    width: 65%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.rp-partners-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
    position: relative;
}

.rp-partners-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #0056d2;
    display: block;
    margin: 12px auto 0;
}

.rp-partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.rp-partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: rp-scroll 30s linear infinite;
}

/* Pause on hover */
.rp-partners-slider:hover .rp-partners-track {
    animation-play-state: paused;
}

.rp-partners-track a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.rp-partners-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.rp-partners-track img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Animation */
@keyframes rp-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================= */
/*         RESPONSIVE            */
/* ============================= */

@media (max-width: 992px) {
    .rp-partners-track img {
        height: 50px;
    }

    .rp-partners-track a {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .rp-partners-title {
        font-size: 24px;
    }

    .rp-partners-track img {
        height: 45px;
    }

    .rp-partners-track a {
        padding: 0 25px;
    }
}

@media (max-width: 480px) {
    .rp-partners-track img {
        height: 40px;
    }

    .rp-partners-track a {
        padding: 0 20px;
    }
}
/* ===== OUR PARTNERS SECTION END ===== */

/* ============================= */
/*       SERVICES SECTION START      */
/* ============================= */

.po-services-section {
    background: linear-gradient(135deg, #0f1f3d 0%, #1c2c4e 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decorative dots */
.po-services-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 350px;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.35;
}

.po-services-container {
    width: 85%;
    max-width: 1000px; /* smaller overall section width */
    margin: auto;
    position: relative;
    z-index: 2;
}

/* TOP AREA */
.po-services-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.po-badge {
    display: inline-block;
    background: #132b52;
    padding: 5px 5px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.po-title {
    font-size: 36px; /* slightly smaller title */
    font-weight: 700;
    margin: 0;
}

.po-services-right {
     flex: 1;
    max-width: 420px; 
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

/* CARDS GRID */
.po-services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px; /* tighter spacing */
    margin-bottom: 40px;
}

/* CARD */
.po-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Lift effect */
.po-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.po-card img {
    width: 100%;
    height: 290px; /* reduced more */
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Zoom */
.po-card:hover img {
    transform: scale(1.08);
}

/* BADGE */
.po-mini-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #4e5bff;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* OVERLAY */
.po-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px;
    background: linear-gradient(to top, rgba(15,31,61,0.95), rgba(15,31,61,0.3), transparent);
    transition: all 0.4s ease;
}

.po-card-overlay h3 {
    margin: 0;
    font-size: 16px;
}

.po-card-overlay p {
    margin-top: 4px;
    font-size: 10px;
    opacity: 0.85;
}

/* Purple hover overlay */
.po-card:hover .po-card-overlay {
    background: linear-gradient(to top, rgba(78,91,255,0.95), rgba(78,91,255,0.6), transparent);
}

/* BOTTOM TEXT */
.po-services-bottom {
    text-align: center;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .po-services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .po-services-top {
        flex-direction: column;
    }

    .po-title {
        font-size: 28px;
    }

    .po-services-cards {
        grid-template-columns: 1fr;
    }

    .po-card img {
        height: 200px;
    }
}


/* ==================================================
   FOUNDER SECTION  START
   ================================================== */

.founder-clone {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}

/* 65% centered container */
.founder-clone-inner {
  width: 65%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
}

/* --------------------------------
   IMAGE AREA
--------------------------------- */

.founder-clone-media {
  position: relative;
  height: 440px; /* reduced size */
}

.fc-image {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
}

.fc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* back image */
.fc-back {
  width: 62%;
  height: 100%;
  top: 0;
  left: 0;
}

/* front image */
.fc-front {
  width: 50%;
  height: 72%;
  bottom: 0;
  left: 40%;
}

/* --------------------------------
   CONTENT AREA
--------------------------------- */

.founder-clone-content {
  padding-left: 32px;
  max-width: 420px;
}

.fc-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #2f56ff;
  margin-bottom: 16px;
}

.fc-name {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: #0b1b33;
  margin-bottom: 24px;
}

.fc-text {
  font-size: 14.5px;
  line-height: 1.85;
  color: #6b7280;
  margin-bottom: 26px;
}

/* --------------------------------
   READ MORE BUTTON
--------------------------------- */

.fc-readmore {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #2f56ff;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid #2f56ff;
}

.fc-readmore:hover {
  opacity: 0.85;
}

/* --------------------------------
   RESPONSIVE — DESKTOP LOOK PRESERVED
--------------------------------- */

@media (max-width: 1200px) {
  .founder-clone-inner {
    width: 80%;
  }
}

@media (max-width: 992px) {
  .founder-clone-inner {
    width: 90%;
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  .founder-clone-media {
    height: 400px;
  }

  .founder-clone-content {
    padding-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .founder-clone-media {
    height: 340px;
  }

  .fc-name {
    font-size: 28px;
  }
}
