/* Base Styles */
:root {
  --blue-950: #0B2045;
  --blue-900: #1B365D;
  --blue-800: #24478F;
  --blue-700: #2C58B0;
  --blue-600: #396AD3;
  --blue-500: #478CFF;
  --sky-700: #0369A1;
  --sky-600: #0284C7;
  --sky-500: #0EA5E9;
  --sky-400: #38BDF8;
  --sky-300: #7DD3FC;
  --sky-200: #BAE6FD;
  --sky-100: #E0F2FE;
  --white: #FFFFFF;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background: var(--blue-950);
  color: var(--white);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--sky-300);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sky-200);
}

.solar-energy-page {
  background: linear-gradient(to bottom right, var(--blue-950), var(--blue-900), var(--blue-800));
  min-height: 100vh;
}

/* Section Base Styles */
section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--sky-300);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--sky-100);
  max-width: 768px;
  margin: 0 auto 24px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--sky-200);
  max-width: 900px;
  margin: 0 auto;
}

/* Buttons */
.primary-button {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(to right, var(--blue-600), var(--sky-500));
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.primary-button:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.blue-button {
  background: var(--blue-700);
}

.blue-button:hover {
  background: var(--blue-600);
}

.secondary-button {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: var(--sky-300);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--sky-500);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: var(--sky-700);
  color: var(--white);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, var(--blue-950), var(--blue-900), var(--blue-800));
  position: relative;
}

.bg-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
}

.bg-circle-1 {
  width: 128px;
  height: 128px;
  background-color: var(--blue-700);
  opacity: 0.2;
  top: 80px;
  left: 40px;
}

.bg-circle-2 {
  width: 96px;
  height: 96px;
  background-color: var(--sky-600);
  opacity: 0.3;
  top: 160px;
  right: 80px;
}

.bg-circle-3 {
  width: 160px;
  height: 160px;
  background-color: var(--blue-600);
  opacity: 0.15;
  bottom: 128px;
  left: 25%;
}

.bg-circle-4 {
  width: 112px;
  height: 112px;
  background-color: var(--sky-500);
  opacity: 0.25;
  bottom: 80px;
  right: 33%;
}

.sun-container {
  position: absolute;
  top: 25%;
  right: 25%;
  z-index: 5;
}

.sun-wrapper {
  position: relative;
}

.sun-rays {
  position: absolute;
  inset: 0;
  width: 96px;
  height: 96px;
}

.ray {
  position: absolute;
  background-color: var(--sky-400);
}

.ray-top {
  width: 4px;
  height: 32px;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-40px);
}

.ray-bottom {
  width: 4px;
  height: 32px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
}

.ray-left {
  width: 32px;
  height: 4px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-40px);
}

.ray-right {
  width: 32px;
  height: 4px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(40px);
}

.sun-icon {
  width: 96px;
  height: 96px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 24px;
  background: linear-gradient(to right, var(--sky-400), var(--sky-300), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--sky-100);
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--sky-200);
  margin-bottom: 32px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Features Section */
.features-section {
  background: var(--blue-950);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 32px;
  background-color: var(--blue-900);
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--blue-800);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3);
}

.feature-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-container {
  transform: scale(1.1);
}

.feature-icon-1 {
  background: linear-gradient(to bottom right, var(--sky-400), var(--blue-600));
}

.feature-icon-2 {
  background: linear-gradient(to bottom right, var(--blue-400), var(--sky-600));
}

.feature-icon-3 {
  background: linear-gradient(to bottom right, var(--sky-500), var(--blue-700));
}

.feature-icon-4 {
  background: linear-gradient(to bottom right, var(--blue-500), var(--sky-700));
}

.feature-icon-container svg {
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--sky-300);
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--sky-200);
}

.feature-card p {
  color: var(--sky-100);
  line-height: 1.7;
}

.feature-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--sky-500), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-hover-line {
  opacity: 1;
}

/* Process Section */
.process-section {
  background: linear-gradient(to bottom, var(--blue-900), var(--blue-950));
  padding: 96px 0;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.blob-1 {
  width: 300px;
  height: 300px;
  background-color: var(--blue-700);
  opacity: 0.1;
  top: 0;
  left: 0;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background-color: var(--sky-600);
  opacity: 0.1;
  bottom: 0;
  right: 0;
}

.process-steps {
  position: relative;
  margin: 80px 0 60px;
}

.process-line {
  position: absolute;
  top: 96px;
  left: 50%;
  width: 75%;
  height: 2px;
  background-color: var(--sky-500);
  transform: translateX(-50%);
  z-index: 1;
}

@media (max-width: 768px) {
  .process-line {
    top: 24px;
    left: 16px;
    width: 2px;
    height: calc(100% - 48px);
    transform: none;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  position: relative;
  z-index: 2;
}

.process-step-content {
  background-color: var(--blue-800);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--blue-700);
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.process-step-content:hover {
  background-color: var(--blue-800);
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 48px;
  height: 48px;
  background-color: var(--sky-600);
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-icon {
  margin-bottom: 24px;
  margin-top: 16px;
  color: var(--sky-400);
}

.process-step h3 {
  font-size: 1.5rem;
  color: var(--sky-300);
  margin-bottom: 16px;
}

.process-step p {
  color: var(--sky-100);
}

.process-cta {
  text-align: center;
  margin-top: 64px;
}

/* Image Slider */
.image-slider-section {
  background: linear-gradient(to bottom, var(--blue-950), var(--blue-900));
  padding: 80px 0;
}

.slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 48px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  height: 500px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide-active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, var(--blue-950), var(--blue-950)/50%, transparent);
}

.slide-content h3 {
  font-size: 1.5rem;
  color: var(--sky-300);
  margin-bottom: 12px;
}

.slide-content p {
  color: var(--sky-100);
  margin-bottom: 8px;
}

.slide-details {
  color: var(--sky-200);
  font-size: 0.9rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: var(--blue-800);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  opacity: 1;
  background-color: var(--blue-700);
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--blue-700);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background-color: var(--blue-600);
}

.slider-dot.active {
  background-color: var(--sky-500);
  transform: scale(1.25);
}

.slider-cta {
  text-align: center;
  margin-top: 48px;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(to bottom, var(--blue-900), var(--blue-950));
  padding: 80px 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  border-radius: 12px;
  background-color: var(--blue-800);
  color: var(--sky-200);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--blue-800);
}

.faq-question.active {
  background-color: var(--blue-700);
  color: var(--white);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background-color: var(--blue-800);
  opacity: 0.3;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top: 1px solid var(--blue-700);
}

.faq-answer.active {
  max-height: 500px;
  padding: 24px;
  opacity: 1;
}

.faq-answer p {
  color: var(--sky-100);
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

.faq-cta p {
  color: var(--sky-200);
  margin-bottom: 24px;
}

.faq-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .faq-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to bottom right, var(--blue-800), var(--blue-700), var(--sky-600));
  padding: 80px 0;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--white);
  opacity: 0.1;
}

.circle-1 {
  width: 128px;
  height: 128px;
  top: 80px;
  left: 40px;
  animation: pulse 4s infinite alternate;
}

.circle-2 {
  width: 96px;
  height: 96px;
  bottom: 80px;
  right: 40px;
  animation: pulse 4s infinite alternate-reverse;
}

.circle-3 {
  width: 160px;
  height: 160px;
  top: 50%;
  left: 25%;
  animation: pulse 5s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.05;
    transform: scale(1);
  }
  100% {
    opacity: 0.15;
    transform: scale(1.1);
  }
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-subtitle {
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 64px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background-color: var(--blue-800);
  background-color: rgba(27, 54, 93, 0.5);
  backdrop-filter: blur(8px);
  padding: 24px;
  border-radius: 12px;
}

.contact-icon {
  color: var(--sky-300);
  margin-bottom: 16px;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--sky-100);
  margin-bottom: 8px;
}

.contact-link {
  color: var(--sky-300);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--sky-200);
}

.cta-footer {
  margin-top: 64px;
  color: var(--sky-100);
}

/* Animation Classes */
.floating-sun {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.sun-rays {
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.parallax-slow, .parallax-fast {
  transition: transform 0.1s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .process-line {
    width: 50%;
  }
}

/*=============== 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: #20407a;
  
  /*========== 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 {
  position: fixed; /* Fixed to viewport */
  top: 6.5rem;
  left: 0;
  right: 0;
  width: 100vw;
  background-color: var(--body-color);
  box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
  pointer-events: none;
  opacity: 0;
  height: max-content;
  transition: top 0.4s, opacity 0.3s;
  z-index: 999;
}

.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 {
  left: 0;
  right: 0;
  width: 100%;
  padding-inline: 0; /* Reset any unwanted side spacing */
}

 .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: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #94b8b2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15rem;
    padding-bottom: 30;
  }

  .footer-right a {
    color: #94b8b2;
    text-decoration: none;
  }

  .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;
    }
  }