


/* Tooltip base style (single, cleaned) */
.tooltips {
    position: relative;
    display: inline-block;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 600;
    background: #007BFF;
    border-radius: 20px;
    color: #fff;
    margin-bottom: 6px;

    /* Animation: tooltipJump ke naam se chal raha hai.
       Duration 3s � chhota karenge to tez, bada karenge to dheere. */
    animation: tooltipJump 3s linear infinite;
}

/* arrow */
.tooltips::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: #007BFF;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* Instant up-down with short pauses and quick down movement */
@keyframes tooltipJump {
    /* 0% - 40% : bottom pause (tooltip stays at baseline) */
    0%   { transform: translateY(0); }
    40%  { transform: translateY(0); }

    /* 41% : instant jump UP */
    41%  { transform: translateY(-30px); }

    /* 41% - 60% : top pause (stays up) */
    60%  { transform: translateY(-30px); }

    /* 61% : instant jump DOWN (fast return) */
    61%  { transform: translateY(0); }

    /* 61% - 100% : bottom pause until next loop */
    100% { transform: translateY(0); }
}
section.solutions-section {
    padding: 50px 0px;
}
    .hero-section{
      position:relative;
      overflow:hidden;
      padding:70px 0;
    background-image: url("https://www.cvinfotech.com/wp-content/uploads/2026/04/3f157796857261cad9c77599dd4d0e25a9d33a92.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height: 100vh;
    }

    .container{
      width:1200px;
      max-width:95%;
      margin:auto;
    }

    .hero-wrapper{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:60px;
    }

    /* LEFT CONTENT */
    .hero-content{
      flex:1;
      max-width:650px;
    }

    .top-badge{
      display:inline-flex;
      align-items:center;
      gap:80px;
      padding:12px 22px;
      background:#fff;
      border-radius:50px;
      box-shadow:0 6px 20px rgba(0,0,0,0.06);
      margin-bottom:32px;
      font-size:14px;
      color:#444;
      font-weight:500;
    }

    .top-badge span{
      position:relative;
    }

    .top-badge span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #000;
}

    .hero-title {
    font-size: 40px;
    line-height: 100%;
    font-weight: 800;
    color: #111;
    margin-bottom: 22px;
    letter-spacing: 0%;
    font-weight: 700;
}

    .hero-title .highlight{
      color:#4a58d4;
    }

    .hero-desc{
      font-size:16px;
      line-height:1.8;
      color:#666;
      max-width:620px;
      margin-bottom:32px;
    }

    .features{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px 25px;
      margin-bottom:32px;
    }

.hero-section .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 12px;
    font-weight: 500;
}

    .feature-icon{
      width:18px;
      height:18px;
      border-radius:50%;
      background:#2E3A7A;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:11px;
      flex-shrink:0;
    }

    .small-points{
      display:flex;
      gap:40px;
      flex-wrap:wrap;
      margin-bottom:38px;
      color:#666;
      font-size:12px;
    }

    .small-points span{
    position:relative;
    }
    .comitmentIcon::before {
      content: "";
      display: inline-block;
      width: 12px;
      height: 12px;
      background-image: url('https://www.cvinfotech.com/wp-content/uploads/2026/05/Vector.png');
      background-size: contain;
      background-repeat: no-repeat;
      margin-right: 8px;
      vertical-align: middle;
    }
    .problem-card:hover{
        background: #6d6d6d;
    }
    .problem-card:hover h3, .problem-card:hover p{
        color:#fff !important;
    }
      
    .hero-buttons{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
    }

    .btn{
      padding:16px 28px;
      border-radius:2px;
      text-decoration:none;
      font-weight:700;
      font-size:15px;
      transition:0.3s ease;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:220px;
    }

    .btn-primary{
      background:#07114f;
      color:#fff;
    }

    .btn-primary:hover{
      background:#111d6b;
    }

   .btn-outline {
    border: 1px solid #313E94 !important;
    color: #313E94 !important;
    background: #fff !important;
    border-radius: 0px ! IMPORTANT;

}

    .btn-outline:hover{
      background:#f3f5ff;
    }

    /* FORM CARD */
    .hero-form{
      width:380px;
      background:#fff;
      border-radius:12px;
      padding:15px 28px;
      box-shadow:0 12px 35px rgba(0,0,0,0.08);
    }

   .hero-form .form-group{
      margin-bottom:8px;
    }
  textarea.wpcf7-form-control.wpcf7-textarea {
      height: 7.25rem;
  }
    .form-group label{
      display:block;
      margin-bottom:8px;
      font-size:12px;
      color:#222;
      font-weight:600;
    }

    .form-group label span{
      color:red;
    }

.hero-form .form-control {
    border-radius: 6px !important;
    line-height: 1.5 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 12px 16px 12px 16px !important;
    vertical-align: middle !important;
    width: 100% !important;
    min-height: 40px !important;
    border: 1px solid #EBEBEB !important;
}

    .form-control:focus{
      border-color:#4a58d4;
    }

    textarea.form-control{
      resize:none;
      min-height:120px;
    }

   .submit-btn {
    width: 100%;
    background: #01012F !important;
    color: #fff !important;
    border: none !important;
    padding: 16px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    margin-top: 8px;
    transition: 0.3s !important;
    border-radius: unset !important;
}

    .submit-btn:hover {
    background: #111d6b !important;
}

    .form-footer{
      margin-top:16px;
      text-align:center;
      font-size:13px;
      color:#777;
    }
   .form-footer .infoText::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('https://www.cvinfotech.com/wp-content/uploads/2026/05/material-symbols_lock.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}
    .trusted-section{
      padding:70px 20px;
      text-align:center;
    }

 .badge {
    position: relative;
    display: inline-block;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 600;
    background: #007BFF;
    border-radius: 20px;
    color: #fff;
    margin-bottom: 6px;
    animation: tooltipJump 3s linear infinite;
}

  .trusted-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

   .trusted-section h2 span {
    color: #2E3A7A;
}

    .trusted-section p{
      max-width:700px;
      margin:0 auto 50px;
      color:#525252;
      line-height:1.7;
      font-size:15px;
    }

    /* Company Logos */
    .company-logos{
      display:flex;
      justify-content:center;
      align-items:center;
      flex-wrap:wrap;
      margin-bottom:60px;
    }

    .company-logos img{
      height:auto;
      object-fit:contain;
      transition:0.3s;
    }

    .company-logos img:hover{
      transform:scale(1.05);
    }

    /* Review Logos */
    .review-logos{
      display:flex;
      justify-content:center;
      align-items:center;
      flex-wrap:wrap;
    }

    .review-box img{
      margin-bottom:10px;
    }

    .rating{
      font-size:15px;
      font-weight:600;
      color:#111;
    }
   
    .problem-section{
      padding:70px 20px;
      text-align:center;
    }

    /* Badge */
    .section-badge{
      display:inline-block;
      background:#2f80ed;
      color:#fff;
      padding:7px 16px;
      border-radius:20px;
      font-size:13px;
      margin-bottom:18px;
      font-weight:600;
    }

    /* Heading */
    .problem-section h2{
      font-size:42px;
      line-height:1.3;
      color:#000;
      margin-bottom:55px;
      font-weight:700;
    }

    .problem-section h2 span{
      color:#2E3A7A;
    }
.problem-card:nth-child(1):hover {
    background: url('/wp-content/uploads/2026/05/74db5bf95f9fbb53ec93076d7878af67f6e30046.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.problem-card:nth-child(2):hover {
    background: url('/wp-content/uploads/2026/05/6d4e560db5d069b1797974dcf135fec9a3bd4a63-1.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.problem-card:nth-child(3):hover {
    background: url('/wp-content/uploads/2026/05/0e397f304e1d779bd6b9aaaebeb630f408e9cce9.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.problem-card:nth-child(4):hover {
    background: url('/wp-content/uploads/2026/05/2bf95530f0c6dd2666a10ee15f4bff9d56309b66.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.feature-card:hover h3, .feature-card:hover p {
    color: #fff;
}
.feature-card:nth-child(1):hover {
    background: url('/wp-content/uploads/2026/05/36b7f1ad114df93bf904424439115a5d3b0974f2-1.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.feature-card:nth-child(2):hover {
    background: url('/wp-content/uploads/2026/05/40760f2ff11159f3c41200cde162a0dd22cd5482.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.feature-card:nth-child(3):hover {
    background: url('/wp-content/uploads/2026/05/879e3536c4aea10108c615103280381534cc12d9.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.feature-card:nth-child(4):hover {
    background: url('/wp-content/uploads/2026/05/404b4b7a56eeac858778b00670ca14f6141657c5.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

    /* Cards */
    .problem-grid{
      max-width:1200px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
    }

    .problem-card{
      background:#eceff3;
      padding:40px 25px;
      border-radius:4px;
      transition:0.3s;
    }

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

    /* Icon Circle */
    .icon-box{
      width:65px;
      height:65px;
      border-radius:50%;
      background:#241c78;
      margin:0 auto 20px;
      display:flex;
      align-items:center;
      justify-content:center;
      border:4px solid #fff;
      box-shadow:0 0 0 2px #241c78;
    }

    .icon-box img{
      width:28px;
      height:28px;
      object-fit:contain;
      filter: brightness(0) invert(1);
    }

    .problem-card h3{
      font-size:18px;
      color:#241c78;
      margin-bottom:12px;
      font-weight:700;
    }

    .problem-card p{
      color:#555;
      line-height:1.6;
      font-size:14px;
    }
    
/* Badge with Triangle */
.badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.solutions-badge {
    background-color: #007bff;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    position: relative;
}

.solutions-badge::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #007bff;
}

/* Headings */
.main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    text-align: center;
}

.main-title span {
    color: #1a237e;
}

.nsubtitle {
    color: #fff;
    font-size: 16px;
    margin-bottom: 60px;
    text-align: center;
}
/* Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align:center;
}

/* Card Styling */
.card {
    background-color: #f8faff; /* Subtle blue tint */
    padding: 45px 25px;
    border-radius: 12px;
    border: 1px solid transparent;
    position: relative;
    transition: all 0.3s ease;
        box-shadow: 0px 2px 15px 0px #00000026;
}

/* Active Purple Border */
.card.active {
    /* border: 2px solid #9747FF; */
    background-color: #f8faff;
}

.card h3 {
    font-size: 19px;
    color: #1a237e;
    margin: 20px 0 12px;
    line-height: 1.2;
}

.card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* Icon Container */
.icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.service-icon {
    width: 60px; /* Adjust based on your image size */
    height: 60px;
    object-fit: contain;
    z-index: 2;
}

/* Status Dots */
.status-dot {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 3;
}

.dot-red { background-color: #ff4d4d; }
.dot-orange { background-color: #ff9800; }
.dot-blue { background-color: #2196f3; }

.growth-section {
  font-family: 'Inter', sans-serif;
  background-color: #20264B; /* Dark navy background */
  padding: 100px 20px;
  text-align: center;
}


/* Header Styles */
.growth-header h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'Montserrat';
}

.growth-header p {
  color: #a0aec0; /* Lighter gray/blue for subtitle */
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
  font-family: 'Montserrat';
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card Styles */
.feature-card {
  background-color: #f4f8fc; /* Light blueish white */
  padding: 40px 20px;
  border-radius: 4px; /* Slightly sharp rounded corners as seen in image */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  color: #170868;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  font-family: 'Montserrat';
}

.feature-card p {
  color: #393939;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Montserrat';
}

/* Icon Double Circle Effect */
.icon-outer-ring {
  width: 66px;
  height: 66px;
  border: 1px solid #170868;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-inner-circle {
  width: 54px;
  height: 54px;
  background-color: #170868;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}


section.case-studies {
    padding: 100px 0px;
}
/* Responsive Breakpoints */


@media (max-width:1200px){
    .why-choose-section .why-choose-wrapper {
    padding: 0px 10px;
     flex-wrap: wrap; 
}
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .problem-grid, .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .growth-header h2 {
    font-size: 28px;
  }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    background: var(--primary-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--primary-blue);
}

.section-header h1 {
    font-size: 48px;
    color: #000;
    margin: 0 0 15px 0;
}

.section-header h1 span {
    color: var(--dark-blue);
}

.section-header p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Card Styling */
.case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    /* Box shadow to match image depth */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-image-container {
    height: 350px;
    background: #eee;
    overflow: hidden;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        object-position: top;
}

.card-content {
    padding: 25px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-top h3 {
    font-size: 16px;
    color: #1E1E1E;
    margin: 0;
}

.client-name {
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 500;
}

.card-tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.tag {
    background: #C8D7F5;
    color: #20264B;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 8px;
}

.stars {
    color: #ffc107;
    letter-spacing: 2px;
    padding: 0px 12px;
    background: #F5F5F5;
    border-radius: 28px;
    font-size: 20px;
}
/* Stats Section */
.card-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
}

.stat-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2E3A7A;
}

.stat-num small {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 400;
}

.stat-label {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial {
    margin: 0;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    padding: 0 20px;
    border-left:none;
}


.testimonial::before, .testimonial::after {
    content: '"';
    font-family: serif;
    font-size: 40px;
    color: #e5e7eb;
    position: absolute;
    line-height: 1;
}

.testimonial::before { left: -10px; top: -10px; }
.testimonial::after { right: -10px; bottom: -20px; }

/* Footer Button */
.footer-btn {
    text-align: center;
    margin-top: 50px;
}
.case-studies .footer-btn {
    background: none !important;
}

.case-studies .footer-btn:hover {
    transform: none !important;
    box-shadow: none !important;
    border-left-color: none !important;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--dark-blue);
    color: var(--dark-blue);
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--dark-blue);
    color: white;
}

.why-choose-section{
    padding: 70px 0px !important;
      max-width:100%;
      margin:auto;
      background: #F3F8FE;
    }

   .why-choose-section .section-top{
      text-align:center;
      margin-bottom:50px;
    }

   .why-choose-section .section-top .tag {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 20px;
    margin: 40px;
}

    .why-choose-section .section-top h2{
      font-size:42px;
      font-weight:700;
      color:#111;
      line-height:1.2;
      margin-bottom:12px;
    }

    .why-choose-section .section-top h2 span{
      color:#3b43c6;
    }

    .why-choose-section .section-top p{
      color:#666;
      font-size:15px;
    }

  .why-choose-section .why-choose-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 1200px;
    margin: auto;
}

    .why-choose-section .left-image{
      width:35%;
    }

    . why-choose-section.left-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      border-radius:4px;
      display:block;
    }

    .why-choose-section .right-content{
      width:65%;
    }

    .why-choose-section .feature-grid{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:22px 25px;
    }

    .why-choose-section .feature-box{
      background:transparent;
    }

    .why-choose-section .feature-title{
      display:flex;
      align-items:center;
      background:#fff;
      border:1px solid #ddd;
      min-height:55px;
    }

    .why-choose-section .feature-icon{
      width:55px;
      height:55px;
      background:#0d6efd;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
      flex-shrink:0;
      border-radius: 0px;
    }

    .why-choose-section .feature-title h4{
      font-size:16px;
      font-weight:700;
      color:#222;
      padding:0 18px;
    }

    .why-choose-section .feature-box p{
      color:#666;
      font-size:14px;
      line-height:1.7;
      margin-top:12px;
      padding-left:2px;
    }

    @media(max-width:991px){

      .why-choose-section .why-choose-wrapper{
        flex-direction:column;
        width: auto;
      }

      .why-choose-section .left-image,
      .why-choose-section .right-content{
        width:100%;
      }

      .why-choose-section .section-top h2{
        font-size:32px;
      }
    }

    @media(max-width:767px){
      .why-choose-section .feature-grid{
        grid-template-columns:repeat(1, 1fr);
      }

      .why-choose-section .section-top h2, .hero-title, .trusted-section h2, .problem-section h2, .main-title, .section-header h1 {
        font-size:28px !important;
      }
    }
.cta-outer {
    width: 100%;
    padding: 40px 20px;
    background: #f3f8fe;
}

/* The White Border Frame */
.cta-white-frame {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0px 4px 12px 0px #00000014;
}

/* Background Image with Dark Overlay */
.cta-content-bg {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/wp-content/uploads/2026/05/86aab676f741f7e31012386fbc7d007326972a98.webp'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    padding: 80px 40px;
    text-align: center;
    color: white;
}

/* Speech Bubble Badge */
.badge-wrapper {
    margin-bottom: 25px;
}

.cta-badge {
    background-color: #007bff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-badge::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #007bff;
}

/* Typography */
h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    color: #525252;
    font-size: 16px;
    text-align:center;
    margin: 0 auto 40px auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Buttons */
.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-white {
    background-color: #fff;
    color: #313E94;
}

.btn-navy {
    background-color: #050a30; /* Very dark navy */
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    width: 18px;
    height: 18px;
    border: 1px solid white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 { font-size: 32px; }
    .button-group { flex-direction: column; align-items: center; }
    .cta-features { flex-direction: column; gap: 15px; }
    .cta-content-bg { padding: 60px 20px; }
}
/* Responsive adjustments */
@media (max-width: 900px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}
    /* RESPONSIVE */
    @media(max-width:991px){

      .hero-wrapper{
        flex-direction:column;
      }

      .hero-content{
        max-width:100%;
      }

      .hero-form{
        width:100%;
        max-width:500px;
      }

      .features{
        grid-template-columns:repeat(2,1fr);
      }

      .hero-title{
        font-size:42px;
      }
    }

    @media(max-width:767px){

      .hero-section{
        padding:50px 0;
      }

      .hero-title{
        font-size:34px;
      }

      .features{
        grid-template-columns:1fr;
      }

      .top-badge{
        flex-wrap:wrap;
        gap:10px;
      }

      .hero-buttons{
        flex-direction:column;
      }

      .btn{
        width:100%;
      }
    }


@media (max-width:500px){
     .features-grid, .problem-grid, .cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .card-tags, .card-top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
}