/* ===== BASE ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8fafc;
  margin: 0;
  padding: 0;
}

/* ===== HOME SECTION ===== */
.home {
  margin-top: 50px;
  background: var(--color-light-gray);
}

/* ===== FIRST SCREEN - HERO ===== */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 40px 40px;
  min-height: 90vh;

  /* Background settings */
  background-image: url('../images/home.png');
  background-repeat: no-repeat;
  background-size: 100% auto;  /* width 120% to expand image */
  background-position: center right; /* adjust focus */
  background-attachment: scroll; /* optional for parallax effect */
}


/* ===== LEFT CONTENT ===== */
.hero-left {
  flex: 1;
  max-width: 650px;
  margin-left:45px;
}

/* ===== MAIN HEADING ===== */
.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.5px; /* thoda tight for strong impact */
}

/* ===== SUB HEADING ===== */
.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
    text-transform: uppercase;

}


/* PARAGRAPH */
.hero-p {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
    font-family: 'Poppins', sans-serif;

  font-size: 14px;
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-buttons {
    justify-content: center;
  }
  .hero-features{
    justify-content: center;
  }
}

.btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Premium hover shadow */
.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(124, 58, 237, 0.35),
    0 4px 10px rgba(124, 58, 237, 0.25);
}

.btn:active {
  transform: translateY(0);
  box-shadow:
    0 6px 15px rgba(124, 58, 237, 0.25);
}

/* PRIMARY */
.btn-primary {
background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #8b5cf6 100%);

  color: #fff;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* OUTLINE */
.btn-outline {
  background: #fff;
  color: #7c3aed;
  border: 2px solid #7c3aed;
}

.btn-outline:hover {
  background: #7c3aed;
  color: #fff;
}

/* CALL */
.btn-call {
  background: #ffffff;
  color: #7c3aed;
  border: 2px solid #7c3aed;
}

.btn-call:hover {
  background: #7c3aed;
  color: #fff;
}

/* ===== FEATURES WRAPPER ===== */
.hero-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FEATURE PILL ===== */
.icon-wrap {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ashoka image */
.ashoka-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* green verified tick */
.tick-badge {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  border: 2px solid #ffffff;
}

/* text */
.feature-text {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
    font-family: 'Poppins', sans-serif;

box-shadow:
  0 12px 30px rgba(0, 0, 0, 0.18),
  0 6px 10px rgba(0, 0, 0, 0.10);

}

/* ===== ICON COLORS ===== */
.gov-icon {
  font-size: 18px;
  color: #22c55e;
}

.icon-purple {
  font-size: 18px;
  color: #7c3aed;
}

/* ===== SECOND SCREEN - CONTENT LAYOUT ===== */
.bottom-section {
  position: relative;
  background: linear-gradient(90deg, 
    rgba(124, 58, 237, 0.08) 0%, 
    rgba(124, 58, 237, 0.04) 35%, 
    rgba(255, 255, 255, 0.95) 65%, 
    rgba(255, 255, 255, 1) 100%);
  padding: 60px 0;
}

.content-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: stretch;
}

/* ===== LEFT COLUMN (65%) ===== */
.left-column {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;  
}

/* ===== STATIC CARDS ===== */
.static-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ================= CARD ================= */
.info-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  /* -webkit-backdrop-filter: blur(14px); */

  border-radius: 20px;
  padding: 36px 26px;
  border-left: 5px solid #4f46e5;

  /* border: 1px solid rgba(124, 58, 237, 0.15); */
  position: relative;
  overflow: hidden;
  text-align: center;

  box-shadow:
    0 30px 60px rgba(124, 58, 237, 0.12),
    0 10px 20px rgba(0, 0, 0, 0.06);

  transition: 
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow0.45s ease,
    border-color 0.45s ease;
    height: 190px;
}

/* ===== Premium glowing border ===== */
.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  
  
  padding: 1px;
  /* background: linear-gradient(
    135deg,
    transparent,
    rgba(124, 58, 237, 0.6),
    transparent
  ); */
  opacity: 0;
  /* transition: opacity 0.4s ease; */
  pointer-events: none;
}

/* ===== Light sweep effect ===== */
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  /* background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 58, 237, 0.08),
    transparent
  ); */
  transition: left 0.7s ease;
}

/* ================= HOVER ================= */
.info-card:hover {
  transform: translateY(-10px) scale(1.03);
   /* border-color: rgba(124, 58, 237, 0.35);

  box-shadow:
    0 45px 90px rgba(124, 58, 237, 0.25),
    0 20px 40px rgba(0, 0, 0, 0.1);  */
}

.info-card:hover::before {
  left: 120%;
}

.info-card:hover::after {
  opacity: 1;
}

/* ================= ICON ================= */
.info-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 22px;

  background: linear-gradient(135deg, #ffffff, #f4f6ff);
  border-radius: 18px;
  padding: 12px;

  filter: drop-shadow(0 10px 16px rgba(124, 58, 237, 0.25));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.info-card:hover img {
  transform: scale(1.15) rotate(3deg);
  /* filter: drop-shadow(0 16px 28px rgba(124, 58, 237, 0.45)); */
}

/* ================= TITLE ================= */
.info-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  line-height: 1.45;

  background: linear-gradient(
    135deg,
    #4c1d95,
    #4f46e5,
    #7c3aed
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================= Responsive ================= */
@media (max-width: 991px) {
  .static-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .static-cards {
    grid-template-columns: 1fr;
  }
}


/* ===== CAROUSEL SECTION ===== */
.carousel-section {
  width: 100%;
   flex: 1;               /* ✅ */
  display: flex;  
}

.carousel-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  position: relative;
   flex: 1;               /* ✅ */
  height: 100%;          /* ✅ */
  display: flex;         /* ✅ */
  flex-direction: column;
}

/* ===== CAROUSEL VIEWPORT & TRACK ===== */
.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
   min-height: 240px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: none;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  flex: 0 0 calc(33.333% - 11px);
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
   display: block;
}

/* ===== CARD OVERLAY ===== */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  /* background: linear-gradient(
    to top,
    rgba(124, 58, 237, 0.95),
    rgba(124, 58, 237, 0.6),
    transparent
  ); */
}

.card-overlay h4 {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
background: linear-gradient(
    90deg,
    #4c1d95 0%,
    #6d28d9 40%,
    #8b5cf6 70%,
    #c084fc 100%
  );
  box-shadow: inset 0 0 20px rgba(192, 132, 252, 0.25);
border-radius: 10px;
padding: 5px;
}

/* ===== NAVIGATION BUTTONS ===== */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #7c3aed;
}

.nav-btn:hover {
  background: #7c3aed;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -22px;
}

.next-btn {
  right: -22px;
}

/* ===== RIGHT COLUMN (35%) ===== */
.right-column {
  flex: 0 0 35%;
}
/* MAIN PANEL */
.notification-panel {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  width: 400px;
  
}

/* HEADER */
.notification-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  /* Core premium gradient */
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.45),
      transparent 55%
    ),
    linear-gradient(
      135deg,
      #a855f7,
      #7c3aed
    );

  /* Inner shine only (not outer box-shadow) */
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.35),
    inset 0 -6px 12px rgba(0, 0, 0, 0.25);

  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
}


.notification-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  font-family: 'Poppins', sans-serif;
}

/* LIST SCROLL */
.notification-list {
  max-height: 450px;
  overflow: hidden; 
  padding-right: 6px;
}

/* IMAGE LIKE SCROLLBAR */
.notification-list::-webkit-scrollbar {
  width: 6px;
}
.notification-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 10px;
}
.notification-list::-webkit-scrollbar-track {
  background: transparent;
}

/* ITEM ROW */
.notification-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0px;
  border-bottom: 1px solid #e5e7eb; /* divider line */
}

.notification-item:last-child {
  border-bottom: none;
}

/* LEFT TEXT */
.notification-left p {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  color: #374151;
}

.notification-left strong {
  font-weight: 700;
  color: #111827;
}

.notification-left span {
  color: #6b7280;
  font-size: 12px;
}

/* RIGHT SIDE TAG + ARROW */
.notification-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* TAG PILL */
.notification-tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* EXACT COLORS LIKE IMAGE */
.notification-tag.update {
  background: #dcfce7;
  color: #16a34a;
}

.notification-tag.alert {
  background: #fee2e2;
  color: #dc2626;
}

.notification-tag.notice {
  background: #dbeafe;
  color: #2563eb;
}

.notification-tag.security {
  background: #fef3c7;
  color: #d97706;
}

/* ARROW */
.notification-right i {
  color: #9ca3af;
  font-size: 13px;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .left-column,
  .right-column {
    flex: none;
    width: 100%;
  }
  
  .static-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 0px 0px 40px;
    background-size: 80%;
    background-position: center bottom;
  }
  
  .hero-left {
    max-width: 100%;
  }
  
  .content-wrapper {
    padding: 0 20px;
  }
  
  .static-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-card {
    flex: 0 0 calc(50% - 8px);
    height: 200px;
  }
  
  .notification-panel {
    min-height: 300px;
  }
  
  .bottom-section {
    background: linear-gradient(180deg, 
      rgba(124, 58, 237, 0.06) 0%, 
      rgba(255, 255, 255, 0.98) 50%, 
      rgba(255, 255, 255, 1) 100%);
  }
}
@media (max-width: 768px) {
  .hero-container{
    background-image: none !important;
  }
  .headerMobile{
    position: relative;
    padding: 40px 18px;
    border-radius: 20px;

    /* ✅ image behind text but not over */
    background-image:
      linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
      url('../images/home.png');

    background-repeat: no-repeat;
    background-size: contain;      /* ✅ cover हटाओ */
    background-position: center top;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2.4rem;
  }
  
  .hero-sub {
    font-size: 1.8rem;
  }
  
  .service-card {
    flex: 0 0 100%;
  }
  
  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .prev-btn {
    left: -18px;
  }
  
  .next-btn {
    right: -18px;
  }
}