
/* 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;}

    .btn {
        padding: 15px 30px;
        font-size: 1.2rem;
        background-color: #2c2c2c;
        color: white;
        text-decoration: none;
        border-radius: 25px;
        transition: background-color 0.3s ease;
        border: none; 
        cursor: pointer;
        margin: 15px; 
    }
    
    .btn-primary {
        background-color: #2c2c2c; 
    }
    
    .btn-primary:hover {
        background-color: #717171; 
    }
    
    .btn-secondary {
        background-color: #2c2c2c; 
    }
    
    .btn-secondary: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: 17px;
    margin: 0;
}


/* Hero Section */
.hero {
padding-top: -100px;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#d0d0d0;
    text-align: center;
}
.wrapper {
    height: 75vh;
    display: grid;
    place-items: center;
  }
  .typing-demo {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers both lines horizontally */
    gap: 10px;
    text-align: center;
    margin-bottom: -475px;
}

.line {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #fff; /* Cursor */
    width: fit-content;
    font-family: monospace;
    font-size: 2.5em;
}

.line1 {
    animation: typing1 2.5s steps(30, end), blink-caret 0.75s step-end infinite, cursor-hide 2.5s forwards;
}

.line2 {
    animation: typing2 1s steps(10, end) 2s forwards, blink-caret-end 0.75s step-end infinite;
    width: 0;
    opacity: 0;
    font-size: 1.5em;
}

/* Typing animations */
@keyframes typing1 {
    from { width: 0 }
    to { width: 100% }
}

@keyframes typing2 {
    0% { width: 0; opacity: 1; }
    100% { width: 11ch; opacity: 1; } 
}

/* Cursor blink animations */
@keyframes blink-caret {
    0%, 100% { border-color: transparent; }
    50% { border-color: #fff; }
}

@keyframes blink-caret-end {
    0%, 100% { border-color: transparent; }
    50% { border-color: #fff; }
}

/* Hide the cursor after line 1 finishes typing */
@keyframes cursor-hide {
    0% { border-color: #fff; }
    100% { border-color: transparent; } /* Hide cursor */
}


/* Scroll down text and arrow */
.scroll-down {
    margin-top: 30px;
    margin-bottom: 250px;
    text-align: center;
    color: white;
    font-size: 1rem;
    animation: fadeIn 5s ease-in;
  }
  
  .scroll-down .arrow {
    font-size: 2rem;
    margin-top: 10px;
    animation: bounce 3s infinite;
  }
  
  /* Bouncing arrow animation */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
  }
  
  /* Fade in scroll text */
  @keyframes fadeIn {
    from { opacity: 0.1; }
    to { opacity: 1; }
  }
  
  @media (max-width: 768px) {
    .scroll-down {
      margin-bottom: -50px; 
    }
  }

 

/* Box Styling */

@media (max-width: 768px) {
    .scroll-animate {
      opacity: 0;
      transform: translateY(30px) scale(0.55); /* 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 */
    }
  }
  
/* Box 1 */
.container {
    padding: 50px;
    text-align: center;
}
.boxes-container1 {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 50px;
}
    .box1 {
        background-color: #1a1a1a;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 1px 75px rgba(255, 255, 255, 0.55);
        width: 27%;
        text-align: center;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }/* Box Text Styling */
.box1 h3 { 
    color: #ffffff;  
}
.box1 p {
    color: #ffffff; 
}
    .box1:hover {
        transform: translateY(-10px);
        background-color: #717171;
    }
/* Box Text Hover Styling */
    .box1:hover h3 {
        color: #000000; /* Change to your desired color */
    }

    .box1:hover h2 {
        color: #000000; /* Change to your desired color */
    }
    
    .box1:hover p {
        color: #000000; /* Change to your desired color */
    }

    .box1:hover .image-container1 {
        background-image: url('logo1black.png');
}

/* Image container styling */
.image-container1 {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background-image: url('logo1white.png');
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
}

    .image-container1 img {
        width:  70%;
        height: 70%;
        object-fit: cover;
        border-radius: 50%;
    }


/* Box 2 */
.container {
    padding: 50px;
    text-align: center;
}
.boxes-container2 {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 50px;
}
    .box2 {
        background-color: #1a1a1a;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 1px 75px rgba(255, 255, 255, 0.55);
        width: 27%;
        text-align: center;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }/* Box Text Styling */
.box2 h3 { 
    color: #ffffff;  
}
.box2 p {
    color: #ffffff; 
}
    .box2:hover {
        transform: translateY(-10px);
        background-color: #717171;
    }
/* Box Text Hover Styling */
    .box2:hover h3 {
        color: #000000; /* Change to your desired color */
    }

    .box2:hover h2 {
        color: #000000; /* Change to your desired color */
    }
    
    .box2:hover p {
        color: #000000; /* Change to your desired color */
    }

    .box2:hover .image-container2 {
        background-image: url('logo2black.png');
}

/* Image container styling */
.image-container2 {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-image: url('logo2white.png');
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
}

    .image-container2 img {
        width:  70%;
        height: 70%;
        object-fit: cover;
        border-radius: 50%;
    }


    /* Box 3 */
.container {
    padding: 50px;
    text-align: center;
}
.boxes-container3 {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 50px;
}
    .box3 {
        background-color: #1a1a1a;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 1px 75px rgba(255, 255, 255, 0.55);
        width: 27%;
        text-align: center;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }/* Box Text Styling */
.box3 h3 { 
    color: #ffffff;  
}
.box3 p {
    color: #ffffff; 
}
    .box3:hover {
        transform: translateY(-10px);
        background-color: #717171;
    }
/* Box Text Hover Styling */
    .box3:hover h3 {
        color: #000000; /* Change to your desired color */
    }

    .box3:hover h2 {
        color: #000000; /* Change to your desired color */
    }
    
    .box3:hover p {
        color: #000000; /* Change to your desired color */
    }

    .box3:hover .image-container3 {
        background-image: url('logo3black.png');
}

/* Image container styling */
.image-container3 {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background-image: url('logo3white.png');
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
}

    .image-container3 img {
        width:  70%;
        height: 70%;
        object-fit: cover;
        border-radius: 50%;
    }

/* Product Section */
.product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 40px;
    padding-bottom: 100px;
    background-color: #000000;
    color: white;
    text-align: center;
    overflow: hidden; /* Hide overflow for animation */
}

.product-content {
    width: 80%;
    margin-bottom: -75px;
}

.product h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.checklist-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden; /* hide overflow to avoid scrollbar */
}

.row {
    display: flex;
    gap: 20px;
    min-width: 200%; /* make it VERY wide */
}

.box {
    background-color: #1a1a1a;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Marquee effect */
.marquee {
    overflow: hidden;
    width: 100%;
    background-color: #000000;
    padding: 20px 0;
  }
  
  .marquee-content {
    display: flex;
    width: max-content;
    animation: scrollLeft 15s linear infinite;
  }
  
  .box {
    background-color: #1a1a1a;
    font-weight: bold;
    padding: 20px 30px;
    margin: 0 10px;
    border-radius: 10px;
    white-space: nowrap;
    font-size: 1.1rem;
  }
  
  /* Animation */
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
/* Get Started Box */
.getstart {
    padding: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.start-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
}

.boxstart {
    background-color: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 1px 75px rgba(255, 255, 255, 0.5);
    width: 100%; /* Make the box stretch */
    max-width: 1200px; /* Set a max width for the box */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.box-text {
    max-width: 60%;
    text-align: left;
}

.get-start-btn {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.2rem;
    background-color: #2c2c2c; 
    color: white;
    text-decoration: none;
    border-radius: 25px; 
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px; 
}

.get-start-btn:hover {
    background-color: #717171; 
}

.logobox {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}



    /* 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;
}

/*Mobile View*/

@media (max-width: 768px) {
    .boxes-container1 {
        flex-direction: column;
        align-items: center;
    }

    .box1, .box2, .box3 {
        width: 100% !important;
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .wrapper {
        height: auto;
        padding: 50px 20px;
    }

    .typing-demo {
        margin-bottom: 10px;
        gap: 5px;
        padding-top: 100px;
    }

    .line {
        font-size: 1.5em;
        white-space: normal;
        border-right: none;
        width: 100%;
        text-align: center;
    }

    .line1 {
        animation: none; /
    }

    .line2 {
        animation: none; /
    }

    .button-container {
        display: flex;
        flex-direction: column; /* Stack buttons vertically on mobile */
        align-items: center;
        gap: 20px; /* Space between the buttons */
        margin-top: 30px;
    }

    .btn {
        width: 90%;
        max-width: 300px; /* Add a max width to prevent them from stretching too much */
        padding: 10px 30px;
    }
}

