/* Global Styles */
:root {
    --primary: #0a0a0a;
    --secondary: #1a1a1a;
    --accent: rgba(0, 119, 255, 0.6);
    --solid-accent: #0077ff;
    --text: #f5f5f5;
    --light-text: #aaaaaa;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
  }
  
  .logoimg {
    width: 350px;
    height: auto;
  }
  
  .navbar { 
    background-color: transparent;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 20px;
}
.navbar.logo {
    font-size: 40px;
    font-weight: bold;
}
.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li {
    margin: 0 10px;
}
.nav-links a {
    text-decoration: none;
    color: white;
    padding: 10px;
}
.nav-links a:hover {
    background-color: #575757;
    border-radius: 5px;
}
/* Hamburger Icon */
.menu-icon {
    font-size: 30px;
    cursor: pointer;
    display: none; /* By default hidden */
}
/* Mobile Menu (Hidden Initially) */
.mobile-menu {
    border: 2px solid rgba(0, 119, 255, 0.6);
    border-radius: 10px;
    display: none;
    position: absolute;
    top: 80px;
    right: 10px;
    background-color: #333;
    width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
.mobile-menu a {
    border-radius:10px;
    background-color: #000000;
    display: block;
    color: white;
    padding: 12px;
    text-decoration: none;
}
.mobile-menu a:hover {
    background-color: #575757;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-icon {
        display: block;
    }
}
/* Close Button */
.close-btn {
display: block;
text-align: right;
padding: 10px;
cursor: pointer;
font-size: 20px;
color: white;
}
.close-btn:hover {
color: #ff4d4d;
}
  
  /* Hero Section */
  .hero {
    height: auto;
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: -80%;
    right: -0%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, var(--accent) 0%, rgba(0,119,255,0) 70%);
    z-index: -1;
  }
  
  .hero h1 {
    color: white;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: 0px;
    padding: 0px 50px;
  }
  
  .hero h1 span {
    color: var(--solid-accent);
  }
  
  .hero p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 500px;
    margin-bottom: 0px;
    line-height: 1.6;
    padding: 50px;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    margin: auto;
    margin-bottom: 40px;
  }
  
  .primary-btn {
    background-color: var(--solid-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 119, 255, 0.3);
  }
  
  /* Media Queries for Mobile Compatibility */
  @media screen and (max-width: 768px) {
  
    .hero h1 {
      font-size: 2.5rem; /* Reduced font size for small screens */
    }
  
    .hero p {
      font-size: 1rem; /* Adjusted font size for small screens */
    }
  
  }
  

  .features{
    margin:20px;
    background-color: #000000;
    border:2px solid #000000;
    border-radius: 10px;
    width:100%;
    height:auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;

  }
  .ft{
    background-color: black;
    border:4px solid rgba(0, 119, 255, 0.6);
    border-radius: 20px;
    width:330px;
    height:100px;
    margin: 10px;
    margin-right: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ftimg{
    margin:10px;
    background-color: rgb(0, 0, 0);
    width: 70px;
    height: 70px;
    border-radius: 100%;
    overflow: hidden;
  }
  .ftimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ftdt{
    font-weight: bold;
    color: white;
    padding: 10px;
    text-align: center;
  }

  .crtwl{
    margin: 20px 50px;
    color:#0077ff;
    font-size: 35px;
  }
  @media screen and (max-width: 768px) {
    .crtwl{
        font-size: 20px;
    }
  }

  .foot{
    margin:30px;
    margin-top: 50px;
    padding: 20px;
    background-color: #000000;
    width:auto;
    height: 150px;
    color:rgba(0, 119, 255, 0.6)
  }
  .foot>h2{
    color:white;
  }
