/* ABOUT-US */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}
.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
}

.story-btn {
  display: inline-block;
  background: var(--btn-color);
  color: #fff;
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-content-left-center {
  position: absolute;
  bottom: 180px; /* adjust this to move up/down */
  left: 80px; /* adjust this for left spacing */
  color: #fff;
  max-width: 600px;
}

.hero-content-left-center h1 {
  font-size: 64px; /* bigger heading */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}



/* ============= RESPONSIVE SLIDER ============= */

@media (max-width: 768px) {

    .hero-content-left-center h1 {
        margin-bottom: 10px;
    }

    .hero-content-left-center {
      bottom: 85px;
        left: 25px;
    }
    .story-btn {
    font-size: 16px;
    padding: 10px 26px;
  }
   
}

@media (max-width: 480px) {
  .hero-content-left-center h1 {
/*    font-size: 28px;*/
  }
  .hero-content-left-center a {
    padding: 10px 25px;
    font-size: 14px;
  }
}
.krivam-story {
  padding: 80px 5px;
  text-align: center;
  /* background: #fff; */
}

.krivam-story .container {
  max-width: 1000px;
  margin: 0 auto;
}

.individuals-header {
  padding: 0px 20px 40px;
}

.section-title {
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 25px;
}

.section-title .black {
  color: #000;
}

.section-title .orange {
  color: var(--accent-color);
}

.section-description {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 35px;
}
/* Section base styling */
.mvp-section {
  /* background: #f9fafc; */
  padding: 0px 20px;
  display: flex;
  justify-content: center;
}

/* Container grid */
.mvp-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1300px;
  /* max-width: 1100px; */
  width: 100%;
}

/* Card styling */
.mvp-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 50px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.mvp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

/* Image wrapper */
.mvp-img-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.mvp-img-wrap img {
  width: 40px;
  height: 40px;
}

/* Hover border animation */
.mvp-card:hover .mvp-img-wrap {
  box-shadow: 0 0 0 5px rgba(0, 102, 255, 0.2);
  transform: scale(1.05);
}

/* Title */
.mvp-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

/* Paragraph */
.mvp-card p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .mvp-card {
    padding: 40px 20px;
  }

  .mvp-card h3 {
    font-size: 20px;
  }

  .mvp-card p {
    font-size: 15px;
  }

  .mvp-img-wrap {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .mvp-container {
    grid-template-columns: 1fr;
  }

  .mvp-card {
    padding: 35px 18px;
  }

  .mvp-img-wrap {
    width: 65px;
    height: 65px;
  }

  .mvp-img-wrap img {
    width: 35px;
    height: 35px;
  }
}

/* CORE VALUES SECTION */
.core-value-section {
  background-color: var(--primary-color);
  
  text-align: center;
  padding: 60px 145px 40px;
  margin-top: 120px;
}
.core-value-section h2 {
  color: var(--accent-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.core-value-section p {
  color: #dcdcdc;
  font-size: 18px;
  margin-bottom: 40px;
}

.core-value-img {
  margin-top: -4%;
    max-width: 1000px;
/*    margin: 0px auto 80px;*/
    display: flex;
    flex-wrap: wrap;
      align-items: center;
    justify-content: center;
}

.leadership-section {
  padding: 80px 20px;
  /* background: #f9fafb; */
  text-align: center;
}

.leadership-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  /* margin-bottom: 50px; */
  color: #1b1b1b;
}

.leadership-section .container p{
  margin-bottom: 50px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.leadership-card {
  padding-top: 10px;
  justify-items: center;
  background: rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 
}

.leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.leadership-card img {
  /* width: 100%;
  height: 220px; */
    border-radius: 50%;
    width: 60%;
  object-fit: cover;
}

.leadership-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b1b1b;
  margin: 20px 20px 10px;
}

.leadership-card p {
  text-align: left;
  font-size: 0.95rem;
  color: #555;
  margin: 0 20px 25px;
  line-height: 1.6;
}

.leadership-card a {
  color: var(--accent-color, #ff6600);
  text-decoration: none;
  font-weight: 600;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .core-value-section{
    padding: 60px 45px 40px;
  }
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .core-value-section{
    padding: 60px 8px 40px;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leadership-card img {
/*    height: 200px;*/
  }
}

.social-responsibility-section {
  padding: 80px 20px;
  /* background: #f9fafb; */
  text-align: center;
}

.social-responsibility-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  /* margin-bottom: 50px; */
  color: #1b1b1b;
}

.social-responsibility-section .container h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1b1b1b;
}

.social-responsibility-section .container p {
  margin-bottom: 60px;
}
.social-responsibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
/*  grid-template-columns: repeat(4, 1fr);*/
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.social-responsibility-card {
  /* background: #fff; */
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.social-responsibility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.social-responsibility-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 7px
}

.social-responsibility-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1b1b1b;
  margin: 20px 20px 10px;
}

.social-responsibility-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 20px 25px;
  line-height: 1.6;
}

.social-responsibility-card a {
  color: var(--accent-color, #ff6600);
  text-decoration: none;
  font-weight: 600;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .social-responsibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .social-responsibility-grid {
    grid-template-columns: 1fr;
  }

  .social-responsibility-card img {
    height: 200px;
  }
}


/* END ABOUT STYLE */

/* 🪟 Popup Styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background: #fff;
  padding: 90px 20px;
  border-radius: 12px;
  width: 800px;
  display: flex;
  gap: 30px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  text-align: left;
}

.popup-content img {
  width: 230px;
/*  height: 100px;*/
  object-fit: cover;
  border-radius: 8px;
}

.popup-text {
  flex: 1;
}

.popup-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 5px;
}

.popup-text p {
  font-size: 0.95rem;
  color: #555;
  margin: 5px 0;
  line-height: 1.6;
}

.popup-text a {
  display: block;
  margin-top: 8px;
  color: var(--accent-color, #ff6600);
  text-decoration: none;
  font-weight: 600;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 35px;
  cursor: pointer;
  color: #333;
}

/* 📱 Responsive Popup */
@media (max-width: 600px) {
  .popup-content {
    flex-direction: column;
    align-items: center;
    width: 90%;
    text-align: center;
  }

  .popup-content img {
    width: 150px;
/*    height: 100px;*/
  } 

  .popup-text {
    text-align: center;
  }
}




.core-value-section h2 {
  padding-left: 10%;
  text-align: justify;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 25px;
/*    color: #222;*/
}

/* INNER FLEX SECTION */
.core-value-inner-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* LEFT CONTENT */
.core-value-left {
/*      margin-top: -10%;*/
  text-align: justify;
    padding: 0 0 0 10%;
    flex: 1;
}

.core-value-left p {
    font-size: 16px;
    line-height: 1.7;
/*    color: #555;*/
    max-width: 550px;
}

/* RIGHT IMAGE */
.core-value-img {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

/* Large screens (default) */
.core-value-left-top-margin {
    margin-top: -10%;
}

/* Laptops */
@media (max-width: 1200px) {
    .core-value-left {
        margin-top: 0%;
    }
}

/* Tablets Landscape */
@media (max-width: 992px) {
    .core-value-left {
        margin-top: 0%;
    }
}

/* Tablets Portrait */
@media (max-width: 768px) {
    .core-value-left {
        margin-top: -4%;
    }
}

/* Large Mobile */
@media (max-width: 576px) {
    .core-value-left {
        margin-top: -2%;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .core-value-left {
        margin-top: 0;   /* No negative margin on tiny screens */
    }
}

/*body {
    background: #102033;
    font-family: Poppins, sans-serif;
}*/

.timeline-wrapper {
    /*width: 90%;
    max-width: 1400px;*/
    margin: 7px auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    width: 22%;
    text-align: center;
    position: relative;
}

.step1 { top: 0px; }
.step2 { top: 80px; }
.step3 { top: 0px; }
.step4 { top: 80px; }

/* Number badge */
.number {
    width: 40px;
    height: 40px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto -25px;
    position: relative;
    z-index: 10;
}

/* Icon circle */
.icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.icon img {
    width: 48px;
}

/* Text */
.step h3 {
    margin-top: 16px;
    color: #1aa0ff;
    font-size: 20px;
    font-weight: 600;
}

.step p {
    color: #d6e2f0;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

/* Dotted Zigzag Line */
.line {
    position: absolute;
    width: 18%;
    border-top: 2px dashed rgba(255,255,255,0.4);
    top: 90px; /* FIXED: exactly center of circle */
    z-index: 1;
}

/* angle & spacing calibrated exactly like your screenshot */
.line1 {
    left: 17%;
    transform: rotate(22deg);
}

.line2 {
    left: 42%;
    transform: rotate(-22deg);
}

.line3 {
    left: 67%;
    transform: rotate(22deg);
}

/* Mobile Responsive */
@media(max-width: 992px) {
    .timeline-wrapper {
        flex-direction: column;
        gap: 80px;
    }
    .line { display: none; }
    .step { width: 100%; top: 0 !important; }
}


/*New Changes*/
/* Section */
.kv-difference-section {
    background: #102033;
    padding: 80px 0;
    color: var(--accent-color);;
}

/* REVISED: Remove text-align: center from the main rule */
.kv-title {
    /* text-align: center; REMOVED */ 
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Layout Wrapper */
.kv-difference-wrapper {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* ADDED: Title alignment for large screens (aligns with the wrapper content) */
.kv-difference-wrapper + .kv-title,
.kv-difference-section > .kv-title {
    width: 90%; /* Match wrapper width */
    max-width: 1400px; /* Match wrapper max-width */
    margin: 0 auto 40px; /* Center the block and provide bottom margin */
    text-align: left; /* Align to the left */
}

/* Left Content */
.kv-left-content {
    width: 37%;
}

.kv-left-content p {
    font-size: 18px;
    color: #d6e2f0;
    line-height: 1.6;
}

/* RIGHT SIDE TIMELINE */
.kv-timeline-container {
  position: relative;
    width: 65%;
}

/* TIMELINE CONTAINER */
.kv-timeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;   /* <— aligns icons in a straight line */
    position: relative;
/*    margin-top: 40px;*/
/*    padding-top: 80px; */
}

/* ALL STEPS */
.kv-step {
    width: 22%;
    text-align: center;
    position: relative;
}

/* REMOVE ZIG-ZAG TOP POSITIONS */
.kv-step1,
.kv-step2,
.kv-step3,
.kv-step4 {
    top: 0 !important;
}

/* NUMBER BADGE */
.kv-number {
    width: 42px;
    height: 42px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ICON CIRCLE */
.kv-icon {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 5;
    position: relative;
}

.kv-icon img {
    width: 48px;
}

/* TITLE */
.kv-step h3 {
    color: #1aa0ff;
    font-size: 18px;
    margin-top: 16px;
}

/* DESCRIPTION */
.kv-step p {
    font-size: 14px;
    color: #d6e2f0;
    line-height: 1.5;
    margin-top: 10px;
}

/* HORIZONTAL DASHED LINE */
.kv-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 140px; /* Perfect alignment with icon center */
    border-top: 2px dashed rgba(255,255,255,0.4);
    z-index: 1;
}

/* REMOVE INDIVIDUAL LINES — USE ONLY ONE */
.kv-line1, .kv-line2, .kv-line3 {
    display: none;
}

/* ADD SINGLE MAIN LINE */
.kv-timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    border-top: 2px dashed rgba(255,255,255,0.4);
    z-index: 1;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .kv-timeline-wrapper {
        flex-direction: column;
        gap: 60px;
        padding-top: 0;
    }

    .kv-timeline-wrapper::before {
        display: none;
    }

    .kv-step {
        width: 100%;
    }
}



  /*.timeline-line-unique{position:absolute;left:50%;top:20px;bottom:20px;width:0;border-left:4px dashed #fff;transform:translateX(-50%);z-index:1}

  .step-unique{position:relative;display:flex;align-items:center;justify-content:space-between;gap:20px;margin:48px 0;z-index:2}

  .block-unique{width:42%;display:flex;align-items:center}
  .icon-wrap-unique{justify-content:center}
  .icon-wrap-unique img{width:72px;height:72px;display:block;object-fit:contain}
  .label-unique{font-size:20px;font-weight:700;line-height:1.1;color: #fff}

  .step-unique::after{content:'';position:absolute;left:50%;transform:translateX(-50%);width:14px;height:14px;background:#fff;border-radius:50%;box-shadow:0 0 0 6px rgba(255,255,255,1)}

  .step-unique:nth-child(odd) .icon-wrap-unique{order:0}
  .step-unique:nth-child(odd) .label-wrap-unique{order:1}
  .step-unique:nth-child(even){flex-direction:row-reverse}
  .step-unique:nth-child(even) .icon-wrap-unique{order:0}
  .step-unique:nth-child(even) .label-wrap-unique{order:1}

  .left-unique{justify-content:flex-end;padding-right:18px;text-align:right}
  .right-unique{justify-content:flex-start;padding-left:18px;text-align:left}

  @media (max-width:820px){
    .timeline-line-unique{left:28px;transform:none}
    .step-unique{flex-direction:row;align-items:flex-start;margin:20px 0}
    .step-unique::after{left:28px;transform:none}
    .block-unique{width:calc(100% - 68px)}
    .icon-wrap-unique{width:56px;min-width:56px;margin-right:12px}
    .icon-wrap-unique img{width:48px;height:48px}
    .label-unique{font-size:16px;text-align:left;color: #fff;}
    .left-unique, .right-unique{padding:0;text-align:left;justify-content:flex-start}
    .step-unique:nth-child(even){flex-direction:row}
  }

  @media (max-width:420px){
    .container{padding:18px 12px}
    .icon-wrap-unique{width:48px;min-width:48px}
    .icon-wrap-unique img{width:40px;height:40px}
    .label-unique{font-size:15px}
  }

  @media (max-width:820px){
    .timeline-line-unique {
      left: 28px;
      transform: none;
      border-left: 2px dashed #fff;
      top: 0;
      bottom: 0;
    }

    .step-unique::after {
      left: 28px;
      transform: none;
      width: 6px;
      height: 6px;
      box-shadow: 0 0 0 4px rgba(255,255,255,1);
    }
  }*/

/* DO NOT CHANGE – using your exact line */
.timeline-line-unique{
    position:absolute;
    left:50%;
    top:20px;
    bottom:20px;
    width:0;
    border-left:4px dashed #fff;
    transform:translateX(-50%);
    z-index:1;
}

/* Step */
.step-unique{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin:48px 0;
    z-index:2;
}

/* Blocks always half width */
.block-unique{
    width:42%;
    display:flex;
    align-items:center;
}

/* Icon always left side */
.icon-wrap-unique{
    justify-content:flex-end;
    padding-right:18px;
    text-align:right;
}

/* Title always right side */
.label-wrap-unique{
    justify-content:flex-start;
    padding-left:18px;
    text-align:left;
}

.icon-wrap-unique img{
    width:72px;
    height:72px;
    object-fit:contain;
}

.label-unique{
    font-size:20px;
    font-weight:700;
    color:#fff;
}

/* Center dots */
.step-unique::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:14px;
    height:14px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 0 0 6px rgba(255,255,255,1);
}

/* REMOVE ALTERNATING BEHAVIOR */
.step-unique:nth-child(even),
.step-unique:nth-child(odd){
    flex-direction:row; /* Always icon left, text right */
}

.step-unique:nth-child(even) .icon-wrap-unique,
.step-unique:nth-child(odd) .icon-wrap-unique{
    order:0;
}

.step-unique:nth-child(even) .label-wrap-unique,
.step-unique:nth-child(odd) .label-wrap-unique{
    order:1;
}

/* Mobile */
@media (max-width:820px){
    .timeline-line-unique{
        left:28px;
        transform:none;
        border-left:2px dashed #fff;
        top:0;
        bottom:0;
    }

    .step-unique{
        flex-direction:row;
        align-items:flex-start;
        margin:20px 0;
    }

    .step-unique::after{
        left:28px;
        transform:none;
        width:6px;
        height:6px;
        box-shadow:0 0 0 4px rgba(255,255,255,1);
    }

    .block-unique{
        width:calc(100% - 68px);
    }

    .icon-wrap-unique{
        width:56px;
        min-width:56px;
        justify-content:center;
        padding:0;
    }

    .label-unique{
        font-size:16px;
    }
}

@media (max-width:420px){
    .label-unique{font-size:15px;}
    .icon-wrap-unique img{width:40px;height:40px;}
}


