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

/* Hero Section */
.hero {
    padding: 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:25vh;
    display: grid;
    place-items: center;
}

.typing-demo {
    margin-bottom: -10px;
    width: 10ch;
    animation: typing 1s steps(10), 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;
    }
}/* Flex container for text and box */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: -250px;
    padding: 150px;
    gap: 50px;
}

/* Text on the left */
.contact-text {
    width: 500%;
    font-size: 20px;
    line-height: 1.6;
}

/* Keep box styling */
.boxes-container2 {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.box2 {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px;
    border-radius: 50px;
    box-shadow: 0 1px 75px rgba(255, 255, 255, 0.55);
    width: 500px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.box2 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.box2:hover {
    transform: translateY(-10px);
    background-color: #717171;
}

.box2:hover h2,
.box2:hover h3,
.box2 a:hover,
.box2:hover p {
    color: #000000;
}

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

.image-container2 {
    width: 200px;
    height: 200px;
    margin: 0 auto 50px;
    background-image: url('contactcard1.png');
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
}


    /* 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: 480px) {
      /* Body font size smaller for mobile */
      body {
        font-size: 14px;
      }
    

      /* Buttons smaller padding and font */
      .btn, .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
        border-radius: 15px;
      }
    
      /* Hero section smaller padding */
      .hero {
        padding: 50px 2px;
       margin-bottom: -100px;
      }
    
      /* Contact wrapper becomes column */
      .contact-wrapper {
        flex-direction: column;
        padding: 20px;
        margin-top: 0;
        gap: 20px;
      }
    
      /* Contact text takes full width */
      .contact-text {
        width: 100%;
        font-size: 16px;
      }
    
      /* Boxes container centered and full width */
      .boxes-container2 {
        justify-content: center;
      }
    
      /* Box width adjusts to full width minus some padding */
      .box2 {
        width: 100%;
        max-width: 3500px;
        padding: 30px 90px;
      }
    
      /* Logo size smaller */
      .logo {
        width: 35px;
        margin-right: 8px;
      }
    
      /* Footer container stacks vertically */
      .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
      }
    
      /* Footer links and socials centered */
      .footer-links ul,
      .footer-social ul {
        text-align: center;
      }
    }
    