/* IT-Section */
.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;
}

.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: 800px;
}

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

.hero-content-left-center a {
  display: inline-block;
  padding: 12px 28px;
  background: var(--btn-color);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 6px;
  transition: 0.3s;
}


/* ============= RESPONSIVE SLIDER ============= */
@media (max-width: 768px) {
  .hero-content-mid h1 {
    font-size: 36px;
  }

  .hero-content-left-center {
      max-width: 430px;
    }
}

@media (max-width: 480px) {
  .hero-content-left-center h1 {
    font-size: 28px;
  }
  .hero-content-left-center a {
    padding: 10px 25px;
    font-size: 14px;
  }

}
/* 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;
  }
}

.card-section {
      margin: -128px auto 80px;
}

.card-section .mvp-card {
    z-index: 9;
}

.card-section .card-img{
margin-top: -89px;
}

/* Section Base */
.krivam-services-section {
  padding: 60px 60px;
}

@media (max-width: 480px) {
  .krivam-services-section {
    padding: 60px 40px;
  }
}

/* Box */
.krivam-service-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  margin-bottom: 50px;
  overflow: hidden;
}

/* Heading with curved/angled blue background */
.krivam-service-heading {
  background: linear-gradient(108deg, #0048a3 0%, #37cbb6 50%, #0048a3 100%);
  color: #fff;
  padding: 20px 30px;
  position: relative;
 
}

.head-shape-1{
   clip-path: polygon(0 0, 60% 0, 40% 100%, 0% 100%);
}

.head-shape-2{
   clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
}

.head-shape-3{
   clip-path: polygon(0 0, 40% 0, 60% 100%, 0% 100%);
}

.head-shape-4{
   clip-path: polygon(40% 0, 100% 0, 100% 100%, 60% 100%);
}

.krivam-service-heading.alt {
  background: linear-gradient(90deg, #0048a3 0%, #002b6b 100%);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.krivam-service-heading h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

/* Content */
.krivam-service-content {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  gap: 20px;
}

.krivam-service-column {
  flex: 1;
  min-width: 280px;
  padding: 0 20px;
}

.krivam-border-right {
  border-right: 2px solid #207d93;
}

.krivam-service-column:last-child {
  border-right: none;
}

/* Typography */
.krivam-subheading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.krivam-blue {
  color: #0048a3;
}

.krivam-service-content ul {
  padding-left: 20px;
  margin: 0;
}

.krivam-service-content li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

.krivam-service-content p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .krivam-service-content {
    flex-direction: column;
    padding: 20px;
  }

  .krivam-border-right {
    border-right: none;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
  }

  .krivam-service-heading {
    clip-path: none;
    border-radius: 12px 12px 0 0;
  }
}

@media (max-width: 600px) {
  .krivam-service-heading h2 {
    font-size: 18px;
  }

  .krivam-service-content {
    padding: 15px;
  }
}



/* END IT Section STYLE */
