:root {
    --primary-color: #ff0000; /* Red from logo */
    --secondary-color: #00ffff; /* Cyan from logo */
    --accent-color: #ccff00; /* Neon yellow/green from logo */
    --dark-color: #000000; /* Black from logo */
    --gray-color: #808080; /* Gray from logo */
    --white: #ffffff;
    --black: #000000;
    --gray: #f8f9fa;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Language Toggle */
  .language-toggle {
    display: flex;
    margin-right: 20px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    overflow: hidden;
  }
  
  .language-toggle button {
    border: none;
    background: none;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
  }
  
  .language-toggle button.active {
    background-color: var(--primary-color);
  }
  
  /* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--gray-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 10px 0; /* Reduced padding to accommodate larger logo */
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 80px; /* Increased from 60px */
    width: auto;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 30px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
  }
  
  .nav-links a:hover {
    color: var(--accent-color);
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 5px 0;
    transition: var(--transition);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    padding: 150px 0 100px;
    background: url("hero.jpg")
      no-repeat center center;
    background-size: cover;
    color: var(--white);
    text-align: center;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6))
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
  }
  
  .btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
  }
  
  .btn:hover {
    background-color: transparent;
    color: var(--accent-color);
  }
  
  /* Section Styles */
  section {
    padding: 80px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
  }
  
  /* About Section - Redesigned */
  .about {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
  }
  
  .about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-lPqtBOJCmdzIZ0c39nILAgJeLLSoJg.png")
      no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
  }
  
  .about-content {
    position: relative;
    z-index: 1;
  }
  
  .about-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white),
      linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  
  .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .about-card .about-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
  }
  
  .about-card .about-info {
    flex: 1;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .about-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .about-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  }
  
  .about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .about-item .about-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
  }
  
  .about-item:hover .about-icon {
    transform: scale(1.2);
  }
  
  .about-item h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  .about-item p {
    color: var(--black);
  }
  
  /* Services Section */
  .services {
    background-color: var(--gray);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
    animation: glowAccent 2s infinite;
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .service-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--primary-color);
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
  }
  
  /* Tools Section */
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .tool-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid transparent;
  }
  
  .tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.2);
  }
  
  .tool-image {
    height: 200px;
    overflow: hidden;
  }
  
  .tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .tool-card:hover .tool-image img {
    transform: scale(1.1);
  }
  
  .tool-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-color);
  }
  
  /* Contact Section */
  .contact {
    background-color: var(--gray);
  }
  
  .contact-content {
    display: flex;
    gap: 50px;
  }
  
  .contact-info,
  .contact-form {
    flex: 1;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  
  .contact-item .contact-icon {
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
  }
  
  .contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
  }
  
  .contact-item h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 5px rgba(204, 255, 0, 0.3);
  }
  
  .contact-form .btn {
    background-color: var(--accent-color);
    color: var(--black);
    border: 2px solid var(--accent-color);
  }
  
  .contact-form .btn:hover {
    background-color: transparent;
    color: var(--accent-color);
  }
  
  /* Footer */
  footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 40px 0;
  }
  
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer-logo img {
    height: 50px;
    width: auto;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    animation: fadeIn 1s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Adjust nav layout */
  nav {
    display: flex;
    align-items: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .contact-content {
      flex-direction: column;
    }
  
    .about-card {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 100px; /* Adjusted for larger logo */
      left: -100%;
      width: 100%;
      height: calc(100vh - 100px);
      background-color: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      align-items: center;
      padding-top: 50px;
      transition: var(--transition);
    }
  
    .nav-links.active {
      left: 0;
    }
  
    .nav-links li {
      margin: 15px 0;
    }
  
    nav {
      position: relative;
    }
  
    .language-toggle {
      position: absolute;
      right: 50px; /* Position to the left of hamburger */
      top: 50%;
      transform: translateY(-50%);
    }
  
    .hamburger {
      display: block;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
    }
  
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
  
    .nav-links a {
      color: var(--white);
    }
  
    .nav-links a:hover {
      color: var(--accent-color);
    }
  
    .hamburger span {
      background-color: var(--accent-color);
    }
  }
  
  @media (max-width: 576px) {
    .language-toggle {
      right: 45px;
    }
  
    .language-toggle button {
      padding: 4px 8px;
      font-size: 0.9rem;
    }
  
    .logo img {
      height: 70px; /* Slightly smaller on very small screens */
    }
  
    .hero-content h1 {
      font-size: 1.8rem;
    }
  
    .section-header h2 {
      font-size: 1.8rem;
    }
  
    .services-grid,
    .tools-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
  
    .language-toggle {
      margin-right: 45px;
    }
  
    .language-toggle button {
      padding: 4px 8px;
      font-size: 0.9rem;
    }
  }
  
  /* Add some subtle animations with the brand colors */
  @keyframes glowAccent {
    0% {
      box-shadow: 0 0 5px var(--accent-color);
    }
    50% {
      box-shadow: 0 0 20px var(--accent-color);
    }
    100% {
      box-shadow: 0 0 5px var(--accent-color);
    }
  }
  
  