@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* title */
.mytitle {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
  .mytitle {
    font-size: 2.6rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: #dbeafe;
  border: 1px solid #bfdbfe;
}

.badge-text {
  color: #1d4ed8;
  font-weight: 500;
}

.highlighted-text {
  position: relative;
  display: inline-block;
  color: #474AFF;
}

/* Main Container */
.main-container {
  display: flex;
  min-height: 100vh;
  margin-top: 60px;
  width: 100vw;
}

/* Left Column - Main Content (75%) */
.main-content {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0;
  overflow-y: auto;
  height: 100vh;

  /* Hide scrollbar for Chrome, Safari and Opera */
  &::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Right Column - Sidebar (25%) */
.sidebar {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 20px;
  background: #f8f9fa;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);

  /* Hide scrollbar for Chrome, Safari and Opera */
  &::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}


/* Hero Section - IMPROVED */
.hero {
  min-height: 100vh;
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.forbg {
  background:
    linear-gradient(rgba(255, 255, 255, 0.8),
      /* White overlay with 80% opacity */
      rgba(255, 255, 255, 0.8)),
    url('./images/white_bg.webp');
  /* Your background image */
  background-size: cover;
  background-position: center;
  border-radius: 0 0 24px 24px;
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 15px 0;
}

.lbef-logo,
.apu-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
}

@media(max-width:590px) {

  .lbef-logo,
  .apu-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
  }
}

.logo-divider {
  font-size: 24px;
  color: black;
  font-weight: 300;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  font-family: 'Inter';
  gap: 20px;
  color: black;
}

.hero-content p:first-child {

  font-size: 28px;
  font-weight: bold;

}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 800;

}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  margin: 20px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-content p:last-of-type {
  color: black;
  font-weight: 400;
  line-height: 1.8;
  max-width: 1300px;
  margin: 20px auto;
  font-size: 1.3rem;
}

.hero-content img[src="./images/gov.webp"] {
  width: 300px;
  height: auto;
}

.btn {
  padding: 18px 45px;
  background: #474AFF;
  border: none;
  border-radius: 50px;
  font-family: 'Inter';
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.2rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: #3538f5;
}

/* Navbar */
/* ================= MODERN NAVBAR UPGRADE ================= */
/* Add these styles after existing navbar styles */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  height: 80px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 12px 5%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo {
  transition: transform 0.3s ease;
  height: 50px;
  width: auto;
  z-index: 1002;
}

.logo:hover {
  transform: scale(1.05);
}

/* Navigation Links - Desktop */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.navbar li {
  position: relative;
}

.navbar a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar a:hover {
  color: #0540F2;
}

/* .navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0540F2, #3a6eff);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
} */

.navbar a:hover::after {
  width: 100%;
}
.dropdown a span {
  font-size: 15px;
}
.navbar a.active {
  color: #0540F2;
}

.navbar a.active::after {
  width: 100%;
}
#navOverlay{
  display:none;
}

/* Dropdown Styles - Desktop */
.dropdown-menu,
.dropdown-submenu {
  position: absolute;
  background: #fff;
  padding: 10px 0;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
  list-style: none;
}

.dropdown-submenu {
  left: 100%;
  top: 0;
  margin-left: 2px;
  transform: translateX(10px);
}

.dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-sub:hover>.dropdown-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-menu li,
.dropdown-submenu li {
  width: 100%;
}

.dropdown-menu a,
.dropdown-submenu a {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  display: block;
  width: 100%;
}

.dropdown-menu a:hover,
.dropdown-submenu a:hover {
  background-color: #f5f8ff;
  color: #0540F2;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #0540F2;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    gap: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
#navOverlay{
  display:block;
}
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    padding: 100px 0 40px 0;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }
.dropdown a span {
  display: none;
}
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a {
    font-size: 16px;
    padding: 16px 25px;
    width: 100%;
  }

  /* Mobile dropdown styles */
  .dropdown-menu,
  .dropdown-submenu {
    position: static;
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0;
    background: #f9f9f9;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.open>.dropdown-menu,
  .dropdown-sub.open>.dropdown-submenu {
    display: flex;
    max-height: 1000px;
  }

  .dropdown-menu a,
  .dropdown-submenu a {
    padding-left: 40px;
    font-size: 15px;
  }

  .dropdown-submenu a {
    padding-left: 60px;
  }

  /* Mobile dropdown indicators */
  .dropdown>a::after,
  .dropdown-sub>a::after {
    content: '▾';
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .dropdown.open>a::after,
  .dropdown-sub.open>a::after {
    transform: rotate(180deg);
  }

  /* Mobile menu button animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Animation for navbar links */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar li {
  animation: fadeInDown 0.5s ease forwards;
  opacity: 0;
}

.navbar li:nth-child(1) {
  animation-delay: 0.1s;
}

.navbar li:nth-child(2) {
  animation-delay: 0.2s;
}

.navbar li:nth-child(3) {
  animation-delay: 0.3s;
}

.navbar li:nth-child(4) {
  animation-delay: 0.4s;
}

.navbar li:last-child {
  animation-delay: 0.5s;
}

/* Responsive Hero */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
  }

  .hero-content p:first-child {
    font-size: 22px;
  }

  .hero-content p:last-of-type {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 90vh;
    padding: 30px 15px;
  }

  .hero-content {
    padding: 30px 15px;
    gap: 25px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content p:first-child {
    font-size: 20px;
  }

  .hero-content p:last-of-type {
    font-size: 1.1rem;
  }

  .navbar {
    padding: 15px 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 20px 10px;
  }

  .hero-content {
    padding: 20px 10px;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p:first-child {
    font-size: 18px;
  }

  .hero-content p:last-of-type {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-content img[src="./images/gov.webp"] {
    width: 80px;
  }

  .btn {
    padding: 16px 35px;
    font-size: 1.1rem;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .navbar li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p:first-child {
    font-size: 16px;
  }

  .hero-content p:last-of-type {
    font-size: 0.95rem;
  }

  .btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

/* Form Card */
.card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Images section */
.images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.images .img {
  width: 150px;
  height: 80px;
}

.images .img img {
  width: 150px;
  height: 80px;
  object-fit: cover;
}

.images .img2 {
  width: 150px;
  background-color: white;
  padding: 2px;
  object-fit: cover;
}

/* about section */
.about-section {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.about-left {
  width: 60%;
  min-width: 280px;
}

.aboutLbef-image img {
  width: 340px;
  height: 440px;
  object-fit: cover;
}

@media(max-width:400px) {
  .aboutLbef-image img {
    width: 270px;
    height: 400px;
    object-fit: cover;
  }

}

.about-label {
  color: #3d5afe;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.about-section .about-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Poppins";
}

.about-section .about-heading span {
  position: relative;
  display: inline-block;
  /* important */
}

.about-section .about-heading span .decoration {
  position: absolute;
  left: 0;
  bottom: -12px;
  /* pushes image below the text */
  width: 100%;
  pointer-events: none;
}

.section-header h1 span .decoration2 {
  position: absolute;


  left: 0;
  bottom: -10px;
  /* pushes image below the text */
  width: 100%;
  pointer-events: none;
}

.section-header .mern span .decoration4 {
  position: absolute;


  left: 0;
  bottom: -10px;
  /* pushes image below the text */
  width: 100%;
  pointer-events: none;
}

.heading-wrapper .title span .decoration3 {
  position: absolute;

  font-family: 'Poppins';
  left: 0;
  bottom: -10px;
  /* pushes image below the text */
  width: 100%;
  height: 12px;
  pointer-events: none;
}

.about-sub {
  font-size: 18px;
  margin-bottom: 20px;
}

.about-lines p {
  font-size: 16px;
  font-family: "Poppins";
  color: #555;
  line-height: 2;
}

@media(max-width:500px) {
  .about-lines p {
    text-align: justify;
  }

  .about-section {

    padding: 4px;

  }
}

.about-right {
  width: 30%;
  display: flex;
  min-width: 280px;
}

.about-right .about-images {
  display: flex;
  gap: 11px;
  align-items: center;
}

.about-right .about-images .images {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: end;
}

.about-right .about-images .images .img-top {
  width: 140px;
  height: 200px;
  margin-top: 60px;
  clip-path: polygon(0 36%, 100% 0%, 100% 99%, 0% 100%);
  object-fit: cover;
}

.about-right .about-images .img-middle {
  width: 220px;
  height: 220px;
  clip-path: polygon(0 0, 100% 0%, 100% 99%, 0% 100%);
  object-fit: cover;
}

.about-right .img-right {
  margin-top: -13px;
  width: 220px;
  height: 360px;
  clip-path: polygon(0 0, 100% 39%, 100% 99%, 0% 100%);
  object-fit: cover;
}

@media(max-width:1200px) {
  .about-section {
    gap: 5%;
  }

  .about-right .about-images .images .img-top {
    width: 100px;
    margin-top: 60px;
  }

  .about-right .about-images .img-middle {
    width: 180px;
    height: 180px;
  }

  .about-right .img-right {
    margin-top: -13px;
    width: 190px;
    height: 300px;
  }
}

.logo-text {
  font-size: 32px;
  font-weight: 600;
  color: #ded5f5;
  margin-top: 10px;
}

@media (max-width: 1030px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .about-section .about-left {
    width: 70%;
    text-align: center;
  }

  .about-section .about-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 550px) {
  .about-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;

  }

  .about-left {
    width: 400px;
    text-align: center;
  }
}

@media (max-width: 403px) {
  .about-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;

  }

  .about-right .about-images .images .img-top {
    width: 80px;
    margin-top: 60px;
  }

  .about-left {
    width: 300px;
    text-align: center;
  }

  .about-right {
    width: 280px;
    text-align: center;
  }

  .about-right .about-images .img-middle {
    width: 120px;
    height: 120px;
  }

  .about-right .img-right {
    margin-top: -13px;
    width: 150px;
    height: 220px;
  }
}


.stats-section {
  background: #ffffff;
  padding: 2rem 1rem;
  font-family: "Poppins";
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Cards */
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

/* Icon */
.stat-icon {
  color: #4b5563;
}

.stat-icon svg {
  width: 48px;
  height: 48px;
}

/* Number */
.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
}

/* Label */
.stat-label {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.3;
}

/* Responsive */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-icon svg {
    width: 56px;
    height: 56px;
  }
}


/* sections */
.courses-section {
  min-height: 100vh;
  padding: 80px 20px;
  background: url("./images/course_bg.webp") center/cover no-repeat;
  position: relative;
}

.courses-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.courses-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Header */
.courses-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.courses-section .subtitle {
  color: #3d5afe;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.courses-section.title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #111827;
}

/* Grid */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* Card */
.course-card {
  background: #fff;
  border-bottom: 4px solid #2563eb;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  overflow: hidden;
}

.course-card:hover {
  background: #2563eb;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 350px;
}

/* Tag */
.tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563eb;
  font-weight: 600;
}

.course-card:hover .tag {
  color: rgba(255, 255, 255, 0.8);
}

.spacer {
  flex: 1;
}

/* Icon */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #2563eb;
}

.course-card:hover .icon-circle {
  display: none;
}

.icon-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.course-card:hover h3 {
  color: #fff;
}

/* Hover reveal */
.hover-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(24px);
  transition: all 0.5s ease;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-top: 16px;
}

.course-card:hover .hover-reveal {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}

.read-more {
  font-weight: 600;
  text-decoration: underline;
  margin-top: 24px;
  display: inline-block;
}

/* about university */
.about-section-univerity {
  padding: 80px 20px;
  background: #fff;
}

.about-section-univerity .container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.about-section-univerity .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.heading-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding-top: 40px;
}

.corner {
  position: absolute;
  top: 40px;
  width: 200px;
  height: 120px;
  border-top: 2px solid #000;
}

.corner.left {
  left: 0;
  border-left: 2px solid #000;
  border-top-left-radius: 20px;
}

.corner.right {
  right: 0;
  border-right: 2px solid #000;
  border-top-right-radius: 20px;
}

.about-section-univerity h2 {
  display: inline-block;
  padding: 0 32px;
  background: #fff;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #2563eb;
  position: relative;
  z-index: 2;
}

.about-section-univerity .decorated {
  position: relative;
}

.about-section-univerity .decorated img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 100%;
  height: 10px;
}

.about-section-univerity .subtitle {
  margin-top: 24px;
  color: #6b7280;
  font-size: 18px;
  max-width: 800px;
  margin-inline: auto;
}

/* Grid */
.about-section-univerity .content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-section-univerity .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Image */
.about-section-univerity .image-wrapper {
  position: relative;
}

.about-section-univerity .ring {
  position: absolute;
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.about-section-univerity .ring-left {
  top: -40px;
  left: -40px;
}

.ring-right {
  bottom: -40px;
  right: -40px;
}

.about-section-univerity .main-image {
  border-radius: 20px;
  overflow: hidden;
}

.about-section-univerity .main-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* Text */
.about-section-univerity .text-content h3 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.about-section-univerity .text-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 32px;
}

/* Button */
.about-section-univerity .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #2563eb;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.about-section-univerity .btn:hover {
  background: #1e40af;
}

/* ------------- video section ------------ */
.video-section {
  position: relative;
  height: 45vh;
  min-height: 350px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .video-section {
    height: 60vh;
  }
}

/* Background */
.video-bg {
  position: absolute;
  inset: 0;
  background: url("./images/video_section.webp") center/cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 56, 0.67);
}

/* Content */
.video-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.video-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .video-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Left */
.video-left {
  text-align: center;
  margin-left: 30px;
  color: #fff;
}

@media (min-width: 768px) {
  .video-left {
    width: 55%;
    text-align: left;
  }
}

.video-section.subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.video-left h1 {
  font-size: clamp(24px, 5vw, 55px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.second-line {
  display: block;
  margin-top: 8px;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: #3040e5;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(48, 64, 229, 0.45);
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(48, 64, 229, 0.6);
}

/* Right */
.video-right {
  text-align: center;
  color: #fff;
}

@media (min-width: 768px) {
  .video-right {
    width: 40%;
  }
}

.play-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ripple animation */
.ripple {
  position: absolute;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.4;
  animation: ripple 1.2s ease-out infinite;
}

@media (min-width: 640px) {
  .ripple {
    width: 80px;
    height: 80px;
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Play button */
.play-btn {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .play-btn {
    width: 64px;
    height: 64px;
  }
}

.play-btn svg {
  width: 20px;
  height: 20px;
  color: #2563eb;
  margin-left: 2px;
}

@media (min-width: 640px) {
  .play-btn svg {
    width: 28px;
    height: 28px;
  }
}

.watch-text {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
}

/* // ----------- our values (UPDATED FOR RESPONSIVENESS) ----------- */
.values-section {
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  margin-top:-50px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.small-title {
  font-size: 12px;
  letter-spacing: 2px;
  color: #2563eb;
  font-weight: 600;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-top: 12px;
  color: #0f172a;
}

/* Grid - UPDATED for better responsiveness */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  align-items: center;
}

/* Text block */
.value-item {
  max-width: 420px;
}

.section-header .title {
  font-size: 40px;
  font-family: "Poppins";
}

.value-item.left {
  justify-self: start;
}

.value-item.right {
  justify-self: end;
}

.number {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.value-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 12px 0;
  color: #0f172a;
}

.value-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}

/* Image */
.value-image {
  width: 100%;
}

.value-image.left {
  justify-self: start;
}

.value-image.right {
  justify-self: end;
}

.value-image img {
  width: 100%;
  max-width: 360px;
  height: 180px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Updates for Core Values */
@media (max-width: 1024px) {
  .values-grid {
    gap: 40px 30px;
  }

  .value-image img {
    max-width: 320px;
    height: 160px;
  }
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .value-item,
  .value-item.left,
  .value-item.right {
    justify-self: center;
    max-width: 500px;
  }

  .value-image,
  .value-image.left,
  .value-image.right {
    justify-self: center;
    order: -1;
    /* Make image appear before text on mobile */
  }

  /* Stack pattern: image then text for all items on mobile */
  .values-grid>*:nth-child(1),
  .values-grid>*:nth-child(2),
  .values-grid>*:nth-child(3),
  .values-grid>*:nth-child(4),
  .values-grid>*:nth-child(5),
  .values-grid>*:nth-child(6) {
    grid-column: 1;
  }

  /* Set order for mobile view */
  .values-grid>*:nth-child(1) {
    order: 1;
  }

  /* Vision text */
  .values-grid>*:nth-child(2) {
    order: 2;
  }

  /* Vision image */
  .values-grid>*:nth-child(3) {
    order: 4;
  }

  /* Mission image */
  .values-grid>*:nth-child(4) {
    order: 3;
  }

  /* Mission text */
  .values-grid>*:nth-child(5) {
    order: 5;
  }

  /* Promise text */
  .values-grid>*:nth-child(6) {
    order: 6;
  }

  /* Promise image */
}

@media (max-width: 768px) {
  .values-section {
    padding: 70px 20px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .value-item h3 {
    font-size: 22px;
  }

  .value-item p {
    font-size: 14px;
  }

  .value-image img {
    max-width: 280px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .values-section {
    padding: 50px 15px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .value-item {
    max-width: 100%;
  }

  .value-item h3 {
    font-size: 20px;
  }

  .value-image img {
    max-width: 100%;
    height: 130px;
    border-radius: 20px;
  }
}

/* // ----------- admission producer (UPDATED FOR RESPONSIVENESS) ----------- */
.admission {
  padding: 80px 20px;
  background-image: url('./images/admission.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.admission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Keep content above overlay */
.admission>* {
  position: relative;
  z-index: 2;
}

.admission .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.admission .subtitle {
  letter-spacing: 4px;
  font-size: 14px;
  opacity: 0.8;
  display: inline-block;
  margin-bottom: 10px;
}

.admission .title {
  font-size: clamp(32px, 5vw, 42px);
  margin: 15px 0;
  font-weight: 700;
}

.admission .description {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: clamp(14px, 2vw, 15px);
  opacity: 0.8;
  line-height: 1.6;
  padding: 0 15px;
}

.admission .steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}

.step-label {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: bold;
  opacity: 0.6;
  min-width: 120px;
  text-align: center;
}

.step-card {
  background: #fff;
  color: #000;
  border-radius: 14px;
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.admission .icon {
  width: 45px;
  height: 45px;
  background: #e0f2fe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.step-card-content {
  flex: 1;
}

.step-card h4 {
  font-size: clamp(15px, 2vw, 16px);
  margin-bottom: 6px;
  font-weight: 600;
}

.step-card p {
  font-size: clamp(12px, 1.5vw, 13px);
  color: #555;
  line-height: 1.5;
}

/* Responsive Updates for Admission Procedure */
@media (max-width: 1024px) {
  .step {
    justify-content: space-between;
  }

  .step-card {
    max-width: 480px;
  }
}

@media (max-width: 900px) {
  .step {
    flex-direction: column;
    gap: 20px;
  }

  /* Mobile view: Step label on top, card below */
  .step-1,
  .step-3 {
    flex-direction: column;
  }

  .step-2 {
    flex-direction: column;
  }

  .step-label {
    order: 1;
    /* Step label comes first on mobile */
    margin-bottom: 10px;
    min-width: auto;
  }

  .step-card {
    order: 2;
    /* Card comes after label on mobile */
    max-width: 500px;
    width: 90%;
  }

  /* Remove any specific positioning for step-2 */
  .step-2 .step-label {
    order: 1;
  }

  .step-2 .step-card {
    order: 2;
  }
}

@media (max-width: 768px) {
  .admission {
    padding: 60px 15px;
  }

  .admission .steps {
    gap: 30px;
  }

  .step-card {
    padding: 18px 22px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .admission .icon {
    margin: 0 auto;
  }

  .step-card-content {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .admission {
    padding: 50px 10px;
  }

  .admission .title {
    font-size: 28px;
  }

  .admission .description {
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .admission .steps {
    gap: 25px;
  }

  .step-label {
    font-size: 22px;
  }

  .step-card {
    width: 100%;
    padding: 16px 20px;
  }

  .admission .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ------------- documnet section ------------- */
.document-section {
  padding: 60px 20px;
  font-family: "Poppins";
  display: flex;
  justify-content: center;
}

.document-container {
  max-width: 1000px;
  width: 100%;
}

.document-header {
  text-align: center;
  margin-bottom: 50px;
}

.document-header .title {
  margin-top: 20px;

  margin-bottom: 20px;
}

.document-header .subtitle {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.document-blue-text {
  color: #3d5afe;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 50px;
  text-transform: uppercase;
}




.document-subtitle {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.document-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.card-title {
  color: #0540F2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.document-card ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.document-card ul li {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }
}


/* /////scholarship////// */
.scholarship {
  padding: 90px 20px;
  background: linear-gradient(to right, #131F34B2),
    url("./images/scholarship.webp") center/cover no-repeat;
  color: #fff;
}

.scholarship-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-tag {
  letter-spacing: 4px;
  font-size: 13px;
  opacity: 0.8;
}

.section-title {
  font-size: 44px;
  margin: 12px 0;
}

.section-desc {
  max-width: 750px;
  margin: 0 auto 60px;
  font-size: 14px;
  opacity: 0.8;
}

/* ================= SCHOLARSHIP SECTION ================= */

.scholarship {
  padding: 90px 20px;
  background: linear-gradient(to right, #131F34B2),
    url("./images/scholarship.webp") center/cover no-repeat;
  color: #fff;
}

.scholarship-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADER */
.section-tag {
  font-size: 13px;
  letter-spacing: 4px;
  opacity: 0.8;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 44px;
  margin: 12px 0;
  font-weight: 700;
}

.section-desc {
  max-width: 750px;
  margin: 0 auto 60px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

/* CARD WRAPPER */
.card-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD BASE */
.scholarship-card {
  max-width: 300px;
  width: 100%;
  background: #fff;
  color: #000;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* ICON */
.scholarship-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* TITLE */
.scholarship-card h3 {
  font-size: 20px;
  margin: 15px 0;
  font-weight: 600;
}

/* DESCRIPTION */
.scholarship-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* LINK */
.scholarship-card a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

/* HOVER EFFECT */
.scholarship-card:hover {
  background: #fffd4a;
  transform: translateY(-8px);
}

.scholarship-card:hover a {
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .card-wrapper {
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .scholarship {
    padding: 70px 15px;
  }

  .section-desc {
    font-size: 13px;
  }
}

/* ///////////////// why lbef /////////////// */

.why-lbef {
  padding: 100px 20px;
  background: #ffffff;
  font-family: 'Inter';
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header .tag {
  font-size: 13px;
  letter-spacing: 3px;
  color: #2563eb;
}

.section-header h2 {
  font-size: 42px;
  margin: 10px 0;
  color: #0f172a;
}

.section-header p {
  font-size: 14px;
  max-width: 600px;
  margin: auto;
  color: #64748b;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Image section */
.image-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-box img {
  position: relative;
  z-index: 2;
  width: 300px;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-card {
  background: #f8fafc;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-card h4 {
  font-size: 16px;
  color: #0f172a;
}

.feature-card p {
  font-size: 13px;
  color: #64748b;
}

.why-lbef .icon {
  width: 45px;
  height: 45px;
  background: #e0edff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
  }

  .image-box {
    margin-bottom: 40px;
  }
}

/* ///////////////// six path /////////////// */

.six-section {
  width: 100%;

  display: flex;
  justify-content: center;
}

.six-path {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.six-path img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}




/* Base hidden state */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* When visible */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger delay utilities */
.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

.delay-4 {
  transition-delay: 0.6s;
}

.delay-5 {
  transition-delay: 0.75s;
}

.delay-6 {
  transition-delay: 0.85s;
}


.slide-left {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s ease-out;
}

.slide-right {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s ease-out;
}

.slide-left.show,
.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

.play-wrapper.fade-up {
  transform: scale(0.85);
}

.play-wrapper.fade-up.show {
  transform: scale(1);
}

/* Sidebar styling */
.sidebar {
  width: 100%;
  max-width: 380px;
  /* adjust as needed */
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
  /* stays visible while scrolling */
  margin-left: auto;
  margin-right: auto;
}

/* Enquiry widget */
.enquiry-widget h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #474AFF;
  font-weight: 700;
}

.enquiry-widget p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Make NPF widget responsive */
.npf_wgts iframe {
  width: 100% !important;
  height: auto !important;
  /* auto height based on content */
  min-height: 600px;
  /* optional: ensures enough space */
  border: none;
  border-radius: 8px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .sidebar {
    max-width: 100%;
    padding: 20px 15px;
    top: 0;
  }
}

@media (max-width: 1024px) {
  .main-container {
    flex-direction: column !important;
    /* Stack vertically */
  }

  .sidebar {
    order: 1 !important;
    /* Sidebar comes first */
    flex: 0 0 100% !important;
    max-width: 100% !important;
    position: relative !important;
    height: auto !important;
    margin-bottom: 20px;
  }

  .main-content {
    order: 2 !important;
    /* Main content comes after */
    flex: 0 0 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Layout */
.container {
  max-width: 1150px;
  font-family: "Poppins";
  margin: auto;
  padding: 64px 16px;
  text-align: center;
}



.subtitle {
  color: #6b7280;
  max-width: 600px;
  margin: auto  auto 40px;
}


/* Circle */
.circle-wrapper {
  position: relative;
}

/* Card */
.card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 256px; /* w-64 */
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Icon */
.icon {
  padding: 10px;
  background: #dbeafe;
  color: #474AFF;
  border-radius: 999px;
  font-size: 18px;
}

/* Text */
.top {
  font-weight: 700;
  color: #1f2937;
}

.title {
  font-size: 0.875rem;
  color: #4b5563;
}

/* EXACT React math (radius = 300px) */
.c1 { transform: translate(calc(-50% + 176px), calc(-50% - 243px)); }
.c2 { transform: translate(calc(-50% + 285px), calc(-50% - 92px)); }
.c3 { transform: translate(calc(-50% + 285px), calc(-50% + 92px)); }
.c4 { transform: translate(calc(-50% + 176px), calc(-50% + 243px)); }
.c5 { transform: translate(calc(-50% - 176px), calc(-50% + 243px)); }
.c6 { transform: translate(calc(-50% - 285px), calc(-50% + 92px)); }
.c7 { transform: translate(calc(-50% - 285px), calc(-50% - 92px)); }
.c8 { transform: translate(calc(-50% - 176px), calc(-50% - 243px)); }

/* Center Logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 192px;
  height: 192px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.center-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ================= Layout ================= */
.container {
  max-width: 1150px;
  margin: auto;
  padding: 64px 16px;
  text-align: center;
}

/* ================= Heading ================= */
.heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.subtitle {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ================= Highlight ================= */
.highlight {
  position: relative;
  color: #474AFF;
}

.highlight img {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 100%;
  height: 8px;
}

/* ================= Circle Wrapper ================= */
.circle-wrapper {
  position: relative;
  min-height: 700px;
}

/* ================= Card ================= */
.card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 256px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ================= Icon ================= */
.icon {
  padding: 10px;
  background: #dbeafe;
  color: #474AFF;
  border-radius: 999px;
  font-size: 18px;
}

/* ================= Text ================= */
.top {
  font-weight: 700;
  color: #1f2937;
}

.title {
  font-size: 0.875rem;
  color: #4b5563;
}

/* ================= Desktop Positions ================= */
.c1 { transform: translate(calc(-50% + 176px), calc(-50% - 243px)); }
.c2 { transform: translate(calc(-50% + 285px), calc(-50% - 92px)); }
.c3 { transform: translate(calc(-50% + 285px), calc(-50% + 92px)); }
.c4 { transform: translate(calc(-50% + 176px), calc(-50% + 243px)); }
.c5 { transform: translate(calc(-50% - 176px), calc(-50% + 243px)); }
.c6 { transform: translate(calc(-50% - 285px), calc(-50% + 92px)); }
.c7 { transform: translate(calc(-50% - 285px), calc(-50% - 92px)); }
.c8 { transform: translate(calc(-50% - 176px), calc(-50% - 243px)); }

/* ================= Center Logo ================= */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 192px;
  height: 192px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.center-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .circle-wrapper {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .card {
    position: static;
    transform: none !important;
    width: 100%;
  }

  .center-logo {
    display: none;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 420px) {
  .circle-wrapper {
    grid-template-columns: 1fr;
  }
}
