:root {
  --primary-color: #1a4b78;
  --primary-dark: #0d2b47;
  --primary-light: #2c6ca5;
  --accent-color: #4ecdc4;
  --accent-dark: #2ca59c;
  --text-light: #e6f1ff;
  --text-dark: #0d1b2a;
  --bg-color: #0a192f;
  --bg-light: #112240;
  --gray-light: #8892b0;
  --yellow: #ffd166;
  --success: #06d6a0;
  --transition-slow: all 0.6s ease;
  --transition-medium: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-light);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  display: none;
}
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-light);
  font-size: 1.2rem;
}

/* Buttons */
button {
  cursor: pointer;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  transition: var(--transition-medium);
}

.primary-button {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.primary-button:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.secondary-button {
  background: transparent;
  color: var(--primary-color);
  padding: 0.95rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
}

.secondary-button:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color), var(--bg-light));
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(44, 108, 165, 0.05) 0%, rgba(10, 25, 47, 0.2) 100%);
}

.bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.bg-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  background: var(--primary-light);
}

.bubble-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

.bubble-2 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 20%;
  animation: float 9s ease-in-out infinite 1s;
}

.bubble-3 {
  width: 350px;
  height: 350px;
  bottom: 15%;
  left: 30%;
  animation: float 10s ease-in-out infinite 0.5s;
}

.bubble-4 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: 5%;
  animation: float 7s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.icon-container {
  display: inline-block;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  padding: 1.5rem;
  animation: spin 15s linear infinite;
}

.icon-container i {
  font-size: 3rem;
  color: var(--text-light);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.main-heading {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeIn 1s ease-out;
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--gray-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeIn 1s ease-out 0.5s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Wind Turbines */
.turbine-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  overflow: hidden;
}

.turbine {
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

.turbine-1 {
  left: 25%;
}

.turbine-2 {
  right: 30%;
}

.tower {
  width: 3px;
  height: 80px;
  background-color: #6e7c7c;
  margin: 0 auto;
  position: relative;
}

.blades {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  animation: rotateTurbine 6s linear infinite;
}

.blades::before,
.blades::after,
.blades::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 40px;
  background-color: #ddd;
  transform-origin: center bottom;
}

.blades::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.blades::after {
  transform: translate(-50%, -50%) rotate(120deg);
}

.blades::before {
  transform: translate(-50%, -50%) rotate(240deg);
}

@keyframes rotateTurbine {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

/* Carousel Section */
.carousel-section {
  background-color: #172a45;
  padding: 6rem 0;
}

.carousel-container {
  position: relative;
  height: 500px;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-inner {
  height: 100%;
  width: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.carousel-slide h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  z-index: 10;
  transition: var(--transition-fast);
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
}

.carousel-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-thumbnail {
  height: 100px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: var(--transition-medium);
}

.carousel-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: var(--transition-medium);
}

.carousel-thumbnail:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.carousel-thumbnail.active {
  box-shadow: 0 0 0 3px var(--primary-color);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #0f2027, #203a43);
  padding: 6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background-color: var(--bg-light);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: var(--transition-medium);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-icon i {
  font-size: 2rem;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 600;
}

.stat-card h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

.stat-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.progress-container {
  background-color: var(--bg-light);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.progress-container h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.progress-item {
  margin-bottom: 1.5rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.progress-bar {
  height: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 10px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.progress-percent {
  text-align: right;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  color: var(--gray-light);
}

/* Features Section */
.features-section {
  background-color: var(--bg-color);
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background-color: var(--bg-light);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-medium);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.feature-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content {
  padding: 1.5rem;
}

.feature-content h3 {
  transition: var(--transition-medium);
}

.feature-card:hover .feature-content h3 {
  color: var(--primary-light);
}

.feature-benefits {
  margin: 1.5rem 0;
}

.feature-benefit {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
  margin-right: 0.75rem;
}

.feature-button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 600;
  transition: var(--transition-medium);
}

.feature-button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  background: linear-gradient(135deg, var(--bg-light), var(--primary-dark));
  border-radius: 1rem;
  padding: 3rem;
  align-items: center;
}

.info-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.info-stat {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dark);
}

.info-image {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  height: 300px;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 75, 120, 0.3), transparent);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
}

.cta-section .section-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section .icon-container {
  margin: 0 auto 2rem;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out;
}

.cta-section p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeIn 1s ease-out 0.2s backwards;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.process-step {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: var(--transition-medium);
}

.process-step:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.cta-section .button-container {
  margin-bottom: 3rem;
}

.cta-primary-button {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-medium);
}

.cta-primary-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary-button {
  background: transparent;
  color: white;
  padding: 0.95rem 2.5rem;
  border-radius: 50px;
  border: 2px solid white;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition-medium);
}

.cta-secondary-button:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-5px);
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cta-stat {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: var(--transition-medium);
}

.cta-stat:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.cta-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.cta-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.wave-container svg {
  width: 100%;
  height: 80px;
  fill: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .button-container {
    flex-direction: column;
  }
  
  .carousel-container {
    height: 350px;
  }
  
  .info-container,
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .info-image {
    height: 250px;
  }
  
  .main-heading {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .feature-image {
    height: 180px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .carousel-container {
    height: 250px;
  }
  
  .carousel-thumbnail {
    height: 60px;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .process-step,
  .cta-stat {
    padding: 1rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
}

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
   --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(240, 3%, 6%);
  --title-color: hsl(220, 13%, 95%);
  --text-color: hsl(240, 45%, 98%);
  --body-color: #0f1f3b;
  
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: var(--body-color);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}
.nav__logo i {
  font-size: 1.25rem;
}
.nav__logo:hover {
  color: var(--first-color);
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 1.25rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: var(--first-color-lighten);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}
.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: var(--title-color);
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
/* For large devices */
@media screen and (min-width: 1118px) {
  /* Nav */
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
  }
 
  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child, .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: var(--first-color);
  }
  .dropdown__item {
    cursor: pointer;
  }
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  .dropdown__item:hover > .dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}
@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}

.nav__data>a>img{
    width: 30%;
    padding: 0 30;

}

.container5{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    background-color: #001f7c38;
}

.simple-footer {
    background-color: #0C224B;
    color: #e5f4f1;
    padding: 3rem 3rem 2rem; /* Increased top padding */
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* More vertical space between content blocks */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem; /* More padding above content */
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-logo {
    width: 150px;
    height: auto;
  }

  .footer-left p {
    max-width: 480px;
    font-size: 1rem;
    color: #d8e9e6;
    line-height: 1.8;
  }

  .social-icons {
    margin-top: 0.1rem;
  }

  .social-icons a {
    font-size: 1.9rem;
    margin-right: 1.2rem;
    color: #d8e9e6;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #ffffff;
  }

  .footer-right {
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #94b8b2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12rem;
  padding-bottom: 30px; /* added 'px' unit */
  gap: 20px; /* optional: spacing between items */
}

.footer-right p {
  font-size: 0.7rem;
  margin: 0; /* remove default margin */
}

.footer-right a {
  color: #94b8b2;
  text-decoration: none;
  font-size: 0.7rem;
}

  .footer-right a:hover {
    text-decoration: underline;
  }

  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }

    .footer-left {
      flex: 1;
    }

    .footer-right {
      flex: 1;
      justify-content: flex-end;
    }
  }