@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Jost', sans-serif;
}

:root {
    --text-color: #fff;
    --bg-color: #000;
    --main-color: #FF914D;
    --h1-font: 5rem;
    --h2-font: 3rem;
    --p-font: 1rem;
}

body{
    background: #f9f9f9;
}
/* navbar*/
.navbar .btn {
    background-color: #ff6347; /* Coral color for the button */
}
/* About Start*/
.about{
    margin-top: 50px;
    background: #f9f9f9;
  }
  .about .card{
    border-radius: 10px;
  }
  .about .card img{
    border-radius: 10px;
  }
  .about h2{
    font-weight: 600;
    letter-spacing: 1px;
  }
  .about p{
    font-size: 500;
  }
  #about-btn{
    width: 150px;
    height: 38px;
    border: none;
    border-radius: 5px;
    background: #ffa500;
    color: white;
    letter-spacing: 2px;
    font-weight: 550;
    transition: 0.5s ease;
    cursor: pointer;
  }
  #about-btn:hover{
    width: 170px;
  }
  .main-txt h1{
    text-align: center;

  }

  /* About 2*/
  #review{
    width: 170px;
    height: 38px;
    border: none;
    border-radius: 5px;
    background: #ffa500;
    color: white;
    letter-spacing: 2px;
    font-weight: 550;
    transition: 0.5s ease;
    cursor: pointer;
  }
  #review:hover{
    width: 190px;
  }
/*footer*/
.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    color: #666;
  }
  .footer .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer .footer-column ul li a {
    color: #666;
    text-decoration: none;
  }
  
  .footer .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  .footer .footer-column h6 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: black;
  }