@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #0b2d79;
  --secondary: #6d2bdd;
  --white: #ffffff;
  --dark: #1e293b;
  --header-height: 80px;
  --light-bg: #f8fafc;
  --card-bg: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.18);
}
a {
  text-decoration: none;
}

body {
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Move to Top Button */
.move-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.85);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  z-index: 999;
}

.move-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.move-to-top:hover {
  background: rgba(37, 99, 235, 0.95);
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(124, 58, 237, 0.5),
    0 0 15px rgba(124, 58, 237, 0.4);
}

.move-to-top:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.5), 0 6px 25px rgba(0, 0, 0, 0.3);
}

.move-to-top i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.move-to-top:hover i {
  transform: translateY(-2px);
}

/* Progress ring (optional) */
.progress-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 50%;
  background: conic-gradient(#7c3aed var(--progress, 0%), transparent 0);
  -webkit-mask: radial-gradient(transparent 65%, black 66%);
  mask: radial-gradient(transparent 65%, black 66%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.move-to-top:hover .progress-ring {
  opacity: 1;
}

/* Tooltip */
.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
}

.tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.9) transparent transparent transparent;
}

.move-to-top:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .move-to-top {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .move-to-top i {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .move-to-top {
    transition: none;
  }

  .move-to-top i {
    transition: none;
  }

  .tooltip {
    transition: none;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: linear-gradient(135deg, #0b2d79 0%, #6d2bdd 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 55px;
  position: relative;
  top: 5px;
  margin-right: 10px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin-left: auto;
}

.nav-menu li {
  margin-left: 30px;
  position: relative;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-menu a:hover {
  color: rgba(202, 202, 202, 0.9);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-toggle i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style-type: none;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.dropdown-menu a {
  color: var(--dark);
  padding: 12px 20px;
  display: block;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary);
  transform: translateX(5px);
}

.dropdown-menu a:hover:after {
  width: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--white);
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #0b2d79 0%, #6d2bdd 100%);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  padding: 30px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.5s ease;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
}

.sidebar-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  width: 55px;
  position: relative;
  top: 5px;
  margin-right: 10px;
}

.sidebar-logo-text {
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--white);
}

.close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.sidebar-nav {
  list-style: none;
  margin-bottom: auto;
}

.sidebar-nav li {
  margin-bottom: 15px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1.1rem;
}

.sidebar-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.sidebar-nav i {
  margin-right: 15px;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

/* Sidebar Dropdown Styles */
.sidebar-dropdown {
  position: relative;
}

.sidebar-dropdown-toggle {
  cursor: pointer;
  justify-content: space-between;
}

.sidebar-dropdown-toggle i:last-child {
  transition: transform 0.3s ease;
}

.sidebar-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 20px;
}

.sidebar-dropdown-menu li {
  margin-bottom: 10px;
  list-style-type: none;
}

.sidebar-dropdown-menu a {
  font-size: 1rem;
  padding: 12px 20px;
}

.sidebar-dropdown.active .sidebar-dropdown-menu {
  max-height: 500px;
  list-style-type: none;
}

.sidebar-dropdown.active .sidebar-dropdown-toggle i:last-child {
  transform: rotate(180deg);
}

.social-links {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin: 0 8px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(11, 45, 121, 0.9) 0%,
      rgba(109, 43, 221, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1771&q=80")
      no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 0 5%;
  color: var(--white);
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 0.8s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 50px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-primary:hover {
  background: #5d00ff;
  transform: translateY(-3px);
  border-color: #5d00ff;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--primary);
  transform: translateY(-3px);
  border-color: var(--primary);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 5% 80px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .logo-text {
    font-size: 1.8rem;
  }

  .sidebar {
    width: 100%;
    right: -100%;
  }
}

/* Carousel Section */
/* ==================== */
/* ==================== */
/* ==================== */
/* ==================== */

.pg-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #9000ff1a;
}
.journey-container {
  max-width: 1200px;
  width: 100%;
}

.journey-header {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1;
}

.journey-subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #595e67;
  margin-bottom: 15px;
  font-weight: 500;
}

.journey-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #7c3aed;
}

.journey-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #292d38;
  font-weight: 300;
}

.journey-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  height: 550px;
}

.journey-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.journey-slide {
  min-width: 100%;
  position: relative;
}

.journey-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journey-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    rgba(11, 46, 121, 0.144),
    rgba(108, 43, 221, 0.87)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.journey-slide-content {
  max-width: 600px;
}

.journey-slide-tag {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 500;
}

.journey-slide-text {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
}

.journey-slide-text span {
  color: #fff;
  display: block;
}

.journey-btn {
  display: inline-block;
  background: transparent;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

.journey-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.journey-navigation {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.journey-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.5rem;
}

.journey-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.journey-pagination {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.journey-pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.journey-pagination-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.journey-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  background: #fff;
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .journey-carousel {
    height: 500px;
  }

  .journey-slide-text {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .journey-title {
    font-size: 2.4rem;
  }

  .journey-description {
    font-size: 1.1rem;
  }

  .journey-carousel {
    height: 450px;
  }

  .journey-slide-overlay {
    padding: 40px;
  }

  .journey-slide-text {
    font-size: 2.3rem;
  }

  .journey-nav-btn {
    width: 50px;
    height: 50px;
  }

  .journey-pagination {
    left: 40px;
    bottom: 30px;
  }
}

@media (max-width: 576px) {
  .journey-title {
    font-size: 2rem;
  }

  .journey-description {
    font-size: 1rem;
  }

  .journey-carousel {
    height: 400px;
  }

  .journey-slide-overlay {
    padding: 30px;
  }

  .journey-slide-text {
    font-size: 1.8rem;
  }

  .journey-slide-tag {
    font-size: 1rem;
  }

  .journey-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .journey-navigation {
    bottom: 20px;
    right: 20px;
  }

  .journey-pagination {
    left: 30px;
    bottom: 30px;
  }
}

/* CEO Message Section */
/* ==================== */
/* ==================== */
/* ==================== */
/* ==================== */

.main-ceo-wrapper {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  color: #333;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}
.ceo-section {
  max-width: 1200px;
  width: 100%;
}

.ceo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05), 0 6px 20px rgba(11, 45, 121, 0.1);
  padding: 60px;
  overflow: hidden;
  position: relative;
}

.ceo-container::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--secondary);
  opacity: 0.05;
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: -1;
}

.ceo-container::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary);
  opacity: 0.07;
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: -1;
}

.ceo-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.ceo-heading {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.2;
}

.ceo-message {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
  font-weight: 400;
}

.ceo-image {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.6s;
  position: relative;
}

.ceo-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.ceo-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

.ceo-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary);
  border-radius: 16px;
  top: 15px;
  left: 15px;
  z-index: -1;
  opacity: 0.3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .ceo-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px;
  }

  .ceo-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .ceo-heading {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .ceo-container {
    padding: 30px 20px;
  }

  .ceo-heading {
    font-size: 1.8rem;
  }

  .ceo-message {
    font-size: 1rem;
  }
}
/* Sdgs Section */
/* ==================== */
/* ==================== */
/* ==================== */
/* ==================== */

.main-sdgs-container {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #1a48b3 50%,
    var(--secondary) 100%
  );
  color: var(--white);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.sdg-container {
  width: 100%;
  max-width: 1200px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(to right, #ffffff, #c2b5e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.sdg-card {
  flex: 0 0 auto;
  width: 300px;
  height: 350px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  margin: 0 20px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.sdg-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(109, 43, 221, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.sdg-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
}

.sdg-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  height: 70px;
  display: flex;
  align-items: center;
}

.sdg-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  min-height: 70px;
  display: flex;
  align-items: center;
}

.sdg-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.cta-container {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(45deg, #6d2bdd, #0b2d79);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(109, 43, 221, 0.4);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(109, 43, 221, 0.6);
}

.cta-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Floating shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #6d2bdd, #0b2d79);
  top: -150px;
  left: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #0b2d79, #6d2bdd);
  bottom: -100px;
  right: -100px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #6d2bdd;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive design */
@media (max-width: 768px) {
  .sdg-card {
    width: 280px;
    height: 330px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .sdg-container {
    padding: 30px 20px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Explore Programs Section */
/* ==================== */
/* ==================== */
/* ==================== */
/* ==================== */

.programs-wrapper {
  color: #f8fafc;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.programs-container {
  max-width: 1200px;
  width: 100%;
}

.programs-header {
  text-align: center;
  margin-bottom: 4rem;
}

.programs-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0b2d79, #6d2bdd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.programs-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.program-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.program-card:hover {
  box-shadow: 0 15px 40px rgba(107, 43, 221, 0.25);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(108, 43, 221, 0.596);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0b2d79, #6d2bdd);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #0b2d79, #6d2bdd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-description {
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
  flex-grow: 1;
}

.view-details-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #6d2bdd;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 30px;
  border: 1px solid #6d2bdd;
  border-radius: 20px;
  transition: 0.5s;
}

.view-details-btn:hover {
  color: #fff;
  transform: translateX(5px);
  background: #6d2bdd;
}

.view-details-btn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.view-details-btn:hover i {
  transform: translateX(5px);
}

.explore-all-container {
  text-align: center;
}

.explore-all-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #0b2d79, #6d2bdd);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(107, 43, 221, 0.3);
}

.explore-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 43, 221, 0.4);
  background: linear-gradient(135deg, #0a2569, #6125c7);
}

.explore-all-btn i {
  margin-left: 0.7rem;
  transition: transform 0.3s ease;
}

.explore-all-btn:hover i {
  transform: translateX(5px);
}

/* Floating Elements */
.floating-element {
  position: fixed;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(11, 45, 121, 0.1) 0%,
    rgba(109, 43, 221, 0.1) 100%
  );
  backdrop-filter: blur(5px);
  z-index: -1;
}

.float-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.float-2 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  right: 5%;
  animation: float 10s ease-in-out infinite 1s;
}

.float-3 {
  width: 80px;
  height: 80px;
  top: 40%;
  right: 10%;
  animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .programs-title {
    font-size: 2.5rem;
  }

  .programs-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .programs-title {
    font-size: 2.2rem;
  }

  .program-card {
    padding: 2rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.4rem;
  }
}
/* Footer Section */
/* ==================== */
/* ==================== */
/* ==================== */
/* ==================== */


.knz-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.knz-footer {
  background: linear-gradient(135deg, #0b2d79 0%, #6d2bdd 100%);
  color: #cbd5e1;
  padding: 4rem 0 1.5rem;
  margin-top: auto;
}

.knz-footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.knz-footer-logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.knz-footer-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.knz-footer-logo-icon img {
  width: 60px;
}

.knz-footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.knz-footer-about {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.knz-footer-heading {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.knz-footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 3px;
}

.knz-footer-links {
  list-style: none;
}

.knz-footer-links li {
  margin-bottom: 0.8rem;
}

.knz-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.knz-footer-links a i {
  font-size: 0.8rem;
  color: #fff;
  transition: all 0.3s ease;
}

.knz-footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.knz-footer-links a:hover i {
  color: #8b5cf6;
}

.knz-footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.knz-footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.knz-footer-social-icon:hover {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.knz-footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .knz-footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .knz-footer-about {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .knz-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .knz-footer-heading {
    margin-bottom: 1rem;
  }

  .knz-footer-social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .knz-footer {
    padding: 3rem 0 1.5rem;
  }

  .knz-footer-content {
    gap: 1.5rem;
  }

  .knz-footer-logo-text {
    font-size: 1.5rem;
  }

  .knz-footer-heading {
    font-size: 1.3rem;
  }

  .knz-footer-social-icon {
    width: 38px;
    height: 38px;
  }
}