
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Urbanist";
}
html {
  scroll-behavior: smooth;
}
#about,
#roles,
#features,
#faq,
#contact {
  scroll-margin-top: 100px;
}

body{
  background:#f5fbff;
  color:#0a2540;
  font-family: "Urbanist" !important;
}

/* ---------- HEADER ---------- */
nav a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:#0b6ef3;
  left:0;
  bottom:-4px;
  transition:0.3s;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 100;
}

/* NAV */
.nav {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  position: relative;
}

/* LOGO */
.logo {
  margin-right: auto;
}

.logo img {
  height: 48px;
}

/* NAV LINKS (DESKTOP) */
.nav-links {
  display: flex;
  gap: 32px;
}

/* LINKS */
.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}

.nav-links a.active {
  color: #0061af  ;
  border-bottom: 2px solid #0061af;
}

/* CTA */
.nav-cta {
  margin-left: auto;
}

.download-btn {
  background: #2563eb;
  color: #fff;
  padding: 14px 22px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
}

/* TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* 📱 MOBILE / TABLET */
@media (max-width: 992px) {

  .nav {
    justify-content: center;
  }

  /* TOGGLE LEFT */
  .nav-toggle {
    display: flex;
    position: absolute;
    left: 24px;
  }

  /* LOGO CENTER */
  .logo {
    margin: 0 auto;
  }

  /* HIDE CTA */
  .nav-cta {
    display: none;
  }

  /* DROPDOWN MENU */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 20px;
    padding: 5px 20px;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .nav-links.show {
    max-height: 400px;
    opacity: 1;
  }

  .nav-links a.active {
    border-bottom: none;
    font-weight: 600;
  }
}

/* ---------- HERO ---------- */

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}



.bg-plus {
  animation: float 6s ease-in-out infinite;
}



.cc-hero-title {
  font-size: 56px;
  line-height: 1.2;
}

.cc-img-highlight {
  display: inline-block;
  padding: 36px 54px;
  background-image: url("Image/highlight-bg.png"); /* <-- your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  color: #ffffff;
}

.cc-highlight-word {
  color: #FFFFFF;
  font-weight: 700;
}

.cc-hero-strong {
  font-weight: 700;
}

.hero {
  background:  #E6F7FE;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
  font-family: "Urbanist" !important;
 
}

/* BACKGROUND MEDICAL ICON */
.bg-plus {
  position: absolute;
  width: 140px;
  opacity: 74%;
  z-index: 1; /* background ke upar */
  pointer-events: none;
}

.bg-plus-left {
  top: 180px;
  left: 60px;
}

.bg-plus-right {
  bottom: 120px;
  right: 80px;
  transform: rotate(15deg);
}
.cc-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 24px;
  background: #0061AF;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;

  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(6, 175, 248, 0.25);

  transition: all 0.3s ease;
}
.cc-text{
    font-size: larger;
}
.cc-portal-btn1 {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 24px;
  background: #ffffff;
  color: #0A2241;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;

  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(6, 175, 248, 0.25);

  transition: all 0.3s ease;
}

.cc-portal-btn:hover {
  background: #0061AF;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(6, 175, 248, 0.35);
}

.cc-portal-btn:active {
  transform: translateY(0);
}

.cc-portal-icon {
  width: 18px;
  height: 18px;
}

 .bt-img{
    position: relative;
    top: 12px;
}
 /* MAIN CONTAINER */
.hero-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2; /* icon ke upar */
}

/* LEFT */
.hero-left h1 {
  font-size: 56px;
  line-height: 1.6;
  color: #0b2b4c;
  margin-bottom: 20px;
}

.hero-left h1 .highlight {
  background: #1da1f2;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
}

.hero-left h1 strong {
  font-weight: 700;
}

.hero-left p {
  font-size: 18px;
  color: #4f6b85;
  max-width: 520px;
  margin-bottom: 32px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.btn-outline {
  padding: 14px 26px;
  border-radius: 30px;
  border: 2px solid #1da1f2;
  color: #1da1f2;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #1da1f2;
  color: #fff;
}

.btn-primary {
  padding: 14px 28px;
  border-radius: 30px;
  background: #0b5ed7;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(11, 94, 215, 0.3);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* TRUSTED */
.trusted {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #0b2b4c;
  font-weight: 600;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}

/* RIGHT IMAGE */
.hero-right {
  display: flex;
  justify-content: center;
}

.image-wrapper {
  
  padding: 12px;
  border-radius: 28px;
  
}

.image-wrapper img {
  width: 100%;
  max-width: 635px;
  border-radius: 20px;
  display: block;
}



/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .trusted {
    justify-content: center;
  }
}


/* RIGHT */
.hero-right{
  position:relative;
}

.hero-card{
  transition:0.5s;
}

.hero-card img{
  width:100%;
  display:block;
  transition:0.6s ease;
}

.hero-card:hover{
  transform:translateY(-10px);
  
}

.hero-card:hover img{
  transform:scale(1.06);
}

/* ---------- STATS ---------- */
.cc-stats-section {
  position: relative;
  padding: 100px 60px;
  background-image: url("Image/bg.png"); /* <-- your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  font-family: "Urbanist" !important;
}

.cc-stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 175, 248, 0.08); /* soft overlay */
}

.cc-stats-container {
  position: relative;

  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.cc-stat-item h3 {
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
}

.cc-stat-item p {
  margin-top: 8px;
  font-size: 20px;
  color: #ffffff;
}
/* ===============================
   STATS SECTION – RESPONSIVE
================================ */

/* TABLET */
@media (max-width: 992px) {
  .cc-stats-section {
    padding: 80px 24px;
  }
.hero-left h1 {
  font-size: 28px;
  line-height: 1.4;
  color: #0b2b4c;
  margin-bottom: 10px;
}
  .cc-stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 layout */
    gap: 32px;
    text-align: center;
  }

  .cc-stat-item h3 {
    font-size: 36px;
  }

  .cc-stat-item p {
    font-size: 15px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .cc-stats-section {
    padding: 64px 16px;
  }

  .cc-stats-container {
    grid-template-columns: 1fr; /* 1 column */
    gap: 28px;
  }

  .cc-stat-item h3 {
    font-size: 32px;
  }

  .cc-stat-item p {
    font-size: 14px;
    line-height: 1.4;
  }
}


/* ---------- RESPONSIVE ---------- */
/* ===============================
   HERO SECTION – RESPONSIVE
================================ */

/* TABLET */
@media (max-width: 992px) {

  .hero {
    padding: 120px 24px 80px;
  }

  .hero-container {
    flex-direction: column;
    gap: 56px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .cc-hero-title {
    font-size: 44px;
    line-height: 1.15;
  }

  .cc-hero-strong {
    font-size: 36px;
  }

  .hero-left p {
    font-size: 16px;
    max-width: 620px;
    margin: 20px auto 0;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
  }

  .trusted {
    justify-content: center;
    margin-top: 28px;
  }

  .hero-right {
    width: 100%;
  }

  .image-wrapper img {
    max-width: 520px;
    width: 100%;
    margin: auto;
  }

  /* background icons subtle */
  .bg-plus {
    opacity: 0.25;
    transform: scale(0.9);
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .hero {
    padding: 104px 16px 64px;
  }

  .hero-container {
    gap: 40px;
  }

  .cc-hero-title {
    font-size: 34px;
  }

  .cc-hero-strong {
    font-size: 28px;
  }

  .hero-left p {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .trusted {
    flex-direction: column;
    gap: 12px;
  }

  .avatars img {
    width: 32px;
    height: 32px;
  }

  .cc-text {
    font-size: 14px;
  }

  .image-wrapper img {
    max-width: 100%;
  }

  /* background icons hide on mobile */
  .bg-plus {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: row;
    gap: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 16px;
  }

  .nav-cta {
    margin-left: 0;
  }
}
/* SECTION */
.about{
  padding:90px 0;
}

.about-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE COLLAGE */

.about-card img{
  width:auto;
  height:autofill;
  object-fit:cover;
  display:block;
  transition:0.6s ease;
}


.about-card:hover img{
  transform:scale(1.08);
}



@keyframes float{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
  100%{ transform:translateY(0); }
}

/* RIGHT CONTENT */
.about-content small{
   font-size:24px;
  color:#06AFF8;
  font-weight:700;
  letter-spacing:1px;
}

.about-content h2{
  font-size:44px;
  line-height:1.2;
  margin:16px 0 20px;
}

.about-content h2 span{
  color:#06AFF8;
}

.about-content p{
  font-size:15px;
  line-height:1.7;
  color:#4b5c6b;
  max-width:480px;
}

/* READ MORE CARD */
.read-card{
  margin-top:30px;
  background:#f2f9ff;
  border-radius:18px;
  overflow:hidden;
  width:280px;
  transition:0.4s;
}

.read-card img{
  width:100%;
  display:block;
}

.read-card a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px;
  text-decoration:none;
  color:#0a2540;
  font-weight:600;
  transition:0.3s;
}

.read-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(0,0,0,0.15);
}

.read-card:hover a{
  color:#0b6ef3;
  letter-spacing:0.5px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-images{
    max-width:420px;
    margin:auto;
  }

  .about-content h2{
    font-size:34px;
  }

  .about-content p{
    margin:auto;
  }

  .read-card{
    margin:30px auto 0;
  }
}

@media(max-width:480px){
  .about-content h2{
    font-size:28px;
  }
}

/* ===== ABOUT SECTION ===== */

.rc-about-section {
  padding: 120px 80px;
  background: #ffffff;
}

.rc-about-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ===== LEFT IMAGE ===== */

.rc-image-collage {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.rc-image-collage img {
  width: 100%;
  border-radius: 40px;
  display: block;
}

/* Center badge */
.rc-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0a74c9;
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ===== RIGHT CONTENT ===== */
.rc-about-info {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.rc-about-info-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}

.rc-about-info-content {
  max-width: 420px;
}

.rc-read-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #0aa7ff;
  text-decoration: none;
}

.rc-read-link span {
  margin-left: 6px;
}

.rc-about-tag {
  color: #0aa7ff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  display: inline-block;
}

.rc-about-title {
  font-size: 46px;
  line-height: 1.2;
  color: #0b1f3b;
  margin-bottom: 24px;
}

.rc-highlight {
  color: #0aa7ff;
}

.rc-about-text {
  font-size: 17px;
  line-height: 1.7;
  color: #5b6b80;
  max-width: 520px;
}

/* Read card */
.rc-read-card {
  margin-top: 40px;
  background: #eef8ff;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 360px;
}

.rc-read-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
}

.rc-read-card a {
  font-size: 16px;
  font-weight: 600;
  color: #0b1f3b;
  text-decoration: none;
}

.rc-read-card a span {
  margin-left: 6px;
}

.rc-about-media-card {
  background: #eef8ff;
  padding: 16px;
  border-radius: 22px;
  display: inline-flex;
  flex-direction: column;
 
  gap: 12px;
}

.rc-about-media-img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.rc-about-media-link {
  font-size: 24px;
  font-weight: 600;
  color: #0b1f3b;
  text-decoration: none;
  
}

.rc-about-media-link span {
  margin-left: 6px;
}
@media (max-width: 768px) {
  .rc-about-media-img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 1024px) {
  .rc-about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rc-about-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .rc-about-section {
    padding: 80px 24px;
  }

  .rc-about-title {
    font-size: 34px;
  }

  .rc-read-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .rc-about-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .rc-about-info-img {
    width: 90px;
    height: 90px;
  }
}
/* ===== ROLE BASED PORTALS ===== */

.rbp-section {
  background: #E6F7FE;
  padding: 120px 80px;
  font-family: "Urbanist" !important;
}

.rbp-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.rbp-title {
  font-size: 44px;
  font-weight: 700;
  color: #0b1f3b;
  margin-bottom: 16px;
}

.rbp-subtitle {
  max-width: 820px;
  margin: 0 auto 80px;
  font-size: 18px;
  line-height: 1.6;
  color: #0b1f3b;
}

/* ===== CARDS ===== */

.rbp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.rbp-card {
  background: #005fa3;
  border-radius: 28px;
  padding: 40px 28px;
  text-align: left;
  color: #ffffff;
  min-height: 420px;
}

.rbp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.rbp-card h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 18px;
  font-weight: 700;
}

.rbp-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #e8f4ff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .rbp-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rbp-section {
    padding: 80px 24px;
  }

  .rbp-title {
    font-size: 34px;
  }

  .rbp-subtitle {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .rbp-cards {
    grid-template-columns: 1fr;
  }

  .rbp-card {
    min-height: auto;
  }
}

/* ---------- PLATFORM FEATURES ---------- */
.platform{
  background:#0b63b6;
  padding:80px 0 140px;
  color:#fff;
}

.platform-wrap{
  width:58%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:60px;
}

.platform h2{
  font-size:34px;
  margin-bottom:22px;
}

.platform ul{
  list-style:disc;
  padding-left:20px;
}

.platform li{
  margin-bottom:14px;
  font-size:18px;
  line-height:1.6;
  opacity:0.95;
}

.platform p{
  margin-top:26px;
  font-size:18px;
  max-width:520px;
  opacity:0.9;
}

.platform-actions{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-top:20px;
}

.platform-actions a{
  background:#fff;
  color:#0a2540;
  padding:14px 22px;
  border-radius:28px;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
  width:max-content;
  transition:0.3s;
}

.platform-actions a:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(0,0,0,0.25);
}

/* ---------- CARE PROFESSIONALS CARD ---------- */
.care-card{
  background:linear-gradient(135deg,#E1F5FE,#ffffff);
  border-radius:34px;
  padding:40px 0px 0px 50px;;
  width:50%;
  max-width:1200px;
  margin:-90px auto 90px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:40px;
  box-shadow:0 30px 70px rgba(0,0,0,0.12);
}

.care-card h3{
  font-size:32px;
  margin-bottom:16px;
}

.care-card ul{
  padding-left:18px;
  margin-bottom:20px;
}

.care-card li{
  margin-bottom:10px;
  font-size:14px;
  color:#4b5c6b;
}

.store-buttons{
  display:flex;
  gap:14px;
  margin-top:12px;
}

.store-buttons img{
  height:42px;
  transition:0.3s;
}

.store-buttons img:hover{
  transform:scale(1.08);
}

.phone img{
  width:100%;
  max-width:300px;
  display:block;
  margin:auto;
}

/* ---------- FAQ ---------- */
/* ===== FAQ SECTION ===== */

.faq-section {
  padding: 120px 24px;
  background: #ffffff;
  font-family: "Urbanist";
}

.faq-container {
  max-width: 1000px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: #0b1f3b;
  margin-bottom: 16px;
}

.faq-subtitle {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
  font-size: 18px;
  color: #5b6b7f;
  line-height: 1.6;
}

/* ===== FAQ ITEM ===== */

.faq-item {
  border: 1.5px solid #d9e2ec;
  border-radius: 24px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: #0b63b6;
  border-color: #0b63b6;
}

/* QUESTION */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #0b1f3b;
  cursor: pointer;
}

.faq-item.active .faq-question {
  color: #ffffff;
}

.faq-no {
  margin-right: 12px;
  font-weight: 700;
}

/* ICON */

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0b1f3b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: #ffffff;
  color: #0b63b6;
}

/* ANSWER */





/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 17px;
    padding: 22px;
  }

  .faq-answer {
    font-size: 15px;
    padding: 0 22px 22px;
  }
}

/* ANSWER – animated collapse */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  font-size: 17px;
  line-height: 1.7;
  color: #eaf3ff;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* enough for content */
  padding: 0 32px 28px;
}

/* ---------- RESPONSIVE ---------- */
/* ===============================
   CARE CARD – RESPONSIVE
================================ */

/* TABLET */
@media (max-width: 992px) {

  .care-card {
    flex-direction: column;
    gap: 56px;
    padding: 64px 10px 0px 0px;
    text-align: center;
  }

  .care-card > div:first-child {
    max-width: 680px;
    margin: auto;
  }

  .care-card h3 {
    font-size: 34px;
  }

  .care-card ul {
    text-align: left;
    margin: 24px auto;
    max-width: 520px;
  }

  .care-card ul li {
    font-size: 15px;
    line-height: 1.6;
  }

  .care-card p {
    font-size: 16px;
    margin-top: 24px;
  }

  .care-card {
   
    margin: -39px auto 90px !important;
        width: 81%;
   
    display: block;
  }

  .store-buttons {
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .store-buttons img {
    height: 46px;
  }

  .phone img {
    max-width: 420px;
    width: 100%;
    margin: auto;
    display: block;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .care-card {
    padding: 64px 10px 0px 0px;
    gap: 40px;
  }

  

  .care-card h3 {
    font-size: 28px;
  }

  .care-card ul {
    max-width: 100%;
  }

  .care-card ul li {
    font-size: 14px;
  }

  .care-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .store-buttons img {
    height: 44px;
  }

  .phone img {
    max-width: 100%;
  }
}


@media(max-width:500px){
  .platform h2,
  .care-card h3,
  .faq h2{
    font-size:26px;
  }

}
/* ===============================
   PLATFORM FEATURES – RESPONSIVE
================================ */

/* TABLET */
@media (max-width: 992px) {

  .platform {
    padding: 80px 24px;
  }

  .platform-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }

  .platform-wrap > div {
    max-width: 720px;
    margin: auto;
  }

  .platform h2 {
    font-size: 34px;
  }

  .platform ul {
    text-align: left;
    margin: 24px auto;
    max-width: 560px;
  }

  .platform ul li {
    font-size: 15px;
    line-height: 1.6;
  }

  .platform p {
    font-size: 16px;
    margin-top: 20px;
  }

  .platform-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
  }

  .platform-actions a {
    padding: 14px 22px;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .platform {
    padding: 64px 16px;
  }

  .platform-wrap {
    gap: 40px;
  }

  .platform h2 {
    font-size: 28px;
  }

  .platform ul {
    max-width: 100%;
  }

  .platform ul li {
    font-size: 14px;
  }

  .platform p {
    font-size: 15px;
    line-height: 1.5;
  }

  .platform-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .platform-actions a {
    width: 100%;
    text-align: center;
  }
}


/* form */

.cta-section {
  background:  #E6F7FE;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
  font-family: "Urbanist" !important;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.cta-header {
  text-align: center;
  margin-bottom: 70px;
}

.cta-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #0b1f3a;
}

.cta-header p {
  max-width: 760px;
  margin: 15px auto 0;
  font-size: 17px;
  line-height: 1.6;
  color: #07305f;
}

/* CONTENT */
.cta-content {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* IMAGE */
.cta-image-wrap {
  position: relative;
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.cta-image-arch {
  width: 360px;
  height: 460px;
  overflow: hidden;
  border-radius: 220px 220px 30px 30px;
  background: #0b1f3a;
}

.cta-image-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BADGE */
.cta-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: white;
  padding: 18px 22px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cta-badge strong {
  font-size: 26px;
  color: #13a9f6;
  display: block;
}

.cta-badge span {
  font-size: 14px;
  color: #333;
}

/* FORM CARD */
.cta-form-card {
  flex: 1;
  min-width: 320px;
  background: white;
  padding: 40px;
  border-radius: 26px;
  box-shadow: 0 0 0 15px rgba(255,255,255,0.1),
              0 40px 80px rgba(0,0,0,0.25);
}

.input-group {
  margin-bottom: 18px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: none;
  background: #f3f3f3;
  font-size: 15px;
  outline: none;
}

.input-group textarea {
  resize: none;
  height: 110px;
}

.cta-form-card button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #0fa4f7, #056edb);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}


/* IMAGE WRAP */
.cta-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

/* SUPPORT IMAGE */
.cta-support-rotate {
  position: absolute;
  bottom: 0px;        /* badge ke upar */
  right: 22px;        /* right side align */
  width: 90px;
  height: 90px;
  animation: spinSlow 8s linear infinite;
  z-index: 5;
}

/* EXPERIENCE BADGE */
.cta-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: white;
  padding: 18px 22px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  z-index: 4;
}

/* ROTATION ANIMATION */
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* MOBILE ADJUST */
@media (max-width: 768px) {
  .cta-support-rotate {
    width: 70px;
    height: 70px;
    right: 121px;
    bottom: 0px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-header h2 {
    font-size: 32px;
  }

  .cta-content {
    gap: 50px;
  }

  .cta-image-arch {
    width: 300px;
    height: 400px;
  }
}
/* footer */

.rc-footer {
  background: #0c2340;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* TOP SECTION */
.rc-footer-top {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.rc-footer-left {
  max-width: 520px;
}

.rc-footer-logo {
  max-width: 220px;
  margin-bottom: 30px;
}

.rc-footer-text {
  font-size: 16px;
  line-height: 1.8;
  color: #d6e2f0;
  margin-bottom: 35px;
}

/* SOCIAL ICONS */
.rc-socials {
  display: flex;
  gap: 18px;
}

.rc-socials a {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-socials img {
  width: 22px;
}

/* RIGHT */
.rc-footer-right h3 {
  font-size: 26px;
  margin-bottom: 25px;
}

.rc-footer-right p {
  font-size: 17px;
  margin-bottom: 15px;
  color: #d6e2f0;
}

.rc-footer-right a {
  color: #ffffff;
  text-decoration: none;
}

/* BOTTOM BAR */
.rc-footer-bottom {
  background: #2f435c;
  padding: 22px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 15px;
}

.rc-footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .rc-footer-top {
    flex-direction: column;
    text-align: center;
  }

  .rc-footer-left,
  .rc-footer-right {
    max-width: 100%;
  }

  .rc-socials {
    justify-content: center;
  }

  .rc-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
