 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            background-color: #f5f7fa;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            width: 100%;
            padding: 18px 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(90deg, #2f6db3, #3b82c4);
            position: relative;
        }
.navbar::after {
    content: "";
    position: absolute;
    left: 80px;
    right: 80px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-box {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
        }

        .logo-text {
            color: white;
            font-size: 20px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        /* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(90deg, #2f6db3, #3b82c4);
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;;
}

.hero-left {
    max-width: 520px;
}

.hero-left h1 {
    font-size: 41px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 22px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.store-buttons {
    display: flex;
    gap: 15px;
}

.store-buttons img {
    height: 50px;
    cursor: pointer;
    border-radius: 10px;
    border-color: black
}

.hero-right {
    width: 420px;
    height: 320px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.image{
    height: 380px;
    width: 750px;
    /* padding-right: 30px; */
    /* margin-top: 10%; */
    /* object-position: -20px; */
    
}
.img-div{
    position: absolute;
    bottom: -4px;   
    right:0;
    margin-right: 50px;

}

/* ===== FEATURE BAR SECTION ===== */
.feature-section {
    background: linear-gradient(180deg, #eaf2fb, #dce9f7);
    padding: 55px 20px;
    text-align: center;
}

.feature-section h2 {
    font-size: 30px;
    color: #2f6db3;
    margin-bottom: 10px;
    
}

.feature-subtitle {
    font-size: 15px;
    color: #4b6b8f;
    margin-bottom: 40px;
}

/* ===== FEATURE BAR ===== */
.feature-bar {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 30px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #0A2540;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background-color: #0A2540;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.divider {
    width: 1px;
    height: 32px;
    background-color: #d3e0ef;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: linear-gradient(180deg, #2f6db3, #3b82c4);
    padding: 30px 40px;
    text-align: center;
}

.how-it-works h2 {
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* ===== STEPS ===== */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.step-card {
    background-color: white;
    padding: 22px 26px;
    border-radius: 4px;
    width: 300px;
    height: 120px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    
}

.step-number {
    width: 28px;
    height: 28px;
    background-color: #0A2540;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.step-card h3 {
    font-size: 25px;
    color: #0A2540;
    /* margin-bottom: 8px; */
    margin: 0;

}

.step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    
}

.step-card p {
    font-size: 18px;
    color: #4b6b8f;
    margin: 0;
    padding-left: 25px;
    font-weight: 600;
}

/* ===== SERVICES SECTION =====*/
/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(180deg, #eaf2fb, #dce9f7);
    padding: 60px 20px;
}

/* ROW */
.services-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap; /* ✅ IMPORTANT */
}

/* CARD */
.service-card {
    background: white;
    width: 100%;
    max-width: 360px; /* desktop size */
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* HEADER */
.service-header {
    background: linear-gradient(90deg, #2f6db3, #3b82c4);
    color: white;
    padding: 14px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

/* BODY */
.service-body {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* LEFT CONTENT */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* CHECK ITEM */
.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #0A2540;
}

/* CHECKBOX */
.checkbox {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid #b6c8e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f6db3;
    font-weight: bold;
    flex-shrink: 0;
}

/* IMAGE */
.service-img {
    width: 110px;
    height: auto;
    object-fit: contain;
}
/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(180deg, #eaf2fb, #dce9f7);
    padding: 60px 20px;
}

/* ROW */
.services-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap; /* ✅ IMPORTANT */
}

/* CARD */
.service-card {
    background: white;
    width: 100%;
    max-width: 360px; /* desktop size */
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* HEADER */
.service-header {
    background: linear-gradient(90deg, #2f6db3, #3b82c4);
    color: white;
    padding: 14px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

/* BODY */
.service-body {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* LEFT CONTENT */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* CHECK ITEM */
.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #0A2540;
}

/* CHECKBOX */
.checkbox {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid #b6c8e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f6db3;
    font-weight: bold;
    flex-shrink: 0;
}

/* IMAGE */
.service-img {
    width: 110px;
    height: auto;
    object-fit: contain;
}



/* ===== DETAILED SERVICE CARD ===== */
.detailed-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 410px;
    height: 150px;
    
}

.service-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #0A2540;
}

.checkbox {
    width: 44px;
    height: 36px;
    border-radius: 6px;
    border: 2px solid #b6c8e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f6db3;
    font-weight: bold;
    background-color: white;
} 







.divider-vertical {
    width: 100%;
    height: 1px;
    background-color: #d6e3f3;
}

/* Image sizing */
.service-body img {
    height: 130px;
    object-fit: contain;
}

/* ===== KEY FEATURES ===== */
.key-features {
    background: linear-gradient(180deg, #eaf2fb, #dce9f7);
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #0A2540;
    margin-bottom: 35px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #0A2540;
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px;
}

/* ===== CARD ===== */
.key-feature-card {
    max-width: 1200px;
    margin: auto;
    background: #e7f1fb;
    border-radius: 14px;
    display: flex;
    align-items: stretch;
    padding: 20px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* ===== EACH ITEM ===== */
.key-feature-item {
    flex: 1;
    padding: 10px 20px;
    text-align: left;
}

.feature-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background-color: #0A2540;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.key-feature-item h3 {
    font-size: 15px;
    color: #0A2540;
    font-weight: 700;
}

.feature-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b6b8f;
    padding-left: 44px;
}

.checkbox2  {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-color: white;
    color: #2f6db3;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== VERTICAL DIVIDER ===== */
.vertical-line {
    width: 1px;
    background-color: #c6dbf2;
}

/* ===== KEY FEATURES (PIXEL FIX) ===== */

.key-features {
    background: linear-gradient(180deg, #eaf2fb, #dce9f7);
    padding: 60px 20px;
    text-align: center;
}

.key-features-card {
    max-width: 1200px;
    margin: auto;
    background: #99bade;
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

/* EACH COLUMN */
.kf-item {
    padding: 18px 20px;
    border-right: 1px solid #c6dbf2;
}

/* REMOVE RIGHT BORDER FROM LAST */
.kf-item:last-child {
    border-right: none;
}

/* TOP ROW */
.kf-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #c6dbf2;
}

.kf-icon {
    width: 36px;
    height: 36px;
    background-color: #2f6db3;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.kf-top h3 {
    font-size: 14px;
    font-weight: 700;
    color: #0A2540;
}

/* BOTTOM ROW */
.kf-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    font-size: 13px;
    color: #4b6b8f;
}

.checkbox2 {
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 4px;
    color: #2f6db3;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ===== WHY CHOOSE NAAKAA ===== */
.why-choose {
    background: linear-gradient(180deg, #eaf2fb, #dce9f7);
    padding: 60px 40px;
    text-align: center;
}

.why-choose h2 {
    font-size: 28px;
    color: #2f6db3;
    font-weight: bold;
    margin-bottom: 6px;
}

.why-subtitle {
    font-size: 14px;
    color: #4b6b8f;
    margin-bottom: 35px;
}

/* CARDS WRAPPER */
.why-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* SINGLE CARD */
.why-card {
    width: 500px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    text-align: left;
    
}

/* IMAGE */
.why-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    /* margin-right: 10px; */
}

/* TITLE BAR */
.why-card-title {
    background: linear-gradient(90deg, #2f6db3, #3b82c4);
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 16px;
}

/* FOOTER */
.why-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: #0A2540;
    background: #f4f8fd;
}

/* ===== COMMUNICATION SECTION ===== */
.communication-section {
  background: linear-gradient(180deg, #eaf2fb, #dce9f7);
  padding: 80px 0 80px;
}

.communication-content {
  max-width: 1500px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT SIDE */
.comm-left {
  max-width: 520px;
}

.comm-left h2 {
  font-size: 45px;
  color: #2f6db3;
  margin-bottom: 15px;
  font-weight: 700;
  padding-left: 25px;
}

.comm-left p {
  font-size: 30px;
  color: #4b6b8f;
  margin-bottom: 30px;
  padding-left: 25px;
}

/* RIGHT IMAGE */
.comm-right {
  max-width: 620px;
  width: 100%;
  height: 420px; /* fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.comm-right img {
  max-height: 100%;
  width: 130%;
  object-fit: cover;
  margin-right: 60%;
  padding-left: 40%;
}


/* ===== BRAND LOGO SECTION ===== */
.brand-section {
    background: linear-gradient(90deg, #2f6db3, #3b82c4);
    height: 150px;
    position: relative;
}

/* LOGO CONTAINER */
.brand-logo {
    position: absolute;
    left: 60px;
    /* top: -70; */
    top: -130px; /* THIS creates half white / half blue effect */
    height: 200px;
}

/* LOGO IMAGE */
.brand-logo img {
    width: 200px;   /* adjust if needed */
    height: auto;
}

.services-row{
    display: flex;
    gap: 20px;              /* space between cards */
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: nowrap; 
}

/* ================================
   TABLET & SMALL LAPTOP (≤1024px)
================================ */
@media (max-width: 1024px) {

  /* HERO */
  .hero {
    padding: 60px 40px;
  }

  .image {
    width: 440px;
    height: auto;
  }
  .hero-left p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
}

  .img-div {
    right: 0;
    margin-right: 0;
  }

  /* FEATURE BAR */
  .feature-bar {
    gap: 20px;
  }

  /* STEPS */
  .steps-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .step-card {
    width: 300px;
  }

  /* SERVICES */
  .services-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .service-card {
    width: 360px;
  }

  /* WHY CHOOSE */
  .why-cards {
    display: grid;
      grid-template-columns: auto auto ;
    gap: 24px;

  }

  .why-card {
    max-width: 460px;
  }

  /* COMMUNICATION */
  .communication-content {
    padding: 0 40px;
  }

  .comm-right img {
    width: 100%;
    margin-right: 0;
    padding-left: 0;
  }
}

/* ================================
   MOBILE (≤768px)
================================ */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    padding: 16px 24px;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    padding: 50px 20px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
    z-index: 2;
  }
  .hero-left p {
    font-size: 22px;
    opacity: 0.9;
    margin-bottom: 30px;
}

  .store-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .img-div {
    position: relative;
    margin: 30px auto 0;
    bottom: auto;
    right: auto;
  }

  .image {
    width: 100%;
    max-width: 380px;
    height: auto;
  }

  /* FEATURE BAR */
  .feature-bar {
    flex-direction: column;
    gap: 16px;
  }

  .divider {
    display: none;
  }

  /* HOW IT WORKS */
  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 100%;
    max-width: 320px;
  }

  /* SERVICES */
  .services-row {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 380px;
  }

  .service-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-img {
    width: 140px;
    margin-top: 12px;
  }

  /* KEY FEATURES */
  .key-features-card {
    grid-template-columns: repeat(2, 1fr);
  }

  /* WHY CHOOSE */
  .why-cards {
    flex-direction: column;
    align-items: center;
    /* display: flex; */
    justify-content: center;
  }

  .why-card {
    width: 100%;
    max-width: 380px;
  }

  /* COMMUNICATION */
  .communication-content {
    flex-direction: column;
    text-align: center;
  }

  .comm-right {
    margin-top: 30px;
  }

  .comm-right img {
    width: 100%;
  }

  /* BRAND LOGO */
  .brand-logo {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ================================
   SMALL PHONES (≤480px)
================================ */
@media (max-width: 480px) {

  .hero-left h1 {
    font-size: 30px;
  }

  .hero-left p {
    font-size: 17px;
  }

  .image {
    max-width: 320px;
  }

  .service-card,
  .why-card {
    max-width: 320px;
  }

  .comm-left h2 {
    font-size: 28px;
  }

  .comm-left p {
    font-size: 18px;
  }
  .hero-left p {
    font-size: 10px;
    opacity: 0.9;
    margin-bottom: 30px;    
}

}




@media (max-width: 1999px) {
 .right-links {
  font-size: 25px;
  padding-top: 50px;
  display: flex;
  padding-left: 26%;
  /* gap:50px; */
  justify-content: space-around;
}
.num{
    color: #d6e3f3;
    text-decoration: none;
    /* font-family: times; */
}
.mail{
    color: #d6e3f3;
    text-decoration: none;
    /* font-family: times; */
}
}
