/* General Reset */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 50%, #1a1a1a 100%);
    background-attachment: fixed;   
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px; /* Adjust this value to match the height of your nav bar */
}

body.contact-page {
    padding-top: 0 50px;
  
}

/* Header Styling */
header {
    margin-top: 80px;
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    color: #ffffff;
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-container {
    max-width: 1100px;
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info, .contact-form {
    flex: 1 1 300px;
    padding: 1rem;
}

@media screen and (min-width: 769px) {
    .contact-info, .contact-form {
        flex: 0 0 48%;
    }
}

@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

@media screen and (min-width: 1160px) {
    .contact-container {
        width: 1100px;
    }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* About Section Styling */
.about-container {
    max-width: 90%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #21252e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 1200px) {
    .about-container {
        max-width: 1100px;
    }
}

.about-intro {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    grid-column: 1 / -1;
}

.intro-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-right: 2rem;
}

.contact-container {
    max-width: 1100px;
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #21252e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}.intro-text {
    flex: 1;
    color: #ffffff;
}

.about-engine {
    margin-bottom: 2rem;
    color: #ffffff;
    grid-column: 1 / -1;
}

.website-screenshot {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

.feature-list, .upcoming-features {
    margin-bottom: 2rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.feature-list ul {
    list-style-type: none;
    padding: 0;
    color: #ffffff;
}

.feature-list li {
    margin-bottom: 1.5rem;
}

h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0.5rem;
}

.feature-list h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 0.75rem;
}

.feature-list ul ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.feature-list li, .upcoming-features li {
    transition: transform 0.3s ease;
}

.feature-list li:hover, .upcoming-features li:hover {
    transform: translateX(10px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-intro, .about-engine, .feature-list, .upcoming-features {
    animation: fadeIn 0.8s ease-out forwards;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

nav {
    background-color: rgba(10, 10, 10, 0.8);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}
  nav a {
      color: #f2f2f5;
      text-decoration: none;
      padding: 10px 20px;
      margin: 0 5px;
      border-radius: 5px;
      transition: all 0.3s ease;
      font-weight: bold;
  }

  nav a:hover, nav a.active {
      background-color: #02428b;
      color: #ffffff;
  }
   
  .page-container {
      width: 90%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 15px;
  }
    .contact-container {
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #21252e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
  @media screen and (min-width: 1160px) {
      .contact-container {
          width: 1100px;
      }
}.contact-info, .contact-form {
    flex: 1 1 300px;
    padding: 1rem;
}

.contact-info h2, .contact-form h2 {
    color: #ffffff;
}

.contact-info p, .contact-info ul {
    color: #ffffff;
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
    color: #ffffff;
}

.contact-info li {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #c4c7ce;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #034694;
    transform: translateY(-2px);
}
  .contact-form form {
      display: flex;
      flex-direction: column;


  }

  .contact-form label {
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 0.25rem;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
      width: 100%;
      padding: 0.5rem;
      border-radius: 4px;
      background-color: rgba(56, 53, 53, 0.815);
      color: #ffffff;
      font-size: 16px;
      margin-bottom: 1rem;
  }

  .contact-form input[type="text"]:focus,
  .contact-form input[type="email"]:focus,
  .contact-form textarea:focus {
      outline: none;
      border-color: #ffffff;
      box-shadow: 0 0 0 2px rgba(2, 54, 113, 0.2);
  }

  .contact-form input[type="submit"] {
      background-color: #02428b;
      color: #ffffff;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      margin-top: 0.25rem;
      transition: background-color 0.3s ease;

  }
      

  .contact-form input[type="submit"]:hover {
      background-color: #0c5ab3;
  }

  #confirmation-message {
    display: none;
    background-color: #21252e;
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;

}

  footer {
      text-align: center;
      padding: 1rem 0;
      margin-top: 2rem;
      background-color: #2c2c2c;
      color: #ffffff;
      width: 100%;
  }
/* Add these new styles to your existing style2.css file */

.animate-title {
    animation: slideInFromTop 1s ease-out;
}

.animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-text {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-image {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-image.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-list-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-list-item.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add a subtle hover effect to the feature list items */
.feature-list li:hover, .upcoming-features li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    transition: background-color 0.3s ease,
    
    transform 0.3s ease;
}




.hamburger {
    display: none;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    header h1 {
        font-size: 36px;
    }

    .about-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
        padding: 10px 15px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.show {
        display: block;
    }

    nav a {
        display: block;
        padding: 10px 15px;
        text-align: left;
    }

    nav a:hover, nav a.active {
        background-color: #034694;
    }

    .intro-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        font-size: 14px;
    }

    .contact-form input[type="submit"] {
        width: 100%;
    }

    .about-engine {
        display: block;
        margin-top: 1rem;
        padding: 1rem;
        background-color: rgba(44, 44, 44, 0.9);
        border-radius: 5px;
    }

    .about-engine h2 {
        font-size: 20px;
        margin-bottom: 0.5rem;
    }

    .about-engine p {
        font-size: 14px;
        line-height: 1.4;
    }

    .website-screenshot {
        width: 100%;
        height: auto;
        margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .about-intro {
        display: block;
        margin-bottom: 1rem;
    }

    .intro-text {
        position: relative;
        z-index: 2;
        background-color: rgba(44, 44, 44, 0.9);
        padding: 1rem;
        border-radius: 5px;
    }

    .intro-text h2 {
        font-size: 20px;
        margin-bottom: 0.5rem;
    }

    .intro-text p {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 28px;
    }

    .about-container {
        padding: 0.5rem;
    }

    .feature-list, .upcoming-features {
        padding: 1rem;
    }
}
