/* Base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #0f0f0f;
color: #ffffff;
line-height: 1.6;
}

/* Navigation */
/* ===== Updated Nav Styles ===== */



nav {
  display: flex;
  justify-content: space-between;
  align-items: center;  /* this vertically centers all items inside nav */
  padding: 1rem 2rem;
  background-color: #000;
  border-bottom: 2px solid #e60000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(230, 0, 0, 0.5);
  height: 60px; /* explicit height for nav */
}

.nav__logo {
  display: flex;
  align-items: center; /* vertical center inside the logo container */
  height: 100%; /* make logo container fill nav height */
}

.nav__logo a {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  gap: 10px;
  height: 100%; /* full height to align children vertically */
}

.nav__logo img {
  height: 40px;
  display: block;
}


.nav__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
}


.nav__links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__links li a:hover {
  color: #e60000;
}

/* Language Dropdown */
#languageSwitcher {
  padding: 0.4rem 0.6rem;
  background-color: #111;
  color: #fff;
  border: 1px solid #e60000;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 20px;
}

/* Hamburger Toggle Button */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #000;
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
    border: 1px solid #e60000;
    display: none;
  }

  .nav__links.active {
    display: flex;
  }

  #languageSwitcher {
    position: absolute;
    top: 15px;
    right: 60px;
  }
}

/* ===== Updated Header Styles ===== */

header {
  background: linear-gradient(145deg, #1a1a1a, #000);
  background-image: url(); /* Keep if you want the logo background */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 120px auto; /* Smaller logo */
  padding: 6rem 1.5rem 3rem; /* Reduced top padding */
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(230, 0, 0, 0.6);
  border-radius: 0 0 20px 20px;
  max-width: 100vw;
}

header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #e60000;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px #660000;
}

header p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #ddd;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.4;
}

header button {
  padding: 0.9rem 2rem;
  background-color: #e60000;
  border: none;
  color: white;
  font-weight: 700;
  cursor: pointer;
  border-radius: 30px;
  box-shadow: 0 0 10px #e60000aa;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header button:hover {
  background-color: #b30000;
  box-shadow: 0 0 20px #ff0000dd;
}
.btn {
  padding: 0.9rem 2rem;
  background-color: #e60000; /* Red background */
  border: none;
  color: white; /* White text */
  font-weight: 700;
  cursor: pointer;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(230, 0, 0, 0.6);
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  background-color: #000; /* Black background on hover */
  color: #fff; /* Ensure white text still visible */
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

/* EDITED THIS IS EXPERIMENT*/


/* Reset some default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
}

/* Main hero section with black background */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #000000 60%, #990000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Optional glowing red and white accent circle (animated) */
.hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), rgba(153,0,0,0.6));
  border-radius: 50%;
  top: 10%;
  left: 10%;
  animation: pulse 5s infinite alternate ease-in-out;
  z-index: 1;
}

/* Overlay for text */
.overlay {
  z-index: 2;
  max-width: 90%;
}

.overlay h1 {
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px #990000;
}

.overlay p {
  font-size: 1.2rem;
  color: #ddd;
}

/* Pulse animation for subtle background motion */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0.2;
  }
}

.logo {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 120px;
  height: 60px;
  background-image: url('images/logo.jpg'); /* Make sure the path is correct */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
.hero {
  position: relative;
}

/* Responsive typography */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }
}

/* Journey Section */
.journey__container .section__title,
.display__container .section__title {
font-size: 2rem;
color: #e60000;
margin-bottom: 1rem;
}

.section__subtitle {
color: #ccc;
margin-bottom: 2rem;
}

.journey__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.country__card {
  background-color: #1a1a1a;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.country__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(255, 0, 0, 0.2);
}

.country__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.country__name {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  background-color: #111;
}

.country__name i {
  color: #e60000;
  font-size: 1.2rem;
}


/* Banner Section */
.banner__container {
background-color: #111;
padding: 4rem 1.5rem;
text-align: center;
}

.banner__container h2 {
color: #e60000;
font-size: 1.8rem;
margin-bottom: 1rem;
}

.banner__container p {
max-width: 600px;
margin: 0 auto 2rem;
}

.banner__container button {
padding: 0.7rem 1.2rem;
background-color: #e60000;
color: white;
border: none;
border-radius: 5px;
font-weight: 500;
}

/* Display Section */
.display__grid .display__card {
background-color: #1a1a1a;
padding: 1.5rem;
border-radius: 8px;
text-align: center;
}

.display__card img {
width: 100%;
height: auto;
border-radius: 8px;
}

.display__card h4 {
margin-top: 1rem;
color: #e60000;
}

.display__card p {
margin-top: 0.5rem;
font-size: 0.95rem;
color: #ccc;
}

footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer__logo-contact {
  flex: 1 1 300px;
  min-width: 280px;
}

.footer__logo-contact h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #e74c3c; /* NestUp gold-ish */
}

.footer__logo-contact p {
  margin-bottom: 20px;
  color: #ccc;
}

.footer__form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer__form input[type="email"] {
  padding: 8px 12px;
  width: 100%;
  max-width: 320px;
  margin-bottom: 12px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.footer__form button {
  background-color: #e74c3c;
  border: none;
  color: #222;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.footer__form button:hover {
  background-color: #e74c3c;
}

.footer__links {
  flex: 1 1 150px;
  min-width: 150px;
}

.footer__links h5 {
  margin-bottom: 12px;
  color: #e74c3c;
}

.footer__links ul {
  list-style: none;
  padding: 0;
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links ul li a:hover {
  color: #e74c3c;
}

.footer__social {
  flex: 1 1 150px;
  min-width: 150px;
}

.footer__social h5 {
  margin-bottom: 12px;
  color: #e74c3c;
}

.social__icons a {
  color: #ccc;
  font-size: 1.6rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social__icons a:hover {
  color: #f1c40f;
}

.footer__bottom {
  margin-top: 30px;
  text-align: center;
  color: #777;
  font-size: 13px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }

  .footer__logo-contact,
  .footer__links,
  .footer__social {
    min-width: 100%;
  }

  .footer__form input[type="email"] {
    max-width: 100%;
  }
}

/* Slideshow container */
.slideshow__container {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

/* Slide image */
.slide {
  display: none;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Caption */
.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem;
  font-weight: 500;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Navigation arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 0.8rem;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  transition: 0.3s ease;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.prev:hover, .next:hover {
  background-color: red;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Fade animation */
.fade {
  animation: fadeEffect 0.6s ease-in-out;
}

@keyframes fadeEffect {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

/* Paragraph below slideshow */
.whyus__text {
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  color: #ffffff;
}


/* Responsive */
@media (max-width: 768px) {
nav {
flex-direction: column;
gap: 1rem;
}

.nav__links {
flex-direction: column;
align-items: center;
}

header h1 {
font-size: 2.5rem;
}

.banner__container h2 {
font-size: 1.5rem;
}
}
.site-footer {
  background-color: #222;
  color: #eee;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 3px solid #f92323;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.footer-content p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.socials {
  margin: 1rem 0;
}

.socials a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: #f9d423;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
  color: #fff700;
}

.back-to-top {
  background-color: #f92323;
  color: #222;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.back-to-top:hover {
  background-color: #ff0000;
}
/* Hero Carousel Section */
.hero-carousel {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 3rem 3rem;
  background-color: #0f0f0f;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 50%;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 90%;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.learn-btn {
  background-color: #d80000;
  padding: 0.8rem 2rem;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  text-decoration: none;
  transition: background 0.3s ease;
}

.learn-btn:hover {
  background-color: #a60000;
}

/* Carousel Styling */
.carousel {
  flex: 1;
  max-width: 45%;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 2;
}

.carousel-img {
  display: none;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.carousel-img.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e60000;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #b30000;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Red Radiant Overlay */
.radiant-red-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(255, 0, 0, 0.3), transparent 60%);
  animation: radiantSweep 5s ease-in-out infinite alternate;
  top: 0;
  left: 0;
  z-index: 1;
}

@keyframes radiantSweep {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

/* Fade-in Effect */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-carousel {
    flex-direction: column;
    padding-top: 6rem;
  }

  .hero-content, .carousel {
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}
.whyus__section {
  background-color: #0a0a0a;
  color: #e50914;
  padding: 4rem 2rem;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.whyus__heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.whyus__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
  transition: transform 0.3s ease;
}

.feature img {
  width: 60px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(14%) sepia(98%) saturate(7467%) hue-rotate(357deg) brightness(97%) contrast(128%);
}

.feature p {
  font-size: 1rem;
  color: #ff2e2e;
  margin-top: 0.5rem;
}

.feature:hover {
  transform: scale(1.05);
}

.contact__button {
  text-align: center;
  margin-top: 2rem;
}



.btn-contact {
  padding: 0.75rem 1.5rem;
  background-color: #e50914;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #ff2e2e;
}

/* Animation on load */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
