/*!
* Style v1.0.0 (Kreston Menon & Al Dohh)
* @version 1.0.0
*/


 :root {
    --navy:#06244a;
    --blue:#189cd8;
    --teal:#43bbc7;
    --text:#587095;
    --border:#dbe8ef;
    --soft:#f7fbfd;
  }

html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; color: #122430; background: #ffffff; }
  h1, h2, h3, h4, .font-display { font-family: 'Inter', sans-serif; }

  .hero h1{
    line-height: 60px;
    font-family: 'Inter', sans-serif;
  }

  .hero{
    position: relative;
  }
  .slide{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition:
        opacity 1.5s ease-in-out,
        transform 1.5s ease-in-out;
    z-index: 0;
  }

  .slide.active {
    opacity: 1;
    visibility: visible;
  }

  .slideoverlay{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(255,255,255,0);
  }


  .font-display { 
    font-family: 'Inter', sans-serif; 
  }

  .grad-text {
    background: linear-gradient(100deg, #189cd8, #43bbc7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .btn-grad {
    background: linear-gradient(100deg, #189cd8, #43bbc7);
  }
  .btn-grad:hover {
    background: linear-gradient(100deg, #128ac2, #38a9b4);
  }

  .border-button{
    border: 1px solid rgba(11, 42, 61, 0.9);
  }
  .border-button:hover{
    border: 1px solid #128ac2 ;
  }
  
  .service-card {
    border-left: 3px solid transparent;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  }
  .service-card:hover {
    border-left-color: #189cd8;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -18px rgba(11,42,61,0.25);
  }
  .stat-divider { border-color: rgba(255,255,255,0.18); }


  .strength-card {
    border: 1px solid #43bbc7;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
    padding-top: 90px !important;
  }
  .strength-card:hover {
    border-left-color: #189cd8;
    box-shadow: 0 18px 40px -18px rgba(11,42,61,0.25);
    color: #ffffff !important; 
  }

  .strength-card:hover h3, .strength-card:hover p{
    color: #ffffff !important;
  }

  .strength-card::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0;
    left: 0;
    background: #189cd8;
    border-radius: 50%;
    transform: scale(0);
    transform-origin: top left;
    transition: transform 0.7s ease;
    z-index: 0;
}

.strength-card:hover::before {
    transform: scale(55);
    top: -35px;
    left: -50px;
}


  .strength-card-icon{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    background-color: #189cd8;
    border-radius: 0px 0px 90px 0px;
    z-index: 0;
    padding-top: 25px;
    padding-left: 25px;
  }
  .strength-card-content{
    position: relative;
    z-index: 1;
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
  }

  :focus-visible {
    outline: 2px solid #189cd8;
    outline-offset: 2px;
  }

  .logo{
    height: 60px;
    width: auto;
  }

  .eyebrow {
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--blue);
    font-size:14px;
    font-weight:700;
    letter-spacing:2.5px;
    text-transform:uppercase;
    margin-bottom:24px;
  }
  .eyebrow::before {
    content:"";
    width:7px;
    height:22px;
    background:var(--blue);
    transform:skew(-15deg);
    margin-top: -3px;
  }

  #why-kmad{
    position: relative;

  }
  .why-kmad-content{
    position: relative;
    z-index: 1;
  }
  .why-kmad-img{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    width: auto;
    max-width: 900px;
    height: 100%;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255, 255, 255, 0.95) 25%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
  }

  .bg-dark-blue{
    background-color: var(--navy);
  }

  .footer-logo{
    width: 150px;
    margin-bottom: 20px;
  }

  .footer-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    margin-top: 20px;
    text-transform: uppercase;
  }
  .footer-list li{
    margin-bottom: 8px;
  }

  .about-jv-image{
    position: relative;
  }
  .about-jv-image img{
    border-radius: 20px 20px 150px 20px !important;
  }

  .kma-profile-badge {
    position: absolute;
    left: -110px;
    bottom: 35px;
    width: 190px;
    padding: 24px;
    border-radius: 16px;
    background: var(--navy);
    color: white;
    box-shadow: var(--shadow-md);
  }

  .kma-profile-badge strong {
      display: block;
      color: var(--blue);
      font-size: 36px;
      line-height: 1;
  }

  #what-we-do{
    position: relative;
  }


  @media (max-width: 767px) {

    .why-kmad-img{
      display: none !important;
    }

    .slideoverlay{
      background: rgba(255,255,255,0.7);
    }

    .kma-profile-badge {
      left: 0px;
    }

  }