* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;

}

body {
  color: white;
  background: #f6fbfe;
  padding: 0;
  box-sizing: border-box;

}

div.container {

  margin: 0 auto;
  overflow: hidden;
  /* scrollbar hide kar ditta */
}

.circle-bottom-right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
 
}

/* bottom-right glow */
.circle-bottom-right::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0F3B74;
  box-shadow: 150px 150px 250px 120px #0F3B74;
  opacity: 0.9;
}



.circle {
  position: absolute;
  top: -200px !important;
  left: -90px !important;
  width: 4px;

  height: 364px;
  border-radius: 50%;
  background: #0F3B74;

  box-shadow: 0 0 800px 250px #0F3B74;

  opacity: 0.9;
}

.circle-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 800px 250px #0F3B74;
  opacity: 0.9;
  pointer-events: none;
}

.circle-bottom-right-headers {
  position: absolute;
  bottom: -100px;
  /* adjust as per need */
  right: -100px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0F3B74;
  box-shadow: 0 0 800px 250px #0F3B74;
  opacity: 0.9;
  z-index: 0;
  /* back side rakhna */
}

.main-content,
.header {
  position: relative;
  z-index: 2;
  /* main content/header upar rakhna */
}





/* Main Content */
.main-content {
  text-align: center;
  /* padding: 70px 0 60px; */
}

.main-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  position: relative;
}

.highlight-circle {
  position: absolute;
  right: -20px;
  top: -10px;
  width: 200px;
  height: 80px;
  border: 3px solid #fbbf24;
  border-radius: 50px;
  transform: rotate(15deg);
}

/* ── highlight-text: inline so it flows with title text ── */
.highlight-text {
  display: inline;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
    margin-bottom: 18px;
    padding: 0 16px;
  }

  /* Make highlight-text stay inline on mobile */
  .highlight-text {
    display: inline;
    word-break: break-word;
  }

  /* Hide the absolute-positioned oval that overflows on mobile */
  .highlight-circle {
    display: none;
  }
}

p.subtitle {
  max-width: 1100px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  /* height: 58px; */
}

.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px  !important;
}

.btn-primary {
  background: white;
  color: rgba(5, 122, 203, 1);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
  color: rgba(5, 122, 203, 1);
}

.info-card .divider {
  border: 0;
  height: 2px;
  /* line di motai */
  background-color: #000;
  /* line da color */
  width: 1px;
  /* line di lambai, tusi adjust kar sakde ho */
  /* upar te neeche gap */
  float: right;
  /* line right side align */
}

.btn-secondary {
  background: #057acb !important;
  color: white;
  border: 1px solid white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-secondary:hover {
  background: white;
  color: rgba(223, 224, 229, 1);
  transform: translateY(-2px);
}




/* Stats Section */
.stats-container {
  background: linear-gradient(90deg, rgba(15, 97, 206, 1), rgba(11, 81, 148, 1));
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 30px 50px;
  margin: 30px auto;
  max-width: 1000px;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg,
      /* direction: left → right */
      rgba(15, 97, 206, 1) 0%,
      /* start color */
      rgba(11, 81, 148, 1) 90%
      /* end color */
    );
}

.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}


.main-content>* {
  animation: fadeInUp 0.8s ease forwards;
}

.main-title {
  animation-delay: 0.2s;
}

.subtitle {
  animation-delay: 0.4s;
}

.action-buttons {
  animation-delay: 0.6s;
}

.stats-container {
  animation-delay: 0.8s;
}

.product {
  background-color: black;
  padding: 40px 20px;
  text-align: center;
  color: white;
  /* heading text white */
}

.product-heading {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #808080;
}

.product-imgs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.product-imgs img {
  width: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  /* Smooth transition for scale and filter */

  /* Initial state: Black and white */
  filter: grayscale(100%);
}

.product-imgs img:hover {
  transform: scale(1.1);
  /* Slightly enlarge on hover */

  /* On hover: Full color */
  filter: grayscale(0%);
}

.main-section {
  width: 100%;
  margin: auto;
  max-width: 1200px;
  margin-top: 55px;
  padding: 0% 2%;
}

.main-section-header {
  color: black;
  text-align: center;
  margin-bottom: 30px;
}

.main-section-header h1 {
  color: #000000;
  text-align: center;
  font-weight: 500;
  font-size: 36px;
}

.main-section-header p {
  max-width: 1300px;
  margin: auto;
  color: #000000;
  margin-bottom: 23px;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 400;
}

.main-section-header button {
  border: none;
  border-radius: 48px;
  background: #057acb;
  color: #DFE0E5;
  padding: 14px 20px 14px 20px !important;
  cursor: pointer;
  border: 1px solid #FFFFFF33;
}

.main-section-images {
  display: grid;
  grid-template-columns: 60% 40%;
  /* first column big, second small */
  gap: 20px;
  width: 100%;
  margin: 30px auto 0;
}

.main-section-images img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
}

.section-wrapper {
  margin-top: 55px;
  font-family: "DM Sans", sans-serif;
  width: 100%;
  margin: auto;
  max-width: 1200px;
  padding-top: 30px;
}

.section-header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
}

.section-header h1 {
  color: #0b1034;
  text-align: center;
  font-weight: 500;
  font-size: 35px;
}

.section-header p {
  max-width: 1000px;
  margin: auto;
  color: #5c5f77;
  margin-bottom: 10px;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 400;
}

.header-btn {
  border: none;
  border-radius: 50px;
  background: #057acb;
  color: white;
  padding: 15px;
  cursor: pointer;
  font-weight: 800;
}

/* Cards Container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  margin: 20px auto 0;
  position: relative;
  margin-top: 40px;
  padding: 0% 2%;
}

/* vertical line center */
.lines {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(1, 63, 136, 1);
  height: 490px;
  top: 12px;
}

hr {
  width: 2px !important;
  height: 500px;
  color: #057acb;
}

.hrrr {
  width: 1px;
  height: 100%;
  background-color: #013F88;
  border: 1px solid #013F88;
  position: absolute;
  right: 50%;
}

@media screen and (max-width: 768px) {
  .hrrr {
    display: none;
  }
  .main-section-header{
     padding-top: 34px;
  }
  /* .main-content {
  text-align: center;
  padding: 10px 0 60px;
} */
p.subtitle {
  max-width: 1100px;
  margin: 0 auto 4px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  /* height: 58px; */
}

}

/* Individual Card */
.info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  /* subtle hover effect */
}

.info-card img {
  width: 100%;
  height: 400px;
  object-fit: fill;
  border-radius: 15px;
  margin-bottom: 15px;
}

.info-card h2 {
  margin: 10px 0;
  font-size: 1.6rem;
  color: black;
  font-weight: 500;
}

.info-card p {
  color: gray;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.info-card a {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
}

.card-btn {
  border: none;
  border-radius: 48px;
  background: #057acb;
  color: #DFE0E5;
  padding: 14px 20px 14px 20px !important;
  cursor: pointer;
  border: 1px solid #FFFFFF33;
  width: 259px;
}

/* responese Sections*/





.header {
  padding: 20px 0;
  position: relative;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mobile-logooo {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-logooo {
    display: flex;
    align-items: center;
    padding-left: 16px;
  }

  .mobile-logooo img {
    width: 88px !important;
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }

  .nav-wrapper {
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
  }

  .menu-toggle {
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* .logo {
  position: absolute;
  left: 20px;
  font-size: 24px;
  font-weight: bold;
  color: white;
} */

.nav-container {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  backdrop-filter: blur(10px);
  margin-top: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 38px;
}

.nav-menu a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

@media screen and (min-width: 769px) {
  .nav-menu > li:not(.desktop-logo):not(.nav-dropdown) > a:not(.get-started-btn) {
    z-index: 0;
  }

  .nav-menu > li:not(.desktop-logo):not(.nav-dropdown) > a:not(.get-started-btn):not(.active)::before,
  .nav-dropdown-toggle:not(.active)::before {
    content: "";
    position: absolute;
    inset: -9px -16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    opacity: 0;
    transition: opacity 0.22s ease, background 0.22s ease;
    z-index: -1;
  }

  .nav-menu > li:not(.desktop-logo):not(.nav-dropdown) > a:not(.get-started-btn):not(.active):hover::before,
  .nav-menu > li:not(.desktop-logo):not(.nav-dropdown) > a:not(.get-started-btn):not(.active):focus-visible::before,
  .nav-dropdown-toggle:not(.active):hover::before,
  .nav-dropdown-toggle:not(.active):focus-visible::before {
    opacity: 1;
  }
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 34px;
}

.nav-dropdown-toggle {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus {
  color: #ffffff;
  outline: none;
}

.nav-dropdown-toggle.active {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  padding: 9px 16px;
}

.nav-dropdown-caret {
  font-size: 11px;
  line-height: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 188px;
  display: grid;
  gap: 4px;
  list-style: none;
  padding: 8px;
  margin: 0;
  background: #057acb;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 37, 84, 0.24);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 3000;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  color: #ffffff;
  padding: 9px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-menu a.active {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  padding: 9px 16px;
}

.get-started-btn {
  background: #057acb;
  color: #DFE0E5;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.get-started-btn:hover {
  background: #1875F0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.get-started-btn.active:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: none;
  box-shadow: none;
}

.contact-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-nav-emblem-wrap {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
  margin-left: 2px;
  overflow: hidden;
}

.contact-nav-emblem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== Responsive Styles ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  position: absolute;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.2s ease;
  z-index: 100;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Mobile sidebar backdrop overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 28, 64, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Close Button */
.close-btn {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* ───────────── MOBILE BREAKPOINT ───────────── */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 0px;
  }

  .library-column, .library-regional {
    min-width: 0;
    padding: 10px !important;
  }

  /* ── Hamburger button ── */
  .menu-toggle {
    display: flex;
  }

  /* ── The slide-in sidebar panel ── */
  .nav-container {
    position: fixed;
    top: -12px;
    right: 0;
    width: min(82vw, 310px);
    height: 100dvh;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
    padding: 0;
    border-radius: 0;
    z-index: 2000;

    /* Deep blue premium gradient */
    background: linear-gradient(
      158deg,
      #00306e 0%,
      #0561c4 42%,
      #0777e8 72%,
      #0e90ff 100%
    );
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: -10px 0 50px rgba(2, 28, 72, 0.65);

    /* Slide-in from right — hidden until .active */
    transform: translateX(110%);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.28s ease;
    display: flex;
  }

  /* Glow orb — top-right inside sidebar */
  .nav-container::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    flex-shrink: 0;
  }

  /* Glow orb — bottom-left inside sidebar */
  .nav-container::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    flex-shrink: 0;
  }

  .nav-container.active {
    transform: translateX(0);
    opacity: 1;
  }

  /* ── Close Button ── */
  .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.22s ease, transform 0.25s ease;
  }

  .close-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: rotate(90deg);
  }

  /* ── Logo area inside sidebar ── */
  .desktop-logo {
    display: flex !important;
    align-items: center;
    padding: 72px 22px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    margin-bottom: 6px;
    width: 100%;
    list-style: none;
  }

  .desktop-logo img {
    width: 88px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }

  /* ── Nav menu list ── */
  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 10px 12px 28px;
    list-style: none;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: none;
    padding: 0;
    margin: 3px 0;
    list-style: none;
  }

  /* ── Nav links ── */
  .nav-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 13px 16px;
    border-radius: 13px;
    color: rgba(255, 255, 255, 0.87);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    position: relative;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
  }

  /* Left accent bar on hover/active */
  .nav-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 55%;
    border-radius: 0 4px 4px 0;
    background: #ffffff;
    transition: transform 0.22s ease;
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    transform: translateX(4px);
  }

  .nav-menu a:hover::before,
  .nav-menu a.active::before {
    transform: translateY(-50%) scaleY(1);
  }

  .nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  }

  /* ── Dropdown toggle button ── */
  .nav-dropdown {
    padding-bottom: 0 !important;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px;
    border-radius: 13px;
    color: rgba(255, 255, 255, 0.87);
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.22s ease, transform 0.22s ease;
  }

  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus {
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    transform: translateX(4px);
    outline: none;
  }

  .nav-dropdown-toggle.active {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 13px;
  }

  .nav-dropdown-caret {
    font-size: 12px;
    transition: transform 0.25s ease;
  }

  .nav-dropdown.open .nav-dropdown-caret {
    transform: rotate(180deg);
  }

  /* ── Sub-menu ── */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    display: none;
    min-width: 0;
    width: calc(100% - 12px);
    margin: 4px 0 4px auto;
    padding: 6px;
    background: rgba(0, 24, 70, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    list-style: none;
    gap: 2px;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
    transform: none;
    animation: sidebarFadeDown 0.25s ease;
  }

  @keyframes sidebarFadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-dropdown-menu li {
    border-bottom: 0;
    padding: 0;
    margin: 2px 0;
    list-style: none;
  }

  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 10px;
    display: block;
    width: 100%;
    transition: background 0.18s ease, color 0.18s ease;
    transform: none !important;
  }

  .nav-dropdown-menu a::before {
    display: none;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a.active {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }

  /* ── Contact nav item ── */
  .contact-nav-item {
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 6px 4px !important;
  }

  .nav-menu a.get-started-btn {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #ffffff !important;
    text-align: center;
    border-radius: 13px;
    font-weight: 600;
    justify-content: center;
  }

  .nav-menu a.get-started-btn:hover {
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  }

  .contact-nav-emblem-wrap {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-nav-emblem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .logo-nav {
    display: none;
  }

  .get-started-btn {
    margin-bottom: 0 !important;
  }
}

.hr {
  border-right: 1px solid #013F88;
}

@media (max-width: 768px) {
  .hr {
    border-right: none;
  }

  .grant-main-cont {
    height: 600px;
  }

  /* 
  .info-card {
    padding: 20px;
  } */

  .info-card img {
    width: 100%;
  }
}

.logo svg {
  width: 120px;
  height: auto;
  display: block;
  background: transparent;
  margin-top: -25px;
  margin-left: 50px;
  margin-bottom: 90px !important;
}

/* Mobile view */
@media (max-width: 768px) {
  .logo svg {
    width: 90px;
    /* thoda chhota kar dita */
    margin-top: -30px;
    margin-left: 20px;
    /* center ya left adjust */
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  .logo svg {
    width: 100px;
    margin-top: -30px;
    margin-bottom: 15px !important;
  }
}


.logo {
  position: absolute;
  margin-left: -50px !important;
}

.Gateway-News {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 90%;
  margin: auto;
  margin-bottom: 45px !important;
}

.Gateway-cards {
  flex: 1 1 300px;
  max-width: 387px;
  padding: 15px;
}

.Gateway-cards img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 2px solid #BDD7EE;
  ;
}

.Gateway-cards p {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0;
  color: #000000;
  margin: 12px 0 18px;
  width: 100%;
  height: auto;
  opacity: 1;
}

.Gateway-cards button {
  background: #057acb;
  color: #DFE0E5;
  border: none;
  padding: 14px 20px 14px 20px !important;
  border-radius: 48px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  border: 1px solid #FFFFFF33;
  height: auto;

}

.Gateway-cards button:hover {
  background: #045a94;
}

footer {
  background-color: black;
  color: #ffffff;
  padding: 40px 0 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Brand Section */
.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.brand-description {
  font-size: 12px;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 20px;
  max-width: 250px;
}

.contact-info a {
  font-size: 12px;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #cccccc;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

/* Right Side (3 sections) */
.footer-sections-right {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

/* Contact Items */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cccccc;
}

.contact-item i {
  font-size: 16px;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}
.footer-bottom p {

  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
  padding-left: 15px;
}
  .footer-sections-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-sections-right {
    grid-template-columns: 1fr;
  }
}

/* Font Awesome */

.aboutus {
  color: #222;
  background: rgba(246, 251, 254, 1);
  /* max-width: 1200px !important; */
  /* ya 1140px Bootstrap jivein */

}

/* Hero */
.hero {
  text-align: center;
  padding: 70px 20px 140px;
  background: #057acb;
  color: #fff;
  height: auto;
  min-height: 760px;
}

.aboutus .hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.hero p {
  max-width: 1200px;
  margin: auto;
  font-size: 18px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero .btn-secondary,
.hero h1 {
  position: relative;
  z-index: 2;
}

.aboutus .hero figure.a1,
.aboutus .hero figure.a12,
.aboutus .hero figure.a13 {
  display: none !important;
}

.aboutus .hero .avatars {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: min(94%, 900px);
  max-width: 900px;
  padding: 0 10px;
}

.aboutus .avatar {
  position: relative !important;
  flex: 0 0 auto;
  width: 110px !important;
  height: 110px !important;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  background: #fff;
  border: 4px solid rgba(255, 255, 255, 0.55);
}

.aboutus .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 1024px) {
  .aboutus .hero .avatars {
    gap: 14px;
    width: min(96%, 720px);
    bottom: 18px;
  }

  .aboutus .avatar {
    width: 88px !important;
    height: 88px !important;
  }
}

@media screen and (max-width: 768px) {
  .aboutus .hero {
    min-height: auto;
    height: auto;
    padding-bottom: 40px;
  }
  .news-section{
    padding: 65px 10px 80px 10px !important;
  }

  .aboutus .hero figure.a1,
  .aboutus .hero figure.a12,
  .aboutus .hero figure.a13,
  .aboutus .hero .avatars {
    display: none;
  }
}

.team-icons {
  margin-top: 20px;
}

.team-icons img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 5px;
  border: 2px solid #fff;
}

@media (min-width: 768px) {
  .vision-mission {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    padding:10px 0px 0px 10px !important
  }
}

@media screen and (max-width: 768px) {
  .hero {
    text-align: center;
    padding: 40px 29px;
    background: #057acb;
    color: #fff;
    height: 80vh;
  }

  .vision-mission {
    flex-direction: column;
    padding: 10px 10px 0px 10px !important;
  }

}

/*
    * ----------------------------------------
    * Card styles
    * ----------------------------------------
    */
.vision,
.mission {
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1;
  max-width: 100%;
  margin: 10px 2%;
}

/* Vision card specific styles */
.vision {
  background-color: #e6f0ff;
  color: #0d2c6c;
}

/* Mission card specific styles */
.mission {
  background-color: #fff0e6;
  color: #3b2817;
}

/*
    * ----------------------------------------
    * Icon styling
    * ----------------------------------------
    */
.icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.icon-container svg {
  width: 24px;
  height: 24px;
}

.icon-container img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Vision icon styling */
.vision .icon-container {
  background-color: #a4c9ff;
}

.vision .icon-container svg path {
  fill: #2c7efc;
}

/* Mission icon styling */
.mission .icon-container {
  background-color: #ffc280;
}

.mission .icon-container svg path {
  fill: #ff6600;
}

/*
    * ----------------------------------------
    * Text and heading styling
    * ----------------------------------------
    */
h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 0;
}

.hero-p {
  color: #DFE0E5;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(92, 95, 119, 1);
  font-size: 18px;
}

/* What We Do */
.what-we-do {
  text-align: center;
  padding: 40px 20px 40px 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.services {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.eligibility-list {
  color: #000;
  margin-left: 24px;
  font-size: 20px;
}

.service-card {
  background: rgba(231, 241, 253, 1);
  padding: 30px;
  border-radius: 10px;
  flex: 1 1 200px;
  color: rgba(94, 94, 94, 1);
  font-size: 15px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.service-card .service-card-icon.icon-container {
  margin-bottom: 0;
  background-color: rgba(164, 201, 255, 0.45);
  flex-shrink: 0;
}

.service-card .service-card-icon.icon-container img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-card-text {
  width: 100%;
  line-height: 1.6;
  text-align: left;
}

/* Team */
.team {
  padding: 0px 4%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .team-members {
    grid-template-columns: 1fr;
  }

}

/* .member {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
} */
.member img {
  border-radius: 10px;
  height: 353px;
  width: 100%;
  object-fit: cover;
}

.member h4 {
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-align: left;
}

.member h4 .first-letter {
  color: black;
  font-weight: 400;
}

.member h4 .second-word {
  color: #057acb;
}

/* CTA */
.cta {
  background: #057acb;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.cta button {
  margin-top: 15px;
  padding: 12px 25px;
  border: none;
  background: #ff9800;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.cta button:hover {
  background: #e68900;
}

.what-we-do p {
  max-width: 1100px;
  margin: auto;
  font-size: 1rem;
  text-align: left;
}

.team p {
  max-width: 900px;
  margin: auto;
  font-size: 1rem;
  text-align: left;
}

/* Main Content */
.main-content {
  text-align: center;
  /* padding: 80px 0 60px; */
}

.main-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  position: relative;
  color: white;
}

.highlight-circle {
  position: absolute;
  right: -20px;
  top: -10px;
  width: 200px;
  height: 80px;
  border: 3px solid #fbbf24;
  border-radius: 50px;
  transform: rotate(15deg);
}

.subtitle {
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 706px;
  /* height: 58px; */
}

.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
}

.btn-primary {
  background: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid #ffffff;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}



.container {
  margin: 0 auto;
  background: #057acb;
}

/* Vision & Mission */
.vision-mission {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.vision,
.mission {
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision {
  background: #e7f1fd;
  /* Light Blue */
  border-top: 5px solid #e7f1fd;
}

.mission {
  background: #fff3e6;
  /* Light Red */
  border-top: 5px solid #fff3e6;
}

.vision:hover,
.mission:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.vision h3,
.mission h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.vision p,
.mission p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.digital {
  padding: 60px 2%;
  text-align: center;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}

.digital h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #057acb;
}

.digital-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.digital-card {
  background: rgba(231, 241, 253, 1);
     padding: 35px 8px 2px 10px;
  border-radius: 12px;
  width: 260px;
  min-height: 200px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
}

.digital-card:hover {
  transform: translateY(-5px);
}

.digital-card h3 {
  margin-top: 15px;
  font-size: 16px;
  color: rgba(92, 95, 119, 1);
}

.digital-card p {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

/* Circle Icon */
.digital-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(139, 196, 254, 1);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.digital-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.business-listing {
  padding: 60px 2%;
  max-width: 1300px;
  margin: 0 auto;
}

.business-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.business-text {
  flex: 1;
  text-align: left;
}

.business-text h2 {
  font-size: 36px;
  color: #0B1034;
  margin-bottom: 15px;
  font-weight: 500;
}

.business-text p {
  font-size: 20px;
  color: #5C5F77;
  font-weight: 500;
  line-height: 1.6;
}

.business-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background: #057acb;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 20px;
}

.business-btn:hover {
  background: #045a99;
}

/* Right Images grid */
.business-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-box {
  overflow: hidden;
  border-radius: 8px;
}

.image-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.business-images-custom {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.business-images-custom .row {
  display: flex;
  gap: 12px;
}

.business-images-custom .col {
  overflow: hidden;
  border-radius: 8px;
}

.business-images-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.business-images-custom img:hover {
  transform: scale(1.05);
}

/* Column width control */
.col-40 {
  flex: 0 0 40%;
}

.col-60 {
  flex: 0 0 60%;
}

.col-30 {
  flex: 0 0 30%;
}

.col-70 {
  flex: 0 0 70%;
}

.image-box img:hover {
  transform: scale(1.05);
}



.faq-section {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 2%;
  gap: 50px;
}

@media screen and (max-width: 768px) {
  .faq-section {
    flex-direction: column;
    text-align: center;
  }
   .digital-card {
  background: rgba(231, 241, 253, 1);
     padding: 35px 8px 2px 10px;
  border-radius: 12px;
  width: 360px;
  min-height: 200px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
}
}

.faq-left {
  flex: 1;
}

.faq-left h2 {
  font-size: 36px !important;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 400;
}

.faq-left p {
  color: #555;
  line-height: 1.6;
}

.faq-right {
  flex: 1;
}

.accordion {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 15px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  color: #1a1a1a !important;
  font-size: 18px;
  text-align: left;
}

.accordion-header:hover {
  background: #f1f5f9;
}

.accordion-header.active {
  color: #007bff !important;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: #555;
  line-height: 1.6;
}

.accordion-content.open {
  max-height: 300px;
  padding: 15px 20px;
}

.icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-header.active .icon {
  transform: rotate(45deg);
  color: #007bff !important;
}

.news-section {
  text-align: center;
  padding: 70px 0px;
  margin-top: -60px !important;
  width: 100%;
  max-width: 1250px;
  margin: auto;
}

.news-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #2d2d2d;
  font-weight: 400;
}

.news-section p {
  color: #666;
  margin-bottom: 10px;
  text-align: left;
}

.news-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;

}

.card {
  background: #fff !important;
  border: 1px solid #d1e3f5;
  border-radius: 10px !important;
  width: 400px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-top: 17px;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.date {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.date span {
  display: block;
  font-size: 14px;
  color: #666;
}

.card h2 {
  font-size: 26px;
  margin: 10px 0;
  color: #2d2d2d;
}

.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  margin-top: 0px;
  padding: 14px 20px;
  /* Top/Bottom 14px, Left/Right 20px */
  background-color: #057ACB;
  color: #DFE0E5;
  border-radius: 48px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: 1px solid #FFFFFF33;
  width: 219px;
  border-radius: 48px;  /* Rounded corners */

}

.btn:hover {
  background: #0056b3;
}

.date-title {
  display: flex;
  align-items: center;
  /* vertically center */
  gap: 15px;
  /* space between date and title */
}

.date {
  font-weight: bold;
  color: #333;
  text-align: center;
}

.date span {
  display: block;
  font-size: 14px;
  color: #666;
}

.date h2 {
  margin: 0;
}

.card-content h2 {
  font-size: 20px;
  /* adjust size if needed */
  color: #2d2d2d;
}


.header-project {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: center;
  margin-top: 55px;
}

.tab {
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab.active {
  background: #3795D5;
  color: #E7F1FD;
}

.tab:not(.active) {
  background: rgba(231, 241, 253, 1);
  color: rgba(92, 95, 119, 1);
}

.tab:hover:not(.active) {
  background: #e8e8e8;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  padding: 40px;
}

.project-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-image {
  width: 100%;
  height: 206px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Project Images */
.project-image.digital-marketing {
  background-image: url("../images/activities (1).png");
}

.project-image.social-media {
  background-image: url("../images/activities (2).png");
}

.project-image.ecommerce {
  background-image: url("../images/activities (3).png");
}

.project-image.market-analysis {
  background-image: url("../images/activities (4).png");
}

.project-image.tech-innovation {
  background-image: url("../images/activities (5).png");
}

.project-image.business-growth {
  background-image: url("../images/activities (6).png");
}

.project-content {
  padding: 20px;
}

.project-date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.date-badge {
  color: #3795D5;
  padding: 4px 8px;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
}

.date-number {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.project-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}

.project-time {
  font-size: 12px;
  color: #888;
}

@media (max-width: 768px) {
.course-detail-body {
padding: 12px 0px 10px 0px !important;
}
.course-detail-hero {
padding: 16px 0px 0px 0px !important;
}
.service-card-body{
  padding: 10px !important;
  text-align: left;
}
.service-card{
  padding: 8px;
}
  /* .container {
        margin: 10px;
        padding: 20px;
        border-radius: 15px;
      } */
  .header-project {
    flex-direction: column;
    /* row di jagah column */
    align-items: center;
    /* items center ho jaan */
    gap: 10px;
    /* thoda gap kam */
    margin-top: 30px;
    /* mobile te thoda kam space */
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }



  .tab {
    padding: 15px 90px;
    font-size: 13px;
  }
}

/* Section: Why Join */
.why-join {
  padding: 20px 0px 40px;
  text-align: center;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}

.why-join h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #057acb;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: left;
  margin-top: 0px;
}

.why-cards-online {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 5fr));
  justify-content: center;
  gap: 20px;
  text-align: left;
  margin-top: 20px;
  width: 100%;
  max-width: 1300px;
  padding: 0px 40px;
}
@media screen and (max-width: 768px) {
  .why-cards-online {
    grid-template-columns: 1fr;
    padding: 0px 0px;
  }
}

.why-card-online {
  background: rgba(231, 241, 253, 1);
  padding: 28px 32px 28px 32px;
  gap: 20px;
  border-radius: 12px;
  /* height: 282px; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  box-shadow: 0px 0px 0px 2px rgba(230, 239, 254, 0.5);

  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}

.why-card-online:hover {
  transform: translateY(-5px);
}


.why-card {
  background: rgba(231, 241, 253, 1);
  padding: 28px 32px 28px 32px;
  gap: 20px;
  border-radius: 12px;
  width: 285px;
  /* height: 282px; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  box-shadow: 0px 0px 0px 2px rgba(230, 239, 254, 0.5);

  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}



.why-card:hover {
  transform: translateY(-5px);
}

.why-card h3,
.why-card-online h3 {
  margin-top: 15px;
  font-size: 18px !important;
  background: linear-gradient(to right, rgba(2, 41, 101, 1), rgba(12, 17, 24, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.why-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.why-icon {
  width: 48px;
  height: 48px;
  /* center horizontally */
  border-radius: 50%;
  background-color: rgba(139, 196, 254, 1);
  /* circle background color */
  display: flex;
  justify-content: center;
  align-items: center;

}

.why-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Section: Training Programmes */
/* Section: Training Programmes */
.programmes {
  padding: 60px 2%;
  background: #f9f9f9;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.programmes h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0a2f6f;
  text-align: center;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 10px;
}

/* Individual Card */
.program-card {
  background: rgba(5, 122, 203, 1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.program-card:hover {
  transform: translateY(-5px);
}

/* Card Top Content */
.program-card-content {
  padding: 20px;
}

.program-card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.program-card-content p {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 15px;
}

/* Card Image */
.program-card img {
  width: 100%;
  height: 438x !important;
  object-fit: cover;
  border-radius: 20px !important;
}

/* Footer with Button */
.program-card-footer {
  padding: 20px;
}

.program-card-footer button {
  width: 100%;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 48px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  color: rgba(223, 224, 229, 1);
  ;
}

.program-card-footer button:hover {
  /* background: #b32c2f; */
  color: #fff;
}

/* Tablet View */
@media (max-width: 1024px) {
  .programmes {
    padding: 50px 40px 30px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .programmes {
    padding: 9px;
    /* kam horizontal padding */
  }

  .programmes h2 {
    font-size: 24px;
    /* heading chhoti */
    margin-bottom: 20px;
  }
}


/* Tablet View (768px – 1024px) */
@media (max-width: 1024px) {

  /* Why Join */
  .why-cards {
    justify-content: center;
    gap: 16px;
  }

  .why-card {
    width: 45%;
    height: auto;
    padding: 20px;
  }

  /* Training Programmes */
  .program-cards {
    grid-template-columns: 1fr 1fr;
    /* 2 columns */
    gap: 20px;
  }

  .program-card img {
    height: 280px !important;
  }
}

/* Mobile View (<768px) */
@media (max-width: 768px) {
  .why-join {
    padding: 25px;
  }

  /* Why Join */
  .why-cards {
    flex-direction: column;
    align-items: center;
  }

  .why-card {
    width: 100%;
    max-width: 350px;
    height: auto;
    padding: 20px;
  }

  .why-card h3 {
    font-size: 16px;
  }

  .why-card p {
    font-size: 13px;
  }

  /* Training Programmes */
  .program-cards {
    grid-template-columns: 1fr;
    padding: 0;
    /* single column */
  }

  .program-card img {
    height: 220px !important;
  }
}



/* Section: How it Works */
.how-it-works {
  padding: 60px 50px 40px;
  text-align: center;
  background: #f0f4f8;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #057acb;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.step {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.step h3 {
  margin-top: 15px;
  font-size: 16px;
  color: #057acb;
}

.step p {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
}

/* Responsive */
@media(max-width:768px) {

  .why-cards,
  .steps {
    flex-direction: column;
    align-items: center;
  }
}

/* Section Wrapper */
.gatewayNews {
  width: 90%;
  margin: auto;
  margin-bottom: 45px !important;
  margin-top: 40px !important;
  max-width: 1300px;
}

/* Header top row */
.gatewayNews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: black;
  margin-top: 80px !important;
  padding: 30px;
  flex-wrap: wrap;
}

/* Footer bottom row */
.gatewayNews-footer {
  text-align: center;
  margin-top: 20px;
}

/* Button Style */
.gatewayMoreBtn {
  background: #057acb;
  color: #dfe0e5;
  border: none;
  padding: 12px 24px;
  border-radius: 48px;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid #ffffff33;
  width: 387px;
}


.gatewayMoreBtn-header {
  background: #057acb;
  color: #dfe0e5;
  border: none;
  padding: 12px 24px;
  border-radius: 48px;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid #ffffff33;
  width: 163px;
}

@media screen and (max-width: 768px) {
  .gatewayMoreBtn {
    width: 100%;
  }

  .gatewayMoreBtn-header {
    width: 100%;
  }
}

.gatewayMoreBtn:hover {
  background: #045a94;
}

/* Cards Wrapper */
.gatewayCardsWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 16px;
  /* justify-content: center; */
  max-width: 1300px;
}

/* Individual Card */
.digitalCard {
  padding: 15px;
}

.digitalCard img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 2px solid #bdd7ee;
}

.digitalCard h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin: 12px 0 18px;
}

.digitalCard p {
  font-size: 25px;
  color: #555;
  font-weight: 400;
}

.success-section {
  text-align: center;
  padding: px 0px;
  width: 100%;
  margin: auto;
  max-width: 1220px;
}

.success-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 30px;
  margin-top: 50px;
}

.success-section p {
  color: #555;
  margin-bottom: 10px;
  font-weight: 400;
}

.success-cards {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.card {
  width: 400px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img img,
.card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-img video {
  background: #0f172a;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #fff;
  color: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  pointer-events: none;
  transition: background 0.3s ease;
}

.play-btn:hover {
  background: #0056b3;
}

.card-content {
  padding: 15px;
  text-align: left;
}

.stars {
  color: #f5b50a;
  margin-bottom: 8px;
  font-size: 16px;
}

.stars .inactive {
  color: #ddd;
}

.card-content h3 {
  font-size: 18px;
  margin: 0;
  color: #1F1B1B;
  font-weight: 400;
}

.what-we-do-h2 {
  color: #000;
}



/* Responsive */
@media (max-width: 900px) {
  .business-listing {
    padding: 40px 30px;
  }

  .business-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .business-text {
    text-align: center;
  }

  .business-images,
  .business-images-custom {
    width: 100%;
  }

  .business-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .business-listing {
    padding: 30px 15px;
    /* Mobile-friendly padding */
  }

  .business-container {
    padding: 20px 0;
  }

  .business-text h2 {
    font-size: 22px;
  }

  .business-text p {
    font-size: 13px;
    text-align: left;
  }

  .business-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .business-images {
    grid-template-columns: 1fr;
    /* Single column on very small screens */
  }

  .business-images-custom .row {
    flex-direction: column;
  }

  .col-40,
  .col-60,
  .col-30,
  .col-70 {
    flex: 100%;
  }

  .image-box img,
  .business-images-custom img {
    height: 200px;
    /* Smaller height on mobile */
  }

  .gatewayMoreBtn {
    background: #057acb;
    color: #dfe0e5;
    border: none;
    padding: 12px 24px;
    border-radius: 48px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid #ffffff33;
  }
}

@media (max-width: 768px) {
  .digital {
    padding: 25px;
    /* mobile te thoda kam space */
  }

  .digital-cards {
    padding: 10px;
    width: 100%;
  }
}


/* ---------------- Floating Avatars ---------------- */
.avatars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.avatar {
  position: absolute;
  border-radius: 50%;

}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .avatar {
    display: none;
  }

  .hero {
    height: auto;
  }
}

.heading1 {
  left: 5vw;
  top: 100px;
  width: 50px;
  height: 90px;
  position: absolute;
}

.heading10 {
  right: 50vw;
  top: 42vh;
  width: 80px;
  height: 90px;
  position: absolute;
}

.heading10-different {
  right: 47vw;
  top: 70vh;
  width: 70px;
  height: 70px;
  position: absolute;
}

.heading10-different-go {
  right: 47vw;
  top: 60vh;
  width: 80px;
  height: 90px;
  position: absolute;
}

/* Mobile View (max-width 768px) */
@media (max-width: 768px) {
  .heading1 {
display: none;
  }

  .heading10 {
    right: 20vw;
    top: 20vh;
    width: 60px;
    height: 70px;
  }

  .heading10-different {
    right: 18vw;
    top: 30vh;
    width: 60px;
    height: 70px;
  }

  .heading10-different-go {
    right: 18vw;
    top: 40vh;
    width: 60px;
    height: 70px;
  }
}

@media (max-width: 2165px) {
  .card-realease-newss-container {
    padding: 3px !important;
  }
}

/* Mobile View */
@media (max-width: 768px) {

  .social-icons {
    margin-bottom: -13px;
  }
   .card-realease-news {
    width: 95%;
    height: 460px;
  }

  .card-realease-news img {
    height: auto;
  }

  .card-realease-news-content {
    padding: 19px;
  }

  .read-more {
    margin-left: 0;
  }
}

.card-realease-newss-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px !important;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 80px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .card-realease-newss-container {
    padding: 12px !important;
    margin-bottom: 80px;
  }
}

.card-realease-news-desc {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
  line-height: 1.5;
  overflow: hidden;
  text-align: left;
}



.card-realease-news {
  background: #fff;
  border: 1px solid #dbe9f8;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
  /* width: 356px; */
  /* height: 572px; */
}

.card-realease-news:hover {
  transform: translateY(-5px);
}

.card-realease-news img {
  width: 100%;
  height: 320px;
  object-fit: fill;
}

.card-realease-news-content {
  padding: 19px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.card-realease-news-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.card-realease-news-date {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 7px;
  align-items: center;
  text-align: left;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
}

.card-realease-news-date i {
  grid-row: 1 / span 2;
  color: #0073e6;
  font-size: 16px;
}

.card-realease-news-date .day {
  display: block;
  font-size: 18px;
}

.card-realease-news-date .month {
  font-size: 12px;
  color: #666;
}

.card-realease-news-content h3 {
  font-size: 15px;
  color: #111;
  margin: 0;
  flex: 1;
  text-align: left;
}

.read-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  font-size: 13px;
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
}

.read-more span {
  font-size: 14px;
  margin-left: 5px;
}

.mobile-logo {
  display: none;
}

/* Desktop logo - default show */
.desktop-logo {
  display: block;
}

/* Mobile logo - default hide */
.mobile-logo {
  display: none;
}

/* Mobile view */
@media (max-width: 768px) {
  .desktop-logo {
    display: none;
    /* hide desktop logo */
  }

  .mobile-logo {
    display: block;
    /* show mobile logo */
    margin-left: -304px;
    margin-top: 4px;
  }
}

.highlight-text {
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid yellow;
  border-radius: 50%;
  transform: translate(-50%, -50%) scaleX(1.3) scaleY(1.6);
  pointer-events: none;
}

@media (max-width: 768px) {
  .highlight-text::after {
    transform: translate(-50%, -50%) scaleX(1.1) scaleY(1.3);
    border-width: 1.5px;
  }
  .success-cards {
 
    padding: 13px;
}
.highlight-text{
    margin: 15px 0px 15px 0px   ;
  }
.highlight-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid yellow;
  border-radius: 50%;
  transform: translate(-50%, -50%) scaleX(1.3) scaleY(1.6);
  pointer-events: none;
}
}

@media (max-width: 480px) {
  .highlight-text::after {
    transform: translate(-50%, -50%) scaleX(1) scaleY(1.2);
    border-width: 1.2px;
  }
}

/* Main Content */
.main-content-all {
  text-align: center;
  padding: 80px 0 20px;
  position: relative;
  /* shadow absolute lai zaroori */
  overflow: hidden;

}

/* top-left blue glow */
.main-content-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow: 0 0 600px 200px #0F3B74;
  opacity: 0.7;
}

/* bottom-right blue glow */
.main-content-all::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow: 0 0 600px 200px #0F3B74;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .business-container {
    flex-direction: column;
    text-align: center;
  }

  .business-images {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile: 1 card per row */
@media (max-width: 480px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}

/* Optional: small tablets */
@media (max-width: 768px) and (min-width: 481px) {
  .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .main-section {
  width: 100%;
  margin: auto;
  max-width: 1300px;
  padding: 0% 2%;
}
}

@media (max-width: 768px) {
  .main-section-images {
    grid-template-columns: 1fr;
    /* 1 column full width */
  }
   .main-section {
  width: 100%;
  margin: auto;
  max-width: 1300px;
  padding: 0% 2%;
}
  .main-section-images img {
    height: 200px;
    /* thoda chhota mobile layi */
  }

  .main-section-header h1 {
    font-size: 35px;
    /* text size mobile layi adjust */
  }

  .main-section-header p {
    font-size: 14px;
    padding: 0 10px;
  }

  .main-section-header button {
    padding: 12px 18px !important;
    font-size: 14px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {


  .nav-menu a {
    font-size: 12px;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .highlight-circle {
    width: 150px;
    height: 60px;
    right: -10px;
  }

  .action-buttons {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px !important;
  }

  .stats {
    flex-direction: column;
    gap: 30px;
  }

  .stat-item::after {
    display: none;
  }

  .stats-container {
    padding: 30px 20px;
    margin: 10px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}






.a13digital {
  position: absolute;
  right: 45vw;
  top: 45vh;
  width: 80px;
  height: 90px;
}
.a13story {
  position: absolute;
  left: 45vw;
  top: 42vh;
  width: 80px;
  height: 90px;
}
.a13release {
  position: absolute;
  left: 45vw;
  top: 38vh;
  width: 80px;
  height: 90px;
}
@media screen  and (max-width: 768px) {
  .a13digital {
    display: none;
  }
  .a13story {
    display: none;
  }
  .a13release {
    display: none;
  }
}


.gatewayNews-header-title {
  font-size: 36px;
  font-weight: 500;
  color: #0B1034;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .gatewayNews-header-title {
    font-size: 32px;
  }

  .gatewayNews-header {
    padding: 0px;
    margin-top: 0px;
  }
}


.bizCardBox {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 10px 2%;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.profileWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 40px;
  width: 30%;
}

.circleLogo {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #e8f0ff, #f9fbff);
  border: 2px solid #d3e3ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.circleLogo img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 50%;
}

.contactBlock {
  width: 100%;
}

.contactLine {
  display: flex;
  /* align-items: center; */
  margin-bottom: 15px;
  color: #7B7B7B;
  line-height: 1.4;
  transition: color 0.3s ease;
  gap: 10px;
  font-weight: 400;
}

.contactLine:hover {
  color: #0a58ca;
}

.contactLine i {
  font-size: 18px;
  color: #0a2f6f;
  margin-right: 15px;
  padding-top: 3px;
}

.contentWrap {
  flex-basis: 65%;
  display: flex;
  flex-direction: column;
}

.contentWrap h1 {
  font-size: 60px;
  color: black;
  margin-bottom: 25px;
  position: relative;
}

.contentWrap h1::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #0a58ca;
  bottom: -10px;
  left: 0;
}

.aboutBlock {
  padding: 25px 30px;
  line-height: 1.6;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  background-color: rgba(231, 241, 253, 1);
}

.aboutBlock h2 {
  font-size: 1.5em;
  color: black;
  margin-top: 0;
}

.aboutBlock p {
  color: #7B7B7B;
  margin: 0;
}

i {
  color: rgba(28, 85, 224, 1);
}

@media screen and (max-width: 768px) {
  .profileWrap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .contentWrap {
    flex-basis: 100%;
  }

  .contentWrap h1 {
    font-size: 30px;
  }

  .bizCardBox {
    padding: 10px 4%;
  }
}


.wrapBlogXy88 {
  display: flex;
  gap: 30px;
  max-width: 1300px;
  margin: auto;
  padding: 20px;
}

/* Left Column */
.mainBlogAreaXy88 {
  flex: 3;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.mainBlogAreaXy88 img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.metaBlogXy88 {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  text-align: left;
}

.metaBlogXy88 span {
  margin-right: 15px;
}

.titleBlogXy88 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
  text-align: left;
}

.textBlogXy88 {
  line-height: 1.6;
  color: #555;
  text-align: left;
}

/* Blog details image grid */
.imgGridXy88 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.imgGridXy88 img {
  width: 100%;
  border-radius: 8px;
  display: block;
  height: 250px;
}

/* Right Sidebar */
.sidePanelXy88 {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  height: 610px;
}

.searchWrapXy88 {
  margin-bottom: 30px;
  margin-top: 30px;
  display: flex;
}

.searchWrapXy88 input[type="text"] {
  width: calc(100% - 40px);
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 18px;
  height: 50px;
}

.searchWrapXy88 button {
  padding: 10px;
  border: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.sidePanelXy88 h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  color: black;
}

.recentBoxXy88 {
  display: flex;
  margin-bottom: 15px;
  gap: 10px;
}

.recentBoxXy88 img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  object-fit: cover;
}

.recentDetailXy88 {
  font-size: 14px;
}

.recentDetailXy88 p {
  margin: 2px 0;
  text-align: left;
  font-size: 12px;
}

.recentDetailXy88 span {
  color: #000000;
}

/* Responsive */
@media (max-width: 900px) {
  .wrapBlogXy88 {
    flex-direction: column;
  }

  .sidePanelXy88 {
    margin-top: 20px;
  }
}

.a12-goonlinprogrmae {
  position: absolute;
  right: 50vw;
  top: 55vh;
  width: 80px;
  height: 90px;
}

@media screen and (max-width: 768px) {
  .a12-goonlinprogrmae {
    display: none;
  }

}


















/* ---------------- Avatar Positions (Base >=1600px) ---------------- */
.a1 { position:absolute; left:128px; top:105px; width:50px; height:80px; }
.a2 { position:absolute; left:32px; top:324px; width:130px; height:135px; }
.a3 { position:absolute; left:80px; top:540px; width:90px; height:90px; }
.a4 { position:absolute; left:224px; top:669px; width:100px; height:100px; }
.a5 { position:absolute; left:384px; top:691px; width:150px; height:150px; }
.a6 { position:absolute; left:560px; top:918px; width:120px; height:120px; }
.a7 { position:absolute; left:720px; top:799px; width:120px; height:120px; }
.a8 { position:absolute; right:544px; top:831px; width:150px; height:150px; }
.a9 { position:absolute; right:400px; top:691px; width:130px; height:130px; }
.a10 { position:absolute; right:80px; top:648px; width:150px; height:150px; }
.a11 { position:absolute; right:80px; top:194px; width:110px; height:110px; transform:translateX(-50%); }
.a12 { position:absolute; right:640px; top:950px; width:80px; height:90px; }
.a13 { position:absolute; right:320px; top:864px; width:80px; height:90px; }



















/* === OPTIONAL: Ultra-wide >=2560px (1440p, scaled 1.3333x) === */
@media screen and (max-width:2560px) {
  .a1 { position:absolute; left:171px; top:40px; width:67px; height:107px; }
  .a2 { position:absolute; left:43px; top:120px; width:173px; height:180px; }
  .a3 { position:absolute; left:107px; top:300px; width:120px; height:120px; }
  .a4 { position:absolute; left:299px; top:390px; width:133px; height:133px; }
  .a5 { position:absolute; left:512px; top:440px; width:200px; height:200px; }
  .a6 { position:absolute; left:747px; top:500px; width:160px; height:160px; }
  .a7 { position:absolute; left:960px; top:505px; width:160px; height:160px; }
  .a8 { position:absolute; right:725px; top:599px; width:200px; height:200px; }
  .a9 { position:absolute; right:533px; top:420px; width:173px; height:173px; }
  .a10 { position:absolute; right:107px; top:304px; width:200px; height:200px; }
  .a11 { position:absolute; right:107px; top:20px; width:147px; height:147px; transform:translateX(-50%); }
  .a12 { position:absolute; right:853px; top:1267px; width:107px; height:120px; }
  .a13 { position:absolute; right:427px; top:1152px; width:107px; height:120px; }
}



/* === Big screens >=2000px (scaled 1.0417x from 1920) === */
@media screen and (max-width:2000px) {
  .a1 { position:absolute; left:133px; top:109px; width:52px; height:83px; }
  .a2 { position:absolute; left:33px; top:200px; width:135px; height:141px; }
  .a3 { position:absolute; left:83px; top:380px; width:94px; height:94px; }
  .a4 { position:absolute; left:233px; top:430px; width:104px; height:104px; }
  .a5 { position:absolute; left:400px; top:490px; width:156px; height:156px; }
  .a6 { position:absolute; left:583px; top:500px; width:125px; height:125px; }
  .a7 { position:absolute; left:750px; top:500px; width:125px; height:125px; }
  .a8 { position:absolute; right:567px; top:466px; width:156px; height:156px; }
  .a9 { position:absolute; right:417px; top:420px; width:135px; height:135px; }
  .a10 { position:absolute; right:83px; top:375px; width:156px; height:156px; }
  .a11 { position:absolute; right:83px; top:202px; width:115px; height:115px; transform:translateX(-50%); }
  .a12 { position:absolute; right:667px; top:490px; width:83px; height:94px; }
  .a13 { position:absolute; right:333px; top:400px; width:83px; height:94px; }
}



/* ---------------- <=1600px ---------------- */
@media (max-width:1600px) {
  .a1 { position:absolute; left:112px; top:90px; width:46px; height:74px; }
  .a2 { position:absolute; left:32px; top:288px; width:118px; height:122px; }
  .a3 { position:absolute; left:72px; top:442px; width:82px; height:82px; }
  .a4 { position:absolute; left:200px; top:557px; width:92px; height:92px; }
  .a5 { position:absolute; left:352px; top:576px; width:138px; height:138px; }
  .a6 { position:absolute; left:528px; top:768px; width:110px; height:110px; }
  .a7 { position:absolute; left:688px; top:522px; width:110px; height:110px; }
  .a8 { position:absolute; right:512px; top:700px; width:138px; height:138px; }
  .a9 { position:absolute; right:368px; top:576px; width:118px; height:118px; }
  .a10 { position:absolute; right:96px; top:557px; width:138px; height:138px; }
  .a11 { position:absolute; right:45px; top:230px; width:102px; height:102px; transform:none; }
  .a12 { position:absolute; right:608px; top:620px; width:74px; height:84px; }
  .a13 { position:absolute; right:288px; top:500px; width:74px; height:84px; }
}

/* ---------------- <=1400px ---------------- */
@media (max-width:1400px) {
  .a1 { position:absolute; left:84px; top:80px; width:42px; height:68px; }
  .a2 { position:absolute; left:28px; top:252px; width:110px; height:114px; }
  .a3 { position:absolute; left:56px; top:420px; width:76px; height:76px; }
  .a4 { position:absolute; left:168px; top:495px; width:86px; height:86px; }
  .a5 { position:absolute; left:294px; top:522px; width:128px; height:128px; }
  .a6 { position:absolute; left:448px; top:702px; width:102px; height:102px; }
  .a7 { position:absolute; left:588px; top:522px; width:102px; height:102px; }
  .a8 { position:absolute; right:434px; top:623px; width:128px; height:128px; }
  .a9 { position:absolute; right:308px; top:522px; width:110px; height:110px; }
  .a10 { position:absolute; right:84px; top:470px; width:128px; height:128px; }
  .a11 { position:absolute; right:84px; top:196px; width:96px; height:96px; }
  .a12 { position:absolute; right:504px; top:654px; width:70px; height:80px; }
  .a13 { position:absolute; right:238px; top:626px; width:70px; height:80px; }
}

/* ---------------- <=1200px ---------------- */
@media (max-width:1200px) {
  .a1 { position:absolute; left:60px; top:70px; width:38px; height:62px; }
  .a2 { position:absolute; left:24px; top:216px; width:100px; height:104px; }
  .a3 { position:absolute; left:42px; top:378px; width:70px; height:70px; }
  .a4 { position:absolute; left:132px; top:468px; width:78px; height:78px; }
  .a5 { position:absolute; left:240px; top:504px; width:116px; height:116px; }
  .a6 { position:absolute; left:372px; top:684px; width:96px; height:96px; }
  .a7 { position:absolute; left:492px; top:504px; width:96px; height:96px; }
  .a8 { position:absolute; right:360px; top:552px; width:116px; height:116px; }
  .a9 { position:absolute; right:252px; top:504px; width:100px; height:100px; }
  .a10 { position:absolute; right:72px; top:432px; width:116px; height:116px; }
  .a11 { position:absolute; right:72px; top:144px; width:90px; height:90px; }
  .a12 { position:absolute; right:408px; top:672px; width:64px; height:74px; }
  .a13 { position:absolute; right:192px; top:576px; width:64px; height:74px; }
}

/* ---------------- <=1000px ---------------- */
@media (max-width:1000px) {
  .a1 { position:absolute; left:40px; top:60px; width:34px; height:56px; }
  .a2 { position:absolute; left:30px; top:180px; width:90px; height:94px; }
  .a3 { position:absolute; left:50px; top:360px; width:64px; height:64px; }
  .a4 { position:absolute; left:120px; top:450px; width:72px; height:72px; }
  .a5 { position:absolute; left:220px; top:522px; width:104px; height:104px; }
  .a6 { position:absolute; left:340px; top:648px; width:90px; height:90px; }
  .a7 { position:absolute; left:460px; top:612px; width:90px; height:90px; }
  .a8 { position:absolute; right:320px; top:594px; width:104px; height:104px; }
  .a9 { position:absolute; right:230px; top:486px; width:92px; height:92px; }
  .a10 { position:absolute; right:80px; top:432px; width:104px; height:104px; }
  .a11 { position:absolute; right:70px; top:110px; width:84px; height:84px; transform:none; }
  .a12 { position:absolute; right:360px; top:666px; width:58px; height:68px; }
  .a13 { position:absolute; right:180px; top:630px; width:58px; height:68px; }
}

@media screen and (max-width: 768px) {
  .a1, .a2, .a3, .a4, .a5, .a6, .a7, .a8, .a9, .a10, .a11, .a12, .a13 {
    display: none;
  }
  
}









#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0077ff;
  z-index: 9999999;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}


/* ===== Global Back Button ===== */
.global-back-btn {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 0 14px;
}

.detail-back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #0a3d8f;
    text-decoration: none;
    font-size: 15px;
    line-height: 1;
}

.detail-back-link:hover {
    text-decoration: underline;
}
