/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1C1B1B;
  color: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navbar */
.navbar {
  width: 100%;
  background-color: #1C1B1B;
  border-bottom: 1px solid #1a1a1a;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 999;
}

.logo a img {
  /* font-size: 24px;
  font-weight: bold;
  font-family: 'Satoshi', sans-serif;
  color: #FBFBFB; */
  width: auto;
  height: 50px;

}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #FBFBFB;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-links a:hover {
  color: #234B9B;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #234B9B;
  border-radius: 2px;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1) ;
  border-bottom: 0 solid #1a1a1a;
  height: 80px;
  position: absolute;
  top: 0;
  z-index: 999;
}
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #1C1B1B;
    flex-direction: column;
    display: none;
    padding: 20px;
    border-top: 1px solid #1a1a1a;
  }

  .nav-links.open {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

/* Hero Section */
.hero {
  height: 100vh ;
  width: 100%;
  background: url('/Assets/images/Frame\ 28.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  color: #fff;
}

.hero h1 {
  font-family: 'Satoshi', sans-serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #234B9B;
  color: #FBFBFB;
  padding: 12px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: #234B9B;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 4rem 1.5rem;
    background-position: top;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  nav.navbar {
    background-color: transparent;
  }
}
/* About us section */

/* Layout Styling */
.about-header {
  background: #1C1B1B;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
}

.about-header h1 {
  font-size: 3rem;
}

/* About Rows */
.about-section {
  background-color: #1C1B1B;
  padding: 60px 20px;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
  gap: 40px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
  color: #C6C6C6;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .about-row,
  .about-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-text {
    flex: none;
    width: 100%;
  }
}


/* Layout Styling */
.about-header {
  background: #1C1B1B;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
}

.about-header h1 {
  font-size: 3rem;
}

/* About Rows */
.about-section {
  background-color: #1C1B1B;
  padding: 60px 20px;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
  gap: 40px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
  color: #C6C6C6;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .about-row,
  .about-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-text {
    flex: none;
    width: 100%;
  }
}

/* <!-- Why choose us --> */
.safe-section {
  min-height: 630px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #1C1B1B; /* Dark background */
  overflow: hidden;
}

.safe-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
}

.safe-text {
  flex: 1;
  min-width: 280px;
}

.safe-text h2 {
  font-size: 2.5rem;
  color: #FFFFFF; /* Heading in white */
  margin-bottom: 10px;
}

.safe-text p {
  font-size: 1.1rem;
  color: #fff; /* Paragraph in soft gray */
}

.safe-boxes {
  flex: 1;
  position: relative;
  min-height: 250px;
  width: 100%;
}

.safe-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 373px;
  background: #C6C6C6; /* Box in soft gray */
  color: #1C1B1B; /* Text dark for contrast */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 12px;
  opacity: 0;
  animation: fadeSlide 9s infinite;
  transition: all 0.5s ease-in-out;
}

.safe-box.box1 { animation-delay: 0s; }
.safe-box.box2 { animation-delay: 3s; }
.safe-box.box3 { animation-delay: 6s; }

@keyframes fadeSlide {
  0%   { opacity: 0; transform: translateY(20px); }
  10%  { opacity: 1; transform: translateY(0); }
  30%  { opacity: 1; transform: translateY(0); }
  40%  { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 0; transform: translateY(-20px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .safe-content {
    flex-direction: column;
    text-align: center;
  }

  .safe-boxes {
    margin-top: 30px;
  }
}
/* Customer review */
.section-boxes {
  background-color: #F8F9FB;
  color: #1A202C;
  padding: 80px 20px;
  text-align: center;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.5rem;
  color: #5A67D8;
  margin-bottom: 10px;
}

.section-subtext {
  font-size: 1.1rem;
  color: #4A5568;
  margin-bottom: 40px;
}

.image-wrapper {
  position: relative;
  height: 500px;
}

.image-box {
  position: absolute;
  width: 696px;
  height: 474px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-box.active {
  opacity: 1;
  z-index: 2;
}

.controls {
  margin-top: 30px;
}

.controls button {
  background-color: #5A67D8;
  color: white;
  padding: 12px 20px;
  margin: 0 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.controls button:hover {
  background-color: #4C51BF;
}

@media (max-width: 767px) {
  .image-box {
    width: 90%;
    height: auto;
  }
}
/* Fotter */
/* Footer Styling */
.nsg-footer {
  background-color: #1C1B1B;
  color: #FFF;
  padding: 60px 20px 40px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #FFF;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #C6C6C6;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #FFF;
}

/* Center Logo & Socials */
.footer-center {
  text-align: center;
  flex: 1 1 200px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 40px;
}

.footer-socials a {
  color: #C6C6C6;
  font-size: 20px;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #FFF;
}

/* Subscribe */
.footer-subscribe {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
}

.footer-subscribe input {
  padding: 12px 16px;
  border: 1px solid #C6C6C6;
  background-color: transparent;
  color: #FFF;
  font-size: 16px;
  border-radius: 4px 0 0 4px;
  outline: none;
  width: 240px;
}

.footer-subscribe button {
  padding: 12px 20px;
  background-color: #C6C6C6;
  color: #1C1B1B;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-subscribe button:hover {
  background-color: #FFF;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .footer-subscribe {
    flex-direction: column;
    gap: 10px;
  }

  .footer-subscribe input,
  .footer-subscribe button {
    width: 100%;
    border-radius: 4px;
  }
}
