/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 1.2rem 3rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(45deg, #2c3e50, #3498db);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo span {
  font-size: 1.2rem;
  color: #3498db;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3498db;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #3498db;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  background-color: #1a1a1a;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 1;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
  z-index: 2;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  text-align: right;
  color: #fff;
  z-index: 3;
  max-width: 400px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.hero-buttons .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.hero-buttons .btn-primary {
  background-color: #3498db;
  color: #fff;
  border: 2px solid #3498db;
}

.hero-buttons .btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
}

.hero-buttons .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-buttons .btn-secondary:hover {
  background-color: #fff;
  color: #1a1a1a;
}

.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 1rem;
}

.hero-nav button {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-nav button.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-nav button:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-header p {
  color: #666;
  font-size: 1.2rem;
}

/* About Section */
.about {
  background-color: #f9f9f9;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.expertise-list {
  list-style: none;
  margin-top: 2rem;
}

.expertise-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.expertise-list i {
  color: #3498db;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3498db;
  display: block;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: #3498db;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-logo h2 {
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #3498db;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .logo img {
    height: 35px;
  }

  .logo h1 {
    font-size: 1.4rem;
  }

  .logo span {
    font-size: 1rem;
  }

  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem;
    display: flex;
    overflow-y: auto;
  }

  .nav-links.active {
    top: 0;
  }

  .nav-links li {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    display: block;
    padding: 0.8rem 0;
    color: #2c3e50;
    width: 100%;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #3498db;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Overlay when menu is open */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .hero {
    height: 70vh;
  }

  .slide::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.3)
    );
  }

  .slide-content {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: none;
    text-align: center;
  }

  .slide-content h2 {
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .slide-content p {
    font-size: 1.1rem;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .hero-content {
    position: absolute;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: none;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 80px;
  }

  .hero-content h1 {
    font-size: 2rem;
    padding: 20px;
    margin-right: 30px;
  }

  .hero-content p {
    font-size: 1.1rem;
    opacity: 1;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-content,
  .contact-content,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    position: relative;
  }
  .hero-content h1 {
    font-size: 1.8rem;
    position: absolute;
    left: 50px;
    bottom: 200px;
  }

  .slide-content h2 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    position: relative;
    bottom: 100px;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: #3498db;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  margin-top: auto;
}

.blog-link:hover {
  color: #2980b9;
}

/* Responsive Design for Blog Section */
@media (max-width: 1200px) {
  .blog-grid {
    gap: 20px;
  }

  .blog-image {
    height: 220px;
  }

  .blog-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 50px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-image {
    height: 250px;
  }

  .blog-title {
    font-size: 1.5rem;
  }

  .blog-excerpt {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 40px 0;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-title {
    font-size: 1.3rem;
  }

  .blog-excerpt {
    font-size: 1rem;
  }

  .blog-date {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .blog-image {
    height: 180px;
  }

  .blog-title {
    font-size: 1.2rem;
  }

  .blog-excerpt {
    font-size: 0.9rem;
  }
}

/* Mobile Navigation */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem;
    display: flex;
    overflow-y: auto;
  }

  .nav-links.active {
    top: 0;
  }

  .nav-links li {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    display: block;
    padding: 0.8rem 0;
    color: #2c3e50;
    width: 100%;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #3498db;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Overlay when menu is open */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #3498db;
  color: #fff;
  border: 1px solid #3498db;
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Company Overview Section */
.company-overview {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.company-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.05) 0%,
    rgba(44, 62, 80, 0.05) 100%
  );
  z-index: 1;
}

.company-overview .container {
  position: relative;
  z-index: 2;
}

.company-overview-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.company-overview h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.company-overview h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #3498db;
}

.company-overview p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.company-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-item {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-item i {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.highlight-item h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.highlight-item p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .company-overview {
    padding: 60px 0;
  }

  .company-overview h2 {
    font-size: 2rem;
  }

  .company-overview p {
    font-size: 1rem;
  }

  .company-highlights {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* MOBILE NAV: slide in from left */
@media (max-width: 768px) {
  .nav-links {
    /* keep the flex/layout you already rely on */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    /* hide off screen to the left */
    position: fixed;
    top: 0;
    left: -100% !important;
    width: 70%;
    height: 100vh;

    /* your bg and spacing */
    background-color: #fff;
    padding: 3rem 1.5rem;

    /* animate the left property */
    transition: left 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
  }

  /* when your JS adds .active */
  .nav-links.active {
    left: 0 !important;
  }

  /* dim the page behind the menu */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* make sure the hamburger sits above everything */
  .hamburger {
    position: relative;
    z-index: 1000;
  }
}

/* --------------------------- */
/* TABLET & SMALL DESKTOP     */
/* screens up to 1024px wide  */
/* --------------------------- */
@media (max-width: 1024px) {
  .nav-links {
    /* keep desktop behavior or optionally begin left-slide here */
  }
}

/* --------------------------- */
/* LARGE PHONES & SMALL TABLETS */
/* screens up to 768px wide   */
/* --------------------------- */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    background-color: #fff;
    padding: 3rem 1.5rem;
    transition: left 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .hamburger {
    position: relative;
    z-index: 1000;
  }
}

/* --------------------------- */
/* MEDIUM PHONES               */
/* screens up to 480px wide   */
/* --------------------------- */
@media (max-width: 480px) {
  .nav-links {
    width: 85%;
    padding: 2.5rem 1rem;
  }
}

/* --------------------------- */
/* SMALL PHONES                */
/* screens up to 360px wide   */
/* --------------------------- */
@media (max-width: 360px) {
  .nav-links {
    width: 90%;
    padding: 2rem 0.8rem;
  }
  .nav-links a {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
}
