
body {
    background-color: #111;
    color: white;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
  }
  

  /* Navbar Styles */
  .nav {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease;
    z-index: 1000;
  }

  
  .container
  {
    width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .logo
  {
    width:300px;
    
  }
  .nav .logo a {
    text-decoration: none;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .nav .logo a:hover {
    color: #00E676;
  }
  
  .nav .main_list {
   
    display: flex;
    align-items: center;
    margin-right: 3rem;
  }
  
  .nav .main_list ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav .main_list ul li {
    margin: 0 1.5rem;
  }
  
  .nav .main_list ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.3s ease;
  }
  
  .nav .main_list ul li a:hover {
    color: #00E676;
  }
  
  /* Responsive Navbar */
  .navTrigger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
  }
  
  .navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    display: block;
    width: 100%;
    height: 4px;
    transition: all 0.4s ease;
  }
  
  .navTrigger i:nth-child(2) {
    margin: 5px 0;
  }
  
  .navTrigger.active i:nth-child(1) {
    transform: translateY(9px) rotate(135deg);
  }
  
  .navTrigger.active i:nth-child(2) {
    opacity: 0;
  }
  
  .navTrigger.active i:nth-child(3) {
    transform: translateY(-9px) rotate(-135deg);
  }
  
  /* Mobile View */
  @media screen and (max-width: 1100px) {
    .navTrigger {
      display: block;
    }
    
    .nav .main_list {
      position: absolute;
      top: 0px;
      right: 0;
      width: 100%;
      height: 100vh;
      background-color: #111;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform 0.4s ease;
    }
    
    .nav .main_list ul {
      flex-direction: column;
      width: 100%;
    }
    
    .nav .main_list ul li {
      margin: 20px 0;
    }
    
    .nav .main_list ul li a {
      font-size: 3rem;
      display: block;
      text-align: center;
    }
    
    .nav .main_list.show_list {
      transform: translateX(0);
    }
  }
  
  .main_list {
    display: flex; /* Make it a flex container */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  
  .main_list.show_list {
    opacity: 1;
    /* It will automatically be visible when the show_list class is added */
  }
  
  @media screen and (max-width:585px)
  
  {
   .logo
   {
    width: 200px !important;
   }
  
   .nav .logo a
   {
    font-size:1.5rem
   }
  

  
  
    .navTrigger
    {
      margin-right: 2rem;
    }



  }
  

  




  /*Navbar end*/
  



  /* About Section */
.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 3rem 1.5rem;
  }
  
  .about-content {
    max-width: 850px;
    text-align: center;
    background: linear-gradient(135deg, rgba(50, 0, 0, 0.9), rgba(20, 20, 20, 0.95));
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
  }
  
  .about-content:hover {
    transform: scale(1.02);
  }
  
  /* Heading Styles */
  .about-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #FF3D00;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 0px 15px rgba(255, 0, 0, 0.8);
  }
  
  /* Paragraph Styles */
  .about-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #eee;
  }
  
  /* Link Styles */
  .about-content a {
    color: #FF3D00;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  
  .about-content a:hover {
    color: #ff1100;
    text-shadow: 0px 0px 10px rgba(255, 0, 0, 0.8);
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .about-content {
      padding: 1.8rem;
    }
  
    .about-content h1 {
      font-size: 2.2rem;
    }
  
    .about-content p {
      font-size: 1.1rem;
    }
  
    .about-content a {
      font-size: 1.1rem;
    }
  }




  