    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }
    body {
      background-color: #0b0f1a;
      color: #ffffff;
    }
    header {
      background-color: #0d1b2a;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 40px;
      margin-right: 10px;
    }
    .logo h1 {
      color: #4cc9f0;
      font-size: 22px;
    }
    nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }
    .nav-links {
      display: flex;
      gap: 20px;
    }
    .nav-links a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: #4cc9f0;
    }
    .cta-btn a {
      background-color: #4cc9f0;
      color: #0b0f1a;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }
    .cta-btn a:hover {
      background-color: #3ab3d6;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .menu-toggle span {
      height: 3px;
      width: 25px;
      background-color: white;
      margin: 4px 0;
      transition: 0.3s;
    }

    @media (max-width: 768px) {
      .nav-links {
        width: 100%;
        flex-direction: column;
        display: none;
        margin-top: 10px;
      }
      .nav-links.show {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }
    }
  .hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(rgba(11, 15, 26, 0.8), rgba(27, 38, 59, 0.8)),
                url('images/silicoincity.png') no-repeat center center/cover !important;
  }
  .hero h2 {
    font-size: 40px;
    color: #4cc9f0;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 600px;
    margin: auto;
  }
  
    .cta {
      margin-top: 30px;
    }
    .cta a {
      background-color: #4cc9f0;
      color: #0b0f1a;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }
    .cta a:hover {
      background-color: #3ab3d6;
    }

    .features {
  background-color: #101827;
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  color: #4cc9f0;
  margin-bottom: 10px;
}

.features p {
  font-size: 16px;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: #1a2238;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 32px;
  color: #4cc9f0;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #bbbbbb;
}
.countries {
  background-color: #0b132b;
  padding: 60px 20px;
  text-align: center;
}

.countries h2 {
  font-size: 32px;
  color: #4cc9f0;
  margin-bottom: 10px;
}

.countries p {
  font-size: 16px;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto 40px;
}

.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.country-box {
  background-color: #1a2238;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.country-box img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.country-box h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.country-box p {
  color: #bbbbbb;
  font-size: 14px;
}
.services {
  background-color: #11192f;
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  color: #4cc9f0;
  margin-bottom: 10px;
}

.services p {
  font-size: 16px;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #1a2238;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 32px;
  color: #4cc9f0;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #bbbbbb;
}
.benefits {
  background-color: #0e172c;
  padding: 60px 20px;
  text-align: center;
}

.benefits h2 {
  font-size: 32px;
  color: #4cc9f0;
  margin-bottom: 10px;
}

.benefits p {
  font-size: 16px;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: #1a2238;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 32px;
  color: #4cc9f0;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #bbbbbb;
}
.testimonials {
  background-color: #0b132b;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #4cc9f0;
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-slider {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  display: none;
  background-color: #1a2238;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.testimonial-item.active {
  display: block;
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-item p {
  color: #cccccc;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-item h3 {
  color: #ffffff;
  margin: 5px 0;
}

.testimonial-item span {
  color: #4cc9f0;
  font-size: 14px;
}
.faq {
  background-color: #0e172c;
  padding: 60px 20px;
  text-align: center;
}

.faq h2 {
  color: #4cc9f0;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 700px;
  margin: 20px auto;
  text-align: left;
  background-color: #1a2238;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.faq-item h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.faq-item p {
  color: #cccccc;
  font-size: 15px;
  margin: 0;
}
.about-us {
  background-color: #0b132b;
  padding: 60px 20px;
  color: #ffffff;
}

.about-us h2 {
  color: #4cc9f0;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  width: 100%;
}

.about-text p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
}

.about-image img {
  width: 80%;
  height:auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.about-us {
  background-image: url('images/about.png');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: #ffffff;
}
.contact {
  background-color: #0b132b;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  color: #4cc9f0;
  font-size: 32px;
  margin-bottom: 10px;
}

.contact p {
  color: #cccccc;
  font-size: 16px;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 8px;
  border: none;
  background-color: #1a2238;
  color: #ffffff;
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  background-color: #4cc9f0;
  color: #0b132b;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #38a6cc;
}
.privacy-policy,
.terms-conditions {
  background-color: #0b132b;
  padding: 60px 20px;
  color: #ffffff;
  text-align: left;
}

.privacy-policy h2,
.terms-conditions h2 {
  color: #4cc9f0;
  font-size: 32px;
  margin-bottom: 20px;
}

.privacy-policy h3,
.terms-conditions h3 {
  color: #4cc9f0;
  font-size: 24px;
  margin-top: 30px;
}

.privacy-policy p,
.terms-conditions p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
}

.privacy-policy a,
.terms-conditions a {
  color: #4cc9f0;
  text-decoration: none;
}

.privacy-policy a:hover,
.terms-conditions a:hover {
  text-decoration: underline;
}
.register-form-container {
    max-width: 500px;
    margin: 40px auto;
    background-color: #2c3e50;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.register-form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
}

.register-form .form-group {
    margin-bottom: 15px;
}

.register-form .form-row {
    display: flex;
    gap: 10px;
}

.register-form label {
    display: block;
    margin-bottom: 5px;
    color: #ecf0f1;
    font-size: 15px;
}

.register-form input,
.register-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #34495e;
    border-radius: 5px;
    background-color: #1c1c1c;
    color: #ecf0f1;
}

.register-form .checkbox {
    display: flex;
    align-items: center;
}

.register-form .checkbox label {
    font-size: 14px;
    color: #bdc3c7;
}

.register-form .checkbox input {
    margin-right: 10px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ecf0f1;
}

.login-link a {
    color: #1abc9c;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}
.login-form-container {
    max-width: 400px;
    margin: 40px auto;
    background-color: #2c3e50;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.login-form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    color: #ecf0f1;
    font-size: 15px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #34495e;
    border-radius: 5px;
    background-color: #1c1c1c;
    color: #ecf0f1;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.forgot-password-btn {
    font-size: 14px;
    color: #1abc9c;
    text-decoration: none;
}

.forgot-password-btn:hover {
    text-decoration: underline;
}

.register-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ecf0f1;
}

.register-link a {
    color: #3498db;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}
.forgot-password-form-container {
    max-width: 400px;
    margin: 40px auto;
    background-color: #2c3e50;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.forgot-password-form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
}

.forgot-password-form label {
    display: block;
    margin-bottom: 5px;
    color: #ecf0f1;
    font-size: 15px;
}

.forgot-password-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #34495e;
    border-radius: 5px;
    background-color: #1c1c1c;
    color: #ecf0f1;
}

.back-to-login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ecf0f1;
}

.back-to-login-link a {
    color: #3498db;
    text-decoration: none;
}

.back-to-login-link a:hover {
    text-decoration: underline;
}
.footer {
  background-color: #0b132b;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
}

.footer-links li {
  display: inline-block;
  margin: 0 15px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #4cc9f0;
}

.footer-social {
  margin-bottom: 20px;
}

.social-icon {
  margin: 0 10px;
}

.social-icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-icon:hover img {
  transform: scale(1.1);
}

.footer-text {
  font-size: 14px;
  color: #cccccc;
}
    footer {
      background-color: #0d1b2a;
      text-align: center;
      padding: 20px;
      font-size: 14px;
      color: #b0b0b0;
    }
  

      .my-5 {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.alert {
    padding: 30px;
    border: 2px solid #dc3545;
    border-radius: 10px;
    background-color: #f8d7da;
    color: #721c24;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.2);
}

.alert h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.alert p {
    font-size: 16px;
    margin-bottom: 15px;
}

.alert ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.alert ul li {
    margin-bottom: 10px;
    font-size: 15px;
    list-style: none;
    display: flex;
    align-items: center;
}

.alert ul li i {
    margin-right: 10px;
    font-size: 18px;
}

.alert .fw-bold {
    font-weight: bold;
    font-size: 16px;
    color: #c82333;
}
/* In your CSS file (styles.css or similar) */
.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: #f44336;
    color: white;
    font-weight: bold;
    text-align: center;
}

.message.success {
    background-color: #4CAF50;
}

.message.error {
    background-color: #f44336;
}
