@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap");

:root {
  --primary-color: #c1b179e2;
  --primary-color-dark: #5006e5;
  --text-dark:  rgb(255, 255, 255);/*full website color*/
  --text-light: #575f5f;
  --white: #2c1010;/*text color*/
  --max-width: 1200px;
  --header-font: "Orbitron", sans-serif;
  --gradient-1: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-color-dark),
    var(--primary-color)
  );
  --gradient-2: linear-gradient(to right bottom, #5f5fc0, #c1c1ccf7);/*inner box color for style*/
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1rem;
  margin-top: 3%;
}

.section__header {
  margin-top: -3%;
  margin-bottom: 2rem;
  font-family: var(--header-font);
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
  color: var(--white);
}

.new__line{
  /*color: var(--white);color: #ffffff;color: var(--text-light);*/
  font-size: 1.2rem;
  line-height: 2rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1.5%;
  margin-bottom: 3%;
}

.sub_header_title{
  text-align: center;
}

.discover__grid .discover__card p {
  color: var(--white);
  margin-top: 2%;
}

.discover__grid .discover__card p {
  color: var(--white);
}

.commitment__content h3{
  color: var(--white);
margin-bottom: 2%;
}

.section__description {
  font-size: 1.1rem;
  line-height: 2rem;
  color: var(--text-light);
  text-align: center;
}

.gradient__box {
  position: relative;
  background-color: var(--text-dark);
  background-clip: padding-box;
  border: 2px solid transparent;
  border-radius: 1rem;
}

.gradient__box::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(
    to right,
    var(--text-light),
    var(--text-dark),
    var(--text-light)
  );
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}
.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--primary-color-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal overflow */
  }

/* Logo */
.nav__header {
  padding: -0.5rem;
  width: 100%;
  display: flex;
  align-items: center ;
  justify-content: space-between;
  background-color: var(--text-dark);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: -20%;
  }

/* General Header and Nav Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Adjust padding as needed */
    position: relative;
    background-color: #ffffff;


  isolation: isolate;
  position: fixed ;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  padding: 0.1rem 2rem;
  /*box-shadow: 0 2px 10px  rgba(0, 0, 0, 0.95);*/
}

nav .logo {
  display: inline-block;
}
/*----------------------------------------------------------*/
nav {
  height: auto;
  max-height: 90px; /* Control the max height */
  isolation: isolate;

}

nav {
  margin: 0;
  padding: 0.1rem 1rem; /* Adjust as needed */
}

nav {
  box-sizing: border-box;
}

nav a, nav img {
  margin: 0;
  padding: 0;
  display: block;
}

.container, .wrapper {
  margin: 0;
  padding: 0;
  width: 100%;
}


/*----------------------------------------------------------*/

/*Logo place and length*/
.logo img {
  max-height: 60px;
  width: auto;
  margin-left: -20%;
}

/* Responsive Design for Small Screens to logo place area */
@media (max-width: 768px){
  .logo img {
    max-height: 60px;
    width: auto;
    margin-left: -2%;
  }
}

/* Menu button for mobile (hamburger) */
.nav__menu__btn {
  /*display: none;*/
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
}

/* Navigation Links */
.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-light);
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--primary-color);
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--text-dark);
    padding: 1rem;
    text-align: center;
  }

  .nav__links.open {
    display: flex;
  }

  /* Display hamburger icon */
  .nav__menu__btn {
    display: inline-block ;
  }

}

/* Larger screen adjustments */
@media (min-width: 769px) {
  .nav__menu__btn {
    display: none;
  }
}

/*new*/
.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--text-dark);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.nav__links a:hover {
  color: var(--primary-color-dark);
}

.nav__btns {
  display: none;
  gap: 10px;
}

.header__container {
  display: grid;
  gap: 4rem 2rem;
}

.header__content h1 {
  margin-top: -4%;
  margin-bottom: 1rem;
  font-size: 3.2rem;
  font-weight: 600;
  font-family: var(--header-font);
  line-height: 5rem;
  color: var(--white);
  text-align: center;
}

.header__content h1 span {
  color: var(--primary-color-dark);
}

.section__header span {
  color: var(--primary-color-dark);
}

.header__content .section__description {
  margin-bottom: 2rem;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header__btns .btn {
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--primary-color-dark);
}

.header__btns a {
  display: flex;
  align-items: center;
  gap: 1rem;
  /*color: var(--text-light);*/
  color: #ffffff;
}

.header__btns a:hover {
  color: var(--white);
  background-color: #9b99a4ac;  
}

.header__image {
  position: relative;
  isolation: isolate;
}

.header__image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100vw;
  left: 0;
  bottom: 0;
  clip-path: polygon(10rem 0, 100% 0, 100% 100%, 0 100%);
  background-color: var(--primary-color-dark);
  z-index: -1;
}

.header__image img {
  max-width: 550px;
  margin-inline: auto;
}

/*header*/
.discover__container .section__header,h3 {
  margin-bottom: 2rem;
  max-width: 5550px;
  margin-inline: auto;
}

.discover__grid {
  padding: 1rem;
  display: grid;
  gap: 1rem;
  background-image: var(--gradient-2);
}

.discover__card {
  padding: 2rem 1rem;
  display: grid;
  place-content: center;
  border-radius: 1rem;
  transition: 0.3s;
  cursor: pointer;
}

.discover__card:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-3rem);
}

.discover__card span {
  display: inline-block;
  max-width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  padding: 5px 12px;
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-dark);
  background-color: var(--primary-color-dark);
  border-radius: 1rem;
}

.discover__card:hover span {
  color: var(--primary-color-dark);
  background-color: var(--text-dark);
}

.discover__card h4 {
  /*color: var(--text-light);*/
  color: #121213;
}

.discover__card:hover h4 {
  color: var(--text-dark);
}

.commitment__container {
  display: grid;
  gap: 2rem;
}

.commitment__image {
  position: relative;
  isolation: isolate;
}

.commitment__image::before {
  position: absolute;
  content: "";
  height: calc(100% - 3rem);
  width: 100vw;
  right: 0;
  bottom: 0;
  clip-path: polygon(0 0, calc(100% - 10rem) 0%, 100% 100%, 0% 100%);
  background-color: var(--primary-color-dark);
  z-index: -1;
}

.commitment__image img {
  max-width: 1000px;
  margin-inline: auto;
}

.commitment__list {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.commitment__list li > div {
  padding: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  gap: 1rem;
  color: var(--text-light);
  background-image: var(--gradient-2);
}

.commitment__list li > div:hover {
  color: var(--text-dark);
  background-image: var(--gradient-1);
}

.commitment__list li span {
  display: inline-block;
  padding: 2px 6px;
  font-size: 1.5rem;
  color: var(--text-dark);
  background-color: var(--primary-color-dark);
  border-radius: 5px;
  transition: 0.3s;
}

.commitment__list li > div:hover span {
  color: var(--primary-color-dark);
  background-color: var(--text-dark);
}

.build__container {
  display: grid;
  gap: 2rem;
}

.build__image {
  position: relative;
  isolation: isolate;
}

.build__image::before {
  position: absolute;
  content: "";
  height: calc(100% - 2rem);
  width: 100vw;
  left: 0;
  bottom: 0;
  clip-path: polygon(10rem 0, 100% 0, 100% 100%, 0 100%);
  background-color: var(--primary-color-dark);
  z-index: -1;
}

.build__image img {
  max-width: 700px;
  margin-inline: auto;
}

.build__grid {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.build__card {
  padding: 2rem 1rem;
  text-align: center;
  background-image: var(--gradient-2);
}

.build__card:hover {
  background-image: var(--gradient-1);
}

.build__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 5px 10px;
  font-size: 2rem;
  background-color: var(--primary-color-dark);
  border-radius: 1rem;
  transition: 0.3s;
}

.build__card:hover span {
  color: var(--primary-color-dark);
  background-color: var(--text-dark);
}

.build__card h4 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
 /* color: var(--text-light);*/
  color: #272827;
  transition: 0.3s;
}

.build__card:hover h4 {
  color: var(--text-dark);
}

.client__container {
  display: grid;
  gap: 2rem;
}

.client__image {
  background-image: var(--gradient-2);
}

.client__image img {
  max-width: 350px;
  margin-inline: auto;
}

.client__content {
  overflow: hidden;
}

.swiper {
  margin-top: 2rem;
  padding-bottom: 3rem;
  width: 100%;
}

.client__card {
  padding: 2rem;
  background-image: var(--gradient-2);
}

.client__card p {
  margin-bottom: 1rem;
  line-height: 1.75rem;
  color: var(--text-light);
}

.client__card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color-dark);
}

.client__card h5 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.swiper-slide {
  color: var(--white);
}

.swiper-pagination-bullet {
  background-color: var(--text-light);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color-dark);
}

.getstarted__container {
  padding-block: 4rem;
  text-align: center;
  background-image: var(--gradient-1);
  border-radius: 1.5rem;
  border: 2px solid var(--white);
}

.getstarted__container .section__header {
  font-weight: 700;
  color: var(--text-dark);
}

.getstarted__container .section__description {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.getstarted__container .btn {
  color: var(--white);
  background-color: var(--text-dark);
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}



.footer__links {
  list-style: none;
  display: flex;
  flex-direction: inherit;
  text-align: center;
  gap: 1rem;
  margin-bottom:5%;
  margin-top: -5%;
}
/*newwwwwwwwwww*/
.footer__links h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: bold;
}

.footer__links a {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary-color-dark);
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  border-top: 1px solid var(--text-light);
}

@media (width > 540px) {
  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .build__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

.nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none;
  }

  .nav__btns {
    display: flex;
    flex: 1;
    
  }

  .nav__btns .btn {
    color: var(--primary-color-dark);
    background-color: var(--text-dark);
    border: 2px solid var(--primary-color-dark);
  }

  .header__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__content :is(h1, .section__description) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }

  /*gradient box*/
  .discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .discover__card {
    padding: 4rem 1rem;
  }

  .discover__card p{
    color: var(--text-dark);
    align-items: center;
  }

  .commitment__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .commitment__content :is(.section__header, .section__description) {
    text-align: left;
  }

  .commitment__content .section__header {
    max-width: 500px;
  }

  .build__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .build__image {
    grid-area: 1/2/2/3;
  }

  .build__content :is(.section__header, .section__description) {
    text-align: left;
  }

  .build__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .client__content :is(.section__header, .section__description) {
    text-align: left;
  }

  .footer__container {
    flex-direction: row;
  }

  .footer__links {
    gap: 4rem;
    margin: 2%;
  }
}

/*...................Contact us.............*/
/* Contact Page Styles */

.contact__container {
  padding-top: 2rem;
}

.contact__content {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.contact__info {
  display: grid;
  gap: 1.5rem;
}

.contact__info__item {
  padding: 2rem;
  background-image: var(--gradient-2);
  border-radius: 1rem;
  transition: 0.3s;
}

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

.contact__info__item h3 {
  font-size: 1.2rem;
  color: var(--primary-color-dark);
  margin-bottom: 0.5rem;
}

.contact__info__item p {
  color: var(--text-light);
}

.contact__social {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 1rem;
}

.contact__social a {
  font-size: 1.5rem;
  color: var(--text-light);
  transition: 0.3s;
}

.contact__social a:hover {
  color: var(--primary-color-dark);
  transform: translateY(-3px);
}

.contact__form {
  padding: 1rem;
}

.form__row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form__group {
  flex: 0.5;
  margin-bottom: 1rem;
}

.form__group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 0.5rem;
  background-color: var(--text-dark);
  border: 1px solid var(--text-light);
  border-radius: 0.5rem;
  color: var(--white);
  font-family: inherit;
  align-items: center;
}

.form__group textarea {
  height: 70px;
  resize: vertical;
}

.contact__form .btn {
  width: 50%;
  background-color: var(--primary-color-dark);
  color: var(--white);
  font-weight: 10%;
}

.contact__form .btn:hover {
  background-color: var(--primary-color);
}

.logo-image {
  max-height: 40px;
  width: auto;
  margin: 20%;
  margin-left: 8%;
}

@media (max-width:768px){
  .logo-image{
    margin-left: -5%;

  }
}

@media (width > 768px) {
  .contact__content {
      grid-template-columns: 1fr 2fr;
  }

  .contact__info {
      gap: 3rem;
  }
}

/*logo animation infinte scroll*/
.rock{
  display:flex;
}

.container {
  text-align: center;
  padding: 40px 0;
}

/* Section Heading */
h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1f1d1d;
  font-weight: bold;
  font-family: var(--header-font);
}

/* Infinite Logo Carousel Styling */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0;
  background-color:#d1d1e2 transparent;
  position: relative;
  white-space: nowrap;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to right, rgb(232, 230, 230), rgba(255, 255, 255, 0));
}

.logos:after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* Adjust animation speed */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos-slide {
  display: inline-flex;
  align-items: center; /* Ensure all logos are aligned vertically */
  animation: slide 40s linear infinite; /* Slow down the animation */
}

.logos-slide img {
  height: 70px;
  margin: 0 20px; /* Adjust margin to ensure proper spacing */
  object-fit: contain;  /* Ensure logos fit within the space */
}

.logos {
  overflow: hidden;
  white-space: nowrap; /* Prevent wrapping */
  padding: 20px 0;
  background-color: transparent;
}

@media (max-width: 768px) {
  .logos-slide img {
      height: 50px; /* Smaller logo size for mobile */
      margin: 0 10px; /* Less space between logos */
  }
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

/* Authentication Styles */
.auth-container {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  background-color: #171616;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(181, 22, 22, 0.1);
}

.auth-container h2 {
  text-align: center;
  color: var(--primary-color-dark);
  margin-bottom: 20px;
}

.auth-form .form-group {
  margin-bottom: 15px;
}

.auth-form label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-light);
}

.auth-form input {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--text-light);
  border-radius: 10px;
  background-color: var(--text-dark);
  color: var(--white);
}

.auth-form button {
  width: 100%;
  padding: 10px;
  background-color: var(--primary-color-dark);
  color: var(--white);
  border: none;
  border-radius: 80px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.auth-form button:hover {
  background-color: var(--primary-color);
}

.auth-container p {
  text-align: center;
  margin-top: 15px;
  color: var(--text-light);
}

.auth-container a {
  color: var(--primary-color-dark);
  text-decoration: none;
}

.auth-container a:hover {
  text-decoration: underline;
}

/* Update existing button styles */
.btn-signin,
.btn-signup,
.btn-signout {
  padding: 8px 16px;
  margin: 10%;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-signin {
  background-color: transparent;
  color: var(--primary-color-dark);
  border: 1px solid var(--primary-color-dark);
}

.btn-signup,
.btn-signout {
  background-color: var(--primary-color-dark);
  color: var(--white);
  border: 1px solid var(--primary-color-dark);
}

.btn-signin:hover,
.btn-signup:hover,
.btn-signout:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Hide elements based on auth state */
.signed-out,
.signed-in {
  display: none;
}

/*.......................new css code...............*/
/* General button styles */
.explore-btn {
    display: inline-block;
    background-color: #6200EE;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

/* -------Mobile screen-specific styles-------------------- */
@media (max-width: 768px) {
    #exploreButton {
        display: block;
        width: 20%;
        background-color: #5006e5;
        padding: 16px 0;
        font-size: 18px;
    }

    #exploreButton:hover{
      background-color: #9b99a4ac;
    }

    #exploreButton::before {
       /* content: "Sign In / Sign Up";*/
        display: block;
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 8px;
    }
}

/* Example for small screens (like mobile phones) */
@media screen and (max-width: 600px) {
  /* Adjust container padding/margin */
  .container {
      padding: 10px;
      margin: 0;
  }

  /* Ensure proper alignment in mobile view */
@media only screen and (max-width: 600px) {
  .nav__menu__btn {
      position: absolute;
      right: 20px;
      top: 15px;
  }
}

/* Display navigation links normally in larger screens */
@media only screen and (min-width: 601px) {
  .nav__links, .nav__btns {
      display: flex;
      gap: 20px; /* Spacing between links */
  }
  .nav__menu__btn {
      display: none; /* Hide menu button on larger screens */
  }
}
  
  /* Adjust text and image sizes */
  .text-block {
      font-size: 14px;
      text-align: center;
      padding: 10px;
  }

  .icon {
      width: 40px;
      height: 40px;
  }

  /* Fix layout issues for icons and descriptions */
  .feature {
      flex-direction: column;
      align-items: center;
  }

  .feature-text {
      margin-top: 10px;
      text-align: center;
  }
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  flex: 1 1 100%;
  margin: 10px;
}

/* New lines here */
body {
  font-family: 'Noto Sans', sans-serif;
  background-color: var(--text-dark);
  color: var(--white);
  margin: 0;

  padding-top: 5px; /* Adjust this value based on your nav height */

}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Adjusting text blocks */
  .section__header {
      font-size: 1.8rem;
      text-align: center;
  }

  .section__description, .new__line {
      font-size: 1rem;
      text-align: center;
  }

  /* Centering text */
  .discover__card, .commitment__list li {
      text-align: center;
  }

  /* Adjusting explore button */
  #exploreButton {
      width: 50%;
      font-size: 16px;
      margin: auto;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  nav {
    padding: 0.5rem 1rem;
  }

  .logo img {
    max-height: 50px;
  }

  body {
    padding-top: 80px; /* Smaller padding for mobile */
  }
}