
/* General Styling */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-link {
  text-decoration: none;
  color: inherit; /* Keeps same text color */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #d0d0d0;
    background-color: #000000;
}
.cta-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #717171;}

    /* Navigation Styling */
    .navbar {
      background-color: #191919;
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 10;
    }
    
    .navbar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 20px;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    
    .nav-links li {
      margin-left: 30px;
    }
    
    .nav-links li a {
      text-decoration: none;
      color: #d0d0d0;
      font-weight: 500;
      font-size: 1rem;
      transition: color 0.3s;
    }
    
    .nav-links li a:hover {
      color: #ffffff;
    }
    
    /* Hamburger styles */
    .hamburger {
      display: none;
      font-size: 24px;
      background-color: #2a2a2a;
      border: 1px solid #444;
      padding: 10px 15px;
      color: #fff;
      border-radius: 5px;
      cursor: pointer;
    }
    
    /* Dropdown Styles */
    .dropdown {
      position: relative;
    }
    
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: -75%;
      background-color: #191919;
      padding: 10px 0;
      display: none;
      flex-direction: column;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      min-width: 180px;
      z-index: 999;
    }
    
    .dropdown-menu li {
      margin: 0;
    }
    
    .nav-links,
    .dropdown-menu {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .dropdown-menu li a {
      padding: 10px 20px;
      display: block;
      color: #d0d0d0;
      text-decoration: none;
    }
    
    .dropdown-menu li a:hover {
      background-color: #2a2a2a;
      color: #fff;
    }
    
    .show-dropdown {
      display: flex;
      flex-direction: column;
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
    
      .nav-menu {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        position: absolute;
        width: 100%;
        background-color: #191919;
        top: 100%;
        left: 0;
        border-top: 1px solid #444;
        z-index: 9;
        transition: opacity 0.3s ease, transform 0.3s ease;
      }
    
      .nav-menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
    
      .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 20px;
      }
    
      .nav-links li {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        margin: 10px 0;
      }
    
      .nav-menu.active .nav-links li {
        opacity: 1;
        transform: translateY(0);
      }
    
      /* Staggered animation delays */
      .nav-menu.active .nav-links li:nth-child(1) { transition-delay: 0.1s; }
      .nav-menu.active .nav-links li:nth-child(2) { transition-delay: 0.2s; }
      .nav-menu.active .nav-links li:nth-child(3) { transition-delay: 0.3s; }
      .nav-menu.active .nav-links li:nth-child(4) { transition-delay: 0.4s; }
      .nav-menu.active .nav-links li:nth-child(5) { transition-delay: 0.5s; }
      .nav-menu.active .nav-links li:nth-child(6) { transition-delay: 0.6s; }
      .nav-menu.active .nav-links li:nth-child(7) { transition-delay: 0.7s; }
      .nav-menu.active .nav-links li:nth-child(8) { transition-delay: 0.8s; }
      .nav-menu.active .nav-links li:nth-child(9) { transition-delay: 0.9s; }
    }
    
  /* Logo Styling */
  .logo-title {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
  }
  
  /* Logo Animation */
  body.home-page .logo {
    animation: rollIn 3s ease-out forwards;
  }
  
  @keyframes rollIn {
    0% {
      transform: translateX(-200%) rotate(0deg);
    }
    50% {
      transform: translateX(10%) rotate(360deg);
    }
    100% {
      transform: translateX(0) rotate(360deg);
    }
  }
  
  
/* Sizing */
h1 {
    font-size: px;
    margin: 0;
}

/* Sizing */
p {
  font-size: 18px;
  margin: 0;
}


/* Hero Section */
.hero {
    padding: 5vh;
    padding-top: 150px;
    margin-bottom: -50px;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d0d0d0;
    text-align: center;
}

.wrapper {
    height:20vh;
    display: grid;
    place-items: center;
}

.typing-demo {
    margin-bottom: -10px;
    width: 12ch;
    animation: typing 1s steps(12), blink .50s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace;
    font-size: 2.5em;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 8;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* ========== Layout Basics ========== */
.container {
    width: 100%;
}

.content-container {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    position: relative;
    z-index: 1;
}

.content-container::before,
.content-container::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 5px;
    background-color: #6c6c6c;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.content-container::before { top: 0; }
.content-container::after { bottom: 0; }

.content-item {
    width: 100%;
    padding: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vertical-line {
    width: 10px;
    background-color: #6c6c6c;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    margin: 1px;
    border-radius: 1px;
}

/* ========== Box Styling ========== */
.box {
    background-color: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 1px 75px rgba(255, 255, 255, 0.55);
    width: 75%;
    transition: transform 0.5s ease, background-color 0.3s ease, opacity 0.5s ease;
    position: relative;
    cursor: pointer;
    perspective: 1000px;
    margin-top: 20px;
}

.box:hover {
    transform: scale(1.2);
    background-color: #717171;
}

.box-back {
    position: absolute;
    inset: 0;
    background-color: #333;
    color: #fff;
    opacity: 0;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 20px;
    text-align: center;
}

.box:hover .box-back {
    opacity: 1;
    transform: rotateY(0deg);
}

/* ========== Image Containers ========== */
.image-container1,
.image-container2,
.image-container3 {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
    border-radius: 0%;
}

.image-container1 {
    background-image: url('logo1white.png');
}
.image-container2 {
    background-image: url('logo2white.png');
}
.image-container3 {
    background-image: url('logo3white.png');
}

.box1:hover .image-container1 {
    background-image: url('logo1black.png');
}
.box2:hover .image-container2 {
    background-image: url('logo2black.png');
}
.box3:hover .image-container3 {
    background-image: url('logo3black.png');
}

/* ========== Table Styling ========== */
.hidden-table {
    display: none;
}

table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 1px 75px rgba(205, 205, 205, 0.55);
    overflow: hidden;
}

th, td {
    padding: 13px;
    text-align: center;
    color: #d0d0d0;
}

tr:hover {
    background-color: #717171;
    transition: background-color 0.5s ease;
}

td:first-child {
    font-weight: bold;
}

/* ========== Table Overlay ========== */
.table-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.table-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    max-width: 90%;
    overflow-x: auto;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
}

.open-table-btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
}


.product h2 {
    font-size: 2.3rem;
    text-align: center;
    padding:50px
  }

/* Circles Container */
.circles-container {
    display: flex;
    padding-bottom: 50px;
    justify-content: center;
    gap: 50px; 
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Circle Styling */


  .scroll-animate {
    opacity: 0;
    transform: translateY(30px) scale(0.35); /* start slightly smaller */
    transition: 
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .scroll-animate.visible {
    opacity: 1;
    transform: translateY(0) scale(1); /* scale up to normal */
  }




.circle {
    background-color: #1a1a1a;
    padding: 125px;
    border-radius: 50%;
    box-shadow: 0 1px 75px rgba(255, 255, 255, 0.55);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Circle Text Styling */
.circle h3 {
    color: #ffffff;
    margin: 0;
    text-align: center;
}

/* Arrow Styling */
.arrow {
    font-size: 45px; 
    color: #ffffff; 
    line-height: 250px; 



}/* FAQ Section Styling */
.faq {
    padding: 5px 80px;
}

.faq-container {
    max-width: 10000px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 8px;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 1px;
    font-size: 30px;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    height: 55px;
    padding: 10px;
    background-color: #212121;
    color: rgb(245, 245, 245);
    text-align: left;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 30px; /* Rounded corners to match circle style */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #5b5b5b;
    border-radius: 20px;
    margin-top: 10px;
}

.faq-answer p {
    margin: 0;
    font-size: 17px;
    color: #000000;
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(180deg);
}

.faq-question:hover {
    background-color: #5b5b5b}

    /* Footer */
    .footer {
        background-color: #333;
        color: white;
        padding: 50px 0;
    }
    
    .footer-container {
        display: flex;
        justify-content: space-between;
        padding: 0 40px;
    }
    
    .footer-links ul, .footer-social ul {
        list-style: none;
    }
    
    .footer-links ul li, .footer-social ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a, .footer-social ul li a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s;
    }
    
    .footer-links ul li a:hover, .footer-social ul li a:hover {
        color: #a1a1a1;
    }
    
    .footer-copyright {
        text-align: center;
        font-size: 1.1rem;
        color: #ffffff;
    }


    @media (max-width: 768px) {
        /* Hero Section */
        .hero {
          flex-direction: column;
          padding: 80px 20px 20px 20px;
        }
      
        .typing-demo {
          font-size: 1.8em;
          text-align: center;
        }
      
        /* Box Layout */
        .box {
          width: 90%;
          padding: 30px;
        }
      
        /* Content Section */
        .content-container {
          flex-direction: column;
          padding: 10px;
        }
      
        .content-item {
          padding: 20px;
        }
      
        /* Circles */
        .circles-container {
          flex-direction: column;
          align-items: center;
        }
      
        .circle {
          width: 60%;
          height: 50%;
          padding: 25%;
          margin-bottom: -20px;
        }
      
        /* Table Overlay */
        .table-content {
          width: 95%;
          padding: 15px;
        }
      
        /* FAQ */
        .faq {
          padding: 10px;
        }
      
        .faq-question {
          font-size: 16px;
        }
      
        .faq-answer p {
          font-size: 15px;
        }
      
        /* Footer */
        .footer-container {
          flex-direction: column;
          text-align: center;
          gap: 20px;
        }
      
        .footer-links ul, .footer-social ul {
          padding: 0;
        }
    }

    @media (max-width: 768px) {
        .circles-container {
          flex-direction: column; /* Stack vertically */
          gap: 50px; /* Adjust space between items */
        }
      
        .arrow {
            transform: rotate(90deg); /* Rotate arrow to point down */
            line-height: normal; /* Reset line-height if needed */
          }
        }
        