
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }
  body {
    font-family: 'Inria Sans', sans-serif;
    font-size: 20px;
    font-style: Medium;
    line-height: 1.5;
    letter-spacing: 0%;
    background-color: #000000;
      
    }
  header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;   /* hero section kanna paina */
  background: rgba(0,0,0,0.7); /* optional transparent bg */
  backdrop-filter: blur(5px);   /* stylish glass effect */
   box-shadow: 0 2px 5px rgba(0,0,0,0.2)
}


/* Navbar container */
.topnav {
    background-color: #f8f8f8;
    padding: 30px 80px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

/* Logo */
.logo {
   color: black;
   font-weight: 500;
   font-style: Medium;
   font-size: 2rem;
   text-decoration: none;
   letter-spacing: 0%;
   cursor: default;
}

/* Menu links */
.topnav .menu-links {
    display: flex;
    align-items: center;

   /* border: 1px solid magenta;*/
}

.topnav .menu-links a {
    color: black;
    text-align: center;
    padding: 14px 26px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    font-style: Medium;
    letter-spacing: 0%;
    transition: background-color 0.3s, color 0.3s;
}

.topnav .menu-links a:hover {
    background-color: #ddd;
    color: black;
}


.topnav a.contact-btn {
    background-color: rgb(8, 8, 8);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1.5rem;
    font-weight: 500;
    font-style: Medium;
    letter-spacing: 0%;
    transition: background-color 0.3s;
}

.topnav a.contact-btn:hover {
    background-color: #555;
}
/* Hamburger icon */
.topnav .icon {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #333;
}

/* Tablets ( 768px - 1024px) */
@media screen and (min-width: 818px) and (max-width: 1024px) {
    .topnav {
        padding: 30px 40px; 
        height: auto;
    }

    .topnav .menu-links a {
        font-size: 1.3rem; 
        padding: 10px 18px; 
    }

    .topnav a.contact-btn {
        padding: 8px 16px;
        font-size: 1.2rem;
    }
}

/* Small laptops (1025px - 1366px) */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .topnav {
        padding: 30px 80px;
        height: auto;
    }

    .topnav .menu-links a {
        font-size: 1.4rem;
        padding: 12px 22px;
    }

    .topnav a.contact-btn {
        padding: 9px 18px;
        font-size: 1.3rem;
    }
    
}

/* Responsive for small screens */

@media screen and (max-width: 818px) {
  .logo {
    font-size: 1.3rem;
  }
  .topnav {
    display: flex;
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    height: auto;
    padding: 10px 20px;
    flex-wrap: wrap;
    position: relative; 
  }

  .topnav .menu-links {
    display: none;
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    height: auto; 
    background-color: #f8f8f8; 
    padding: 10px 0; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
    z-index: 1; 
    flex-direction: column;
    order: 2; 
  }
  
  .topnav .menu-links a {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    padding: 10px 20px;
    text-align: left;
    margin: 0;
  }
  
  .topnav .menu-links a.contact-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    margin: 0;
    text-decoration: none;
    font-size: 1.2rem;
  }

  .topnav .menu-links a:hover {
    background-color: #ddd;
    color: black;
  }

  .topnav .icon {
    display: block;
    font-size: 1.5em;
    cursor: pointer;
    color: #333;
    order: 1;
    z-index: 2;
  }

  /* Show menu when active */
  .topnav.responsive .menu-links {
    display: flex;
  }
}

/* Responsive for very small screens (≤480px) */
@media screen and (max-width: 480px) {
  .logo {
    font-size: 1rem; /* Smaller font size for the logo */
  }
  .topnav {
    padding: 8px 15px; /* Reduced padding for a more compact bar */
  }
  .topnav .icon {
    margin-top: 5px; /* Adjust margin to align icon */
    font-size: 1.2rem; /* Smaller icon size */
  }
  .topnav .menu-links a {
    font-size: 1rem; /* Slightly smaller font for menu links */
    padding: 8px 15px; /* Reduced padding for menu links */
  }
  .topnav .menu-links {
     padding: 5px 0; /* Reduced padding for the menu container */
  }
  .topnav .menu-links .contact-btn{
    background-color: rgb(8, 8, 8) !important;
    color: white !important;
    padding: 10px 15px !important;
    font-size: 1rem !important;
    transition: background-color 0.3s;
  }
}


/*******************Contact Form****************/
/* Modal overlay */
.contact-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

/* Modal content */
.contact-modal-content {
   position: relative; 
  background-color: #111;
  color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}
.contact-modal-content h2 {
    font-size: 1.5rem;   
    padding: 15px;  
}
/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #ff4b2b;
}

/* Reuse contact form CSS from before */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
}

.contact-form button {
  padding: 12px;
  background: black;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ff416c;
}
@media screen and (max-width: 1400px) {
  .contact-modal-content {
    margin: 15% auto; 
  }
}
/* Responsive for small screens */
@media screen and (max-width: 480px) {
  .contact-modal-content {
    margin: 30% auto;     
    padding: 20px;     
    width: 95%;            /* Full width lo close to screen */
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px;      
    font-size: 0.9rem;   
  }

  .contact-form button {
    padding: 10px;
    font-size: 1rem;
  }

  .contact-modal-content h2 {
    font-size: 1.2rem;   
  }
}



/**************Hero************************/

.hero {
  width: 100%;
  height: 180vh; /* full viewport height */
  display: flex;
  justify-content: start;
  align-items: center;
 
  background: linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5)
    ), 
    url('./imgs/bg3.jpg') center/cover no-repeat;
  color: #fff;
  padding: 6rem 80px;
}

.hero-content {
  max-width: 1050px;
}

.hero-content img {
  width: 650px; /* adjust logo size */
  margin-bottom: 100px;
}

.hero-content p {
  color: #FFFFFFBF;
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 100px;
}

/* Tablet Screens */
@media screen and (max-width: 1024px) {
  .hero {
    height: 150vh;
    padding: 4rem 50px;
    justify-content: center;
  }

  .hero-content img {
    width: 500px;
    margin-bottom: 60px;
  }

  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 60px;
  }
}

/* Small Tablets / Large Mobiles */
@media screen and (max-width: 768px) {
  .hero {
    height: 120vh;
    padding: 3rem 30px;
    background-position: left 45% center;
  }

  .hero-content img {
    width: 350px;
    margin-bottom: 40px;
  }

  .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }
}

/* Mobile Screens */
@media screen and (max-width: 480px) {
  .hero {
    height: 100vh;
    width: 100%;
    padding: 2rem 20px;
   /* border: 1px solid magenta;*/
    background-position: 45% 100%;  



  }
  .hero-content{
    width: 100%;

  }
  .hero-content img {

   object-fit: cover;
    margin-bottom: 30px;
    width: 100%;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}


/***********Solutions*****************************************************/
.solutions-section {
  padding: 6rem 80px;
  padding-bottom: 0;
 /* border: 1px solid magenta;*/
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.solutions-section h1 {
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -2%;
  font-weight: 700;
  font-style: Bold;
  margin-bottom: 3rem;
}

/* Grid container */
.solutions-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 2.5rem;
  width: 100%;
}

.solution-card {
 /* background-color: #1a1a1a;  */
  
  overflow: hidden;
/*  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);*/
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
/*  border: 1px solid magenta;*/
}
.img-flip{
    transform: scaleX(-1);
}

.solution-card img {
  width: 100%;
  height: 450px;              /* if you want fixed height */
  border-radius: 25px;
  opacity: 0.65;              /* correct opacity */
  object-fit: cover;          /* avoid distortion */
  margin-bottom: 20px;
}
.solution-card.zoomed-img {
  width: 100%;

 
}
.card-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 2.1rem;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 2.1rem;
  color: #F8F8F8;
}

.card-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.card-content ul li {
  font-size: 24px;
  color: #828282;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 20px;
}

.card-content ul li:before {
  content: '•';
  color: #828282; /* Cyan bullet point color */
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -5px;
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablet (<=1024px) */
@media (max-width: 1024px) {
  .solutions-section {
    padding: 4rem 40px;
  }

  .solutions-section h1 {
    font-size: 2.8rem;
  }

  .solution-card img {
    height: 300px;
  }

  .card-content h3 {
    font-size: 1.8rem;
  }

  .card-content ul li {
    font-size: 1.4rem;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .solutions-section {
    padding: 3rem 20px;
  }

  .solutions-section h1 {
    font-size: 2.5rem;
  }

  .solution-card img {
    height: 250px;
  }

  .card-content h3 {
    font-size: 1.6rem;
    margin-top: 20px;
  }

  .card-content ul li {
    font-size: 1.3rem;
  }
}
@media (max-width: 720px) {
  .solutions-container {
    grid-template-columns: 1fr; /* 🔹single card per row */
  }
    .solution-card img {
    height: 350px;
  }
}

/* Small mobile (<=480px) */
@media (max-width: 480px) {
  .solutions-section {
    padding: 2rem 15px;
    padding-bottom: 0;
  }

  .solutions-section h1 {
    font-size: 1.65rem;
  }

  .card-content{
    padding-bottom: 0;
  /*  border: 1px solid red;*/
  }
  .solution-card img {
    height: 200px;

  }

  .card-content h3 {
    font-size: 1.4rem;
    margin-top: 0px;
  }

  .card-content ul li {
    font-size: 1.1rem;
  }
}


/*********** Who We Serve *****************************************************/
.who-we-serve-section {
    padding: 6rem 80px; 
    color: #fff;
    padding-bottom: 0;
}

/* Text side */
.who-we-serve-content {
    width: 100%;

}

.who-we-serve-content h2 {
    font-size: 48px;
    font-weight: 700;
    font-style: bold;
    line-height: 100%;
    margin-bottom: 20px;
    letter-spacing: -2%;
}

.who-we-serve-content p {
    font-size: 32px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    margin-bottom: 30px;
    color: white;
    width: 65%;
}

.who-we-serve-content h3 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0%;
    border: 1px solid mag;
    margin-bottom: 10px;
}

/* wrapper for ul + img */
.text-img {
    display: flex;
    gap:40px ;
    align-items: center;
    width: 100%;
    margin-top: 0;
    /*border: 1px solid magenta;*/
}

/* ul bullets */
.small-bullets {
    flex: 2;
    margin: 0; /* ADD THIS LINE TO REMOVE ALL DEFAULT MARGINS */
    padding-left: 25px; /* KEEP THIS FOR YOUR INTENDED INDENTATION */
   /* border: 1px solid magenta;    */

    /*border: 1px solid rgb(83, 223, 48);*/
}

.small-bullets li::marker {
    font-size: 0.6em;
    color: #828282;
}

.small-bullets li {
    font-size:  1.65rem;
    color: #828282;
    margin-bottom: 10px;
}

/* image */
.who-we-serve-image {
    flex: 1;
    max-width: 527px;
    opacity: 65%;
    height: 380px;
    border-radius: 25px;
    object-fit: cover;      /* distort kakunda full cover */
    object-position: right;  
    margin: auto;
}

/* Large screens (max-width: 1200px) */
@media screen and (max-width: 1200px) {
  .who-we-serve-section {
    padding: 4rem 60px;
  }

  .who-we-serve-content h2 {
    font-size: 2.5rem;
  }

  .who-we-serve-content p {
    font-size: 1.4rem;
    width: 70%; /* text a bit wider */
  }

  .text-img {
    width: 100%;
    gap: 20px;
  }

  .small-bullets {
    margin-right: 20px;
  }

  .who-we-serve-image {
    max-width: 380px;
    height: 380px;
  }
}

/* Tablets (max-width: 992px) */
@media screen and (max-width: 992px) {
  .who-we-serve-section {
    padding: 3rem 40px;
  }

  .who-we-serve-content p {
    width: 100%; /* occupy full width */
    font-size: 1.3rem;
  }

  .text-img {
    flex-direction: column; /* stack text & img */
    align-items: flex-start;
    gap: 30px;
  }

  .small-bullets {
    margin-right: 0;
    padding-left: 20px;
  }

  .who-we-serve-image {
    max-width: 100%;
      opacity: 65%;
    height: auto;
  }
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
  .who-we-serve-section {
    padding: 1.5rem 20px;
    padding-top: 0;
  }

  .who-we-serve-content h2 {
    font-size: 2rem;
  }

  .who-we-serve-content h3 {
    font-size: 1.5rem;
  }

  .who-we-serve-content p {
    font-size: 1.2rem;
  }

  .small-bullets li {
    font-size: 1.3rem;
  }
  .who-we-serve-image {

    object-fit: cover;      /* distort kakunda full cover */
    object-position: left;  /* img ni left side nundi align cheyyali */
}

}

/* Extra small mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .who-we-serve-section {
    padding: 2rem 15px;
    padding-top: 25px !important;
  }

  .who-we-serve-content h2 {
    font-size: 1.54rem;
  }

  .who-we-serve-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .who-we-serve-content p {
    font-size: 1rem;
  }

  .small-bullets li {
    font-size: 1rem;
  }
    .who-we-serve-image {
      padding: 1.5px;
      margin: auto;
}
}


/*********** About Us Section *****************************************************/
.about-section {
    padding: 6rem 80px;
    background: #000;
    color: #fff;
    
}
.about-section h2{
  font-size: 48px;
  font-weight: 700;
  font-style: bold;
  line-height: 100%;
  letter-spacing: -2%;
  margin-bottom: 20px;
}
.about-container {
    display: flex;
    flex-direction: column; /* always stacked (image top, text bottom) */
    align-items: start;
    
    gap: 30px;
}
.about-image{
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 80px;
      
}

.about-image img {
    width: 100%;
    max-width: 754px;
    border-radius: 15px;
    object-fit: cover;
    margin: auto;
}

/* Text */
.about-content {
    width: 90%;
}



.about-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #828282;
}
/*********** Responsive *****************************************************/

/* Tablets (≤1024px) */
@media screen and (max-width: 1024px) {
  .about-section {
    padding: 4rem 40px;
  }

  .about-content h2 {
    font-size: 2.5rem;
  }
  .about-content {
    width: 100%;
}

  .about-content p {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0%;
  }
}

/* Mobiles (≤768px) */
@media screen and (max-width: 768px) {
  .about-section {
    padding: 3rem 30px;
    padding-bottom: 2px;
  }
  .about-section h2{
    font-size: 2rem;
    padding-bottom: 20px;
  }
  .about-content {
    width: 100%;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .about-image {
    margin-bottom: 40px;

  }
}

/* Small Mobiles (≤480px) */
@media screen and (max-width: 480px) {
  .about-section {
    padding: 2rem 20px;
  }

  .about-section h2 {
    font-size: 1.65rem;
    margin-bottom: 12px;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .about-image{
       /* padding:4px;*/
  }

}

/******************************** Insights Section ************************************/
.insights-section {
  background: #000;
  color: #fff;
  padding: 3rem 80px;
  padding-top: 0;
}

.insights-container {
  max-width: 1200px;
  margin: 0 ;
 /* border: 1px solid magenta;*/
}

.insights-container h2 {
  text-align: left;
  font-size: 3rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -2%;
  margin-bottom: 40px;
}

.insights-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: #d3d3d3;
  padding-left: 40px;
  margin-bottom: 40px;
}

/* Cards */
.insights-cards {
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
  gap: 30px;
  margin-bottom: 80px;
}

.insight-card {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  flex: 1;
  min-width: 100px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

}

.insight-card p {
  font-size: 1.5rem;
  line-height: 1.5;
}

/* Footer */
.insights-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.insights-footer p {
  font-size: 35px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -2%;
  flex: 1;
}

.contact-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 20px 32px;
  font-size: 1.5rem;
  border-radius: 8px;
  letter-spacing: 0%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #f1f1f1;
}


/* ---------------- RESPONSIVE ---------------- */

/* Medium screens (≤1200px) */
@media screen and (max-width: 1200px) {
  .insights-section {
    padding: 3rem 40px;
  }
  .insight-card {
    padding: 30px;
  }
}

/* Tablets & Mobiles (≤992px) */
@media screen and (max-width: 992px) {
  .insights-cards {
    flex-direction: column;
  }
  .insight-card {
    min-width: 100%;
    padding: 25px;
  }
  .insights-footer {
    flex-direction: column;
    text-align: center;
  }
  .insights-footer p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width:768px) {
    
    .insights-section {

    padding:1.3rem 40px;
  
  }
  .insights-container h2{
    font-size: 2rem;
  }
    .contact-btn {
      padding: 14px;
      width: 60%;
    font-size: 1.25rem;
  }
}
/* Tiny mobiles (≤480px) */
@media screen and (max-width: 480px) {
  .insights-section {
    padding: 1rem 20px;
    padding-top: 0;
  }
  .insights-container h2{
    font-size: 1.65rem;
  }
  .insights-subtitle{
    font-size: 1.2rem;
  }
  .insight-card {
    border-radius: 6px;
    padding: 20px;

  }
  .insights-cards{

    margin-bottom: 15px;
   /* border: 1px solid magenta;*/
  }
  .insights-footer p{
    font-size: 1rem;
    text-align: left;
  }
  .insight-card p {
    font-size: 1rem;
  }
  .contact-btn {
    width: 100%;
    padding: 8px;
    font-size: 1.1rem;
    border-radius: 6px;
  }
}


/****************************** Footer *********************************/
.footer {
  background: #fff;
  color: #000;
  padding: 40px 80px 20px;
  border-top: 1px solid #eaeaea;
  font-family: 'Inria Sans', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-left h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
}

.footer-right {
  display: flex;
  gap: 60px;
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}
.queries{
  font-weight: 600;
}

.footer-column ul li a:hover {
  color: #666;
}

.footer-bottom {
  border-top: 1px solid #f0f0f0;
  text-align: center;
  padding-top: 15px;
  font-size: 1.2rem;
  font-weight: 500;
  font-style: Medium;
  color: black;
}

/* ---------------- Responsive ---------------- */

/* Medium screens (≤1200px) */
@media screen and (max-width: 1200px) {
  .footer {
    padding: 30px 50px 15px;
  }

  .footer-left h3 {
    font-size: 1.4rem;
  }

  .footer-right {
    gap: 40px;
  }

  .footer-column h4 {
    font-size: 1.1rem;
  }

  .footer-column ul li {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 1rem;
  }
}

/* Tablets & Mobiles (≤992px) */
@media screen and (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-right {
    flex-direction: column;
    gap: 25px;
  }

  .footer-left h3 {
    font-size: 1.3rem;
  }

  .footer-bottom {
    font-size: 0.95rem;
  }
}

/* Tiny Mobiles (≤480px) */
@media screen and (max-width: 480px) {
  .footer {
    padding: 25px 20px 15px;
  }

  .footer-left h3 {
    font-size: 1.2rem;
  }

  .footer-column h4 {
    font-size: 1rem;
  }

  .footer-column ul li {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* html {
  scroll-behavior:smooth;
} */
section {
  scroll-margin-top: 50px; /* nav-bar height */
}
