* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
      background-image: url(../assets/ten.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: center;
      color: #333;
      line-height: 1.6;
  }
  .header {
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(40px);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 15px 20px ;
      position: fixed;
      width: 100%;
      height: 80px;
      top: 0;
      left: 0;
      z-index: 1000;
  
  }
  
  /* Navigation container */
  .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
  }
  .nav-container a {
      text-decoration: none;
  }
  
  /* Logo */
  .logo{
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .logo h2 {
      color:#F8F8F8;
      font-family: poppins;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 3%;    
  }
  .logo img {
      max-width: 55px;
      height: 56px;
  }
  
  /* Navigation Links */
  .nav-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      color:#F8F8F8;
  }
  
  .nav-links a {
      text-decoration: none;
      color: #F8F8F8;
      font-weight: 400;
      font-family: inter;
      font-size: 16px;
      transition: color 0.3s;
  }
  
  .nav-links a:hover {
      color: #E1BA15;
  }
  
  /* Contact Button */
  .nav-container button {
      background: #E1BA15;
      color:#090909;
      width: 167px;
      padding: 10px 15px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
  }
  
  .nav-container button a {
      color:#090909;
      font-size: 14px;
      font-family: poppins;
      font-weight: 600;
      line-height: 14px;
      text-align: center;
      text-decoration: none;
  }
  
  /* Hamburger Menu (Hidden by default) */
  .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
  }
  
  .menu-toggle div {
      width: 30px;
      height: 3px;
      background: #333;
      margin: 5px 0;
      transition: 0.3s;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
      .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 60px;
          left: 0;
          width: 100%;
          text-align: center;
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
          padding: 15px 0;
      }
  
      .nav-links a {
          display: block;
          padding: 10px;
          color: #070707; 
      }
  
      .menu-toggle {
          display: flex;
          color: #E1BA15;
      }
  
      /* When menu is active */
      .nav-links.active {
          display: flex;
          background-color: #F8F8F8;
      }
      button{
          display: none;
      }
  }
  
  /* Blog container */
  /* Blog container */
  .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 150px auto;
  }
  
  /* Blog card */
  .blog-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(40px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay);
    display: grid;
    grid-template-rows: auto 1fr;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.blog-card img,
.blog-card .blog-content {
    pointer-events: none;
}

.blog-card .read-more {
    pointer-events: auto;
}



.blog-card .read-more {
    pointer-events: auto; 
}

  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  /* Blog content */
  .blog-content {
    padding: 20px;
    display: grid; 
    grid-template-areas: 
      "title"
      "date"
      "text"
      "button"; 
    gap: 10px; 
    align-content: start;
  }
  
  .blog-content h2 {
    grid-area: title; 
    font-size: 1.5em;
    margin-bottom: 0;
    color: #E1BA15;
  }
  
  .date {
    grid-area: date; 
    font-size: 0.9em;
    color: #777;
  }
  
  .blog-content p {
    grid-area: text; 
    font-size: 1em;
    color: #aaaaaa;
    margin-bottom: 0;
  }
  
  .btn-read-more-1, 
  .btn-read-more-2, 
  .btn-read-more-3, 
  .btn-read-more-4, 
  .btn-read-more-5 {
    grid-area: button; 
    margin-top: auto; 
  }
  
  .read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #E1BA15;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
    text-align: right;
    
  }
  
  .read-more:hover {
    background: #ffde4a;
    color: black;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .blog-container {
      grid-template-columns: 1fr;
      padding: 20px;
    }
    .blog-card img {
      height: 150px;
    }
    .blog-content h2 {
      font-size: 1.3em;
    }
    .blog-content p {
      font-size: 0.95em;
    }
  }
  
  @media (max-width: 480px) {
    .blog-container {
      padding: 15px;
    }
    .blog-card img {
      height: 120px;
    }
    .blog-content {
      padding: 15px;
    }
    .blog-content h2 {
      font-size: 1.2em;
    }
    .blog-content p {
      font-size: 0.9em;
    }
    .read-more {
      padding: 8px 15px;
    }
  }
  .custom-footer {
      background-color: black;
      color: white;
      text-align: center;
      
  }
  
  .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 1400px;
      margin: auto;
      flex-wrap: wrap;
      padding: 40px;
  }
  .footer-container h3{
      margin-bottom: 20px;    
      color:#F8F8F8;
      font-family: Poppins;
      font-weight: 600;
      font-size: 18px;
      line-height: 6px;
  }
  .footer-logo{
      min-width: 45%;
  
  }
  .footer-logo img{
      width: 11rem;
      height: 11rem;
  }
  
  .company,
  .reach-us {
      flex: 1;
      min-width: 200px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: start;
  }
  .reach-us .info-item {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
  }
  
  .company a {
      font-family: Poppins;
      font-weight: 400;
      font-size: 1rem;
      line-height: 24px;
      display: block;
      color: #F8F8F8;
      text-decoration: none;
  }
  
  /* Responsive*/
  @media (max-width: 768px) {
      .custom-container {
          flex-direction: column;
          align-items: center;
          text-align: center;
          
      }
  
      .input-group {
          flex-direction: column;
      }
  
      button {
          width: 100%;
      }
  
      .footer-container {
          flex-direction: column;
          text-align: center;
      
      }
      .footer-container{
          gap: 20px;
      }
      
      .footer-container h3{
          text-align: center;
          margin-block: 20px;
          color: #E1BA15;
      }
  
  
  }
  
  