body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* General Hero Container */
.hero-container {
  width: 100%;
 padding: 80px 0 0 0;
  margin: 0 auto;
  background: linear-gradient(to right, #eef1ff, #ffffff);
  overflow-x: hidden;
}

/* Flex Layout */
.hero-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

/* Left Side - Slider */
.slider-wrapper {
  flex: 1 1 45%;
  max-width: 600px;
  position: relative;
}

.l-realise-slider-card-block {
  width: 100%;
  perspective: 800px;
}

.card-block-wrap {
  position: relative;
  width: 500px;
  height: 380px;
  margin: 0 auto;
  transform-style: preserve-3d;
}

/* 3D Cards */
.card {
  position: absolute;
  width: 250px;
  height: 370px;
  transition: all 0.4s ease;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 34, 45, 0.3);
}

.card img.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Transform Positions */
.card.a {
  transform: translate3d(70px, -80px, -50px);
  opacity: 0.6;
}

.card.b {
  transform: translate3d(110px, 80px, -60px);
  opacity: 0.3;
}

.card.c {
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
  z-index: 2;
}

/* Dot Buttons */
.btn-wrap {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.btn {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

.btn.focus {
  width: 14px;
  height: 14px;
  background-color: #5b5bd6;
  opacity: 1;
}

/* Right Side - Text */
.info-wrapper {
  flex: 1 1 45%;
  max-width: 500px;
}

.info-wrapper h2 {
  font-size: 1rem;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.info-wrapper h1 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #222;
  line-height: 1.3;
  margin-bottom: 20px;
}

.highlight {
  color: #5b5bd6;
}

.info-wrapper p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #5b5bd6;
  color: white;
  padding: 14px 32px;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #4747c3;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .card-block-wrap {
    width: 400px;
    height: 340px;
  }

  .info-wrapper h1 {
    font-size: 2rem;
  }

  .info-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-flex-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 60px;
  }

  .slider-wrapper,
  .info-wrapper {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .card-block-wrap {
    width: 300px;
    height: 300px;
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .info-wrapper h1 {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .card {
    width: 200px;
    height: 300px;
  }

  .card-block-wrap {
    width: 260px;
    height: 280px;
    transform: scale(0.8);
  }
}


.features-section {
  background-color: #f4f6f9;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.features-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #4a90e2;
  margin: 20px auto 0;
  border-radius: 2px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  width: 320px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  text-align: left;
  border: 1px solid transparent;
}

.feature-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  border-color: #e0e7ff;
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.375rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.95rem;
  color: #6c7a89;
  line-height: 1.7;
  margin-bottom: 25px;
}

.feature-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #4a90e2, #3578c4);
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.feature-button:hover {
  background: linear-gradient(135deg, #3578c4, #2a5ea0);
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
  .features-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 90%;
    text-align: center;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .features-title {
    font-size: 2rem;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-button {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}



.benefits-section {
  padding: 80px 20px;
  background-color: #f9f9ff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.benefits-image {
  flex: 1 1 45%;
}

.benefits-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-cards {
  flex: 1 1 50%;
}

.benefits-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #222;
}

.benefit-card {
  background: #ffffff;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  text-align: left;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.benefit-card p {
  font-size: 1rem;
  color: #555;
}

/* Tablets */
@media (max-width: 992px) {
  .benefits-section {
    padding: 60px 20px;
  }

  .benefits-title {
    font-size: 1.75rem;
  }

  .benefit-card {
    padding: 18px 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .benefits-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .benefits-image,
  .benefits-cards {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .benefits-image img {
    max-width: 100%;
    height: auto;
  }

  .benefits-cards {
    text-align: center;
  }

  .benefit-card {
    text-align: left;
    padding: 20px;
    max-width: 90%;
    margin: 0 auto 20px auto;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .benefits-title {
    font-size: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }
}


.faq-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e0e0e0;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background: #fff;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Tablet and below */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-title {
    font-size: 1.75rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .faq-answer {
    font-size: 0.95rem;
    padding: 14px 16px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
}

.stats-section {
  background: #6e65e2;
  padding: 60px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 8px
  );
  opacity: 0.2;
  z-index: 0;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
  text-align: center;
}

.stat-card {
  flex: 1 1 200px;
  margin: 20px;
  padding: 40px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-card p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 400px;
  }

  .stat-card h2 {
    font-size: 2rem;
  }

  .stat-card p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 40px 15px;
  }

  .stat-card {
    padding: 30px 15px;
  }

  .stat-card h2 {
    font-size: 1.75rem;
  }

  .stat-card p {
    font-size: 0.95rem;
  }
}

/* General Styles */
.footer {
    background-color: #212121;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: left;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

h3, h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li {
    margin: 8px 0;
}

ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

ul li a:hover {
    color: #fff;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #bbb;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.social-links a:hover {
    color: #fff;
}

.phone-icon, .email-icon {
    margin-right: 10px;
    color: #4e8fd3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
        padding: 30px 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        min-width: 100%;
        padding: 15px 10px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-links a {
        margin: 0;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .footer h3, .footer h4 {
        font-size: 16px;
    }

    .footer-column p, .footer-column ul li a {
        font-size: 14px;
    }

    .social-links a {
        font-size: 20px;
    }
}


/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #003366;
  padding: 15px 30px;
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
    text-decoration: none;
}
.logo a{
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px; /* Increased spacing between menu items */
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem; /* Increased font size */
  padding: 10px 15px; /* Added padding for better clickable area */
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
}

.nav-links li a:hover {
  color: #003366;
  background-color: #ffcc00;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
   .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #003366;
      color: white;
      padding: 10px 20px;
      position: relative;
    }

    .navbar .logo h4 {
      color: white;
      margin: 0;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
      align-items: center;
    }

    .nav-links li a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
    }

    .login-btn {
      background-color: #ffcc00;
      color: #003366;
      padding: 8px 16px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .login-btn:hover {
      background-color: #e6b800;
    }

    .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: white;
    }

    /* Dropdown styles */
    .dropdown {
      position: relative;
      z-index: 10;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      background-color: #003366;
      list-style: none;
      padding: 10px 0;
      margin: 0;
      min-width: 160px;
      border-radius: 4px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu li a {
      display: block;
      padding: 10px 20px;
      color: white;
      text-decoration: none;
    }

    .dropdown-menu li a:hover {
      background-color: #ffcc00;
      color: #003366;
    }

    /* Show dropdown on hover (desktop only) */
    .dropdown:hover .dropdown-menu {
      display: block;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background-color: #003366;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 20px;
        z-index: 999;
      }

      .nav-links.active {
        display: flex;
      }

      .dropdown:hover .dropdown-menu {
        display: none;
      }

      .dropdown-menu {
        position: static;
        background-color: #002244;
        padding-left: 15px;
        margin-top: 5px;
      }

      .dropdown.active .dropdown-menu {
        display: block;
      }

      .dropdown-toggle::after {
        content: " ▼";
        font-size: 0.8em;
      }

      .hamburger {
        display: block;
      }

      .login-btn {
        margin-top: 10px;
        align-self: flex-start;
      }
    }


  .how-it-works {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 40px;
  font-weight: 700;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.step {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #4a90e2;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Tablet and below */
@media (max-width: 992px) {
  .steps {
    gap: 20px;
  }

  .step {
    flex: 1 1 45%;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 100%;
    max-width: 90%;
  }

  .how-it-works h2 {
    font-size: 1.75rem;
  }

  .step h3 {
    font-size: 1.1rem;
  }

  .step p {
    font-size: 0.9rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .step {
    padding: 25px 15px;
  }
}


