/* General resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", sans-serif;
    color: #0d214f;
    background-color: #ffffff;
  }
  
  .hero-section {
    background-image: url('images/Backgroudn\ Gradient.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    min-height: 100vh;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  
  .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the text below the image */
  }
  
  .logo {
    height: 50px;
  }
  
  .logo-text {
    margin: 5px 10px 0; /* Small spacing between image and text */
    font-size: 28px;
    font-weight: bold;
    color: #0d214f; /* Adjust color if needed */
  }

  .logo-cp{
    font-size: 10px;
    font-weight: 900;
    color: #0d214f;
  }
  
  .download-btn {
    background-color: #ffd600;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: -40px;
  }
  
  
  /* Hero Content */
  .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 40px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0d214f;
  }
  
  .hero-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 30px;
  }
  
  .explore-btn {
    background-color: #ffd600;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
  }
  
  /* Carousel */
  .carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
  }
  
  .carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
  }
  
  .carousel-track img {
    width: 150px;
    height: 180px;
    object-fit: cover;
    margin: 0 10px;
    border-radius: 16px;
  }
  
  /* Infinite Scroll Animation */
  @keyframes scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }


  .why-section {
    background-color: #0d1b2a;
    padding: 80px 20px;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
  }
  
  .why-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .why-left {
    flex: 1 1 300px;
    min-width: 280px;
    display: flex;
    align-items: flex-start;
  }
  
  .why-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
  }
  
  .why-highlight {
    color: #FFD600;
    font-weight: bold;
  }
  
  .why-right {
    flex: 2 1 600px;
    min-width: 300px;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px 60px;
  }
  
  .why-feature {
    display: flex;
    flex-direction: column;
  }
  
  .why-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(180deg, #FFD600 0%, #FFBD00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .why-icon img {
    width: 40px;
    height: 40px;
  }
  
  .why-feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .why-feature p {
    font-size: 0.95rem;
    color: #c9d1d9;
    line-height: 1.5;
  }
  

  .im-section {
    padding: 0px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .im-image-wrapper {
    width: 100%;
    max-width: 1200px;
  }
  
  .im-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

  
  .exp-section {
    padding: 0px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
  }
  
  .exp-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .exp-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .exp-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
  }
  
  .exp-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .exp-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
  
  .exp-image-wrapper {
    flex: 1 1 400px;
  }
  
  .exp-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
  }
  
  .exp-checklist {
    flex: 1 1 400px;
  }
  
  .exp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }
  
  .exp-list li {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 500;
  }
  
  .exp-icon {
    display: inline-block;
    background-color: #ffd900;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    padding: 6px 10px;
    margin-right: 14px;
    font-size: 16px;
    line-height: 1;
  }
  
  .exp-button {
    background-color: #ffd900;
    color: #000;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .exp-button:hover {
    background-color: #e6c800;
  }
  .ai-section {
    padding: 60px 20px;
    background: url('images/AI-Backgroudn\ Gradient.png') no-repeat bottom center;
    background-size: contain; /* or 'contain' based on your image design */
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  
  .ai-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .ai-header {
    margin-bottom: 40px;
  }
  
  .ai-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
  }
  
  .ai-subtext {
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .ai-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .ai-image {
    max-width: 60%;
    height: auto;
  }
  

  .ep-section {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 5%;
    background: #fff;
  }

  .ep-left {
    flex: 1 1 60%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
  }

  .ep-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }

  


  .ep-icon-wrapper {
    background: #DFFCEF;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    
  }

  .ep-icon-wrapper img {
    width: 24px;
    height: 24px;
  }

  .ep-card-title {
    font-size: 12px;
    font-weight: 600;
    color: #757575;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .ep-card-text {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
    color: #1A1A1A;
  }

  .ep-card-footer {
    font-size: 14px;
    color: #555;
  }

  .ep-right {
    flex: 1 1 40%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ep-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0C2146;
    margin-bottom: 16px;
  }

  .ep-paragraph {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 32px;
    max-width: 400px;
  }

  .ep-btn {
    background-color: #FACC15;
    color: #000;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
  }

  .ep-btn:hover {
    background-color: #e6b814;
  }

  .ep-footer {
    height: 130px;
    background-color: #162534;
    margin-top: -120px;
  }
  
  .tes-container {
    background: url('images/tes-bg.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 60px 20px;
  }

  .tes-header {
    font-size: 35px;
    font-weight: bold;
    color: #000000;
  }

  .tes-subheader {
    font-size: 20px;
    color: #707070;
    margin: 15px auto 40px;
    max-width: 700px;
    line-height: 1.6;
  }

  .tes-testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
  }

  .tes-arrow {
    font-size: 28px;
    cursor: pointer;
    user-select: none;
    z-index: 2;
  }

  .tes-carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
  }

  .tes-carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .tes-testimonial {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
  }

  .tes-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 6px solid #fff;
  }

  .tes-name {
    font-weight: bold;
    font-size: 24px;
    color: #111111;
    margin-bottom: 4px;
  }

  .tes-title {
    font-size: 20px;
    color: #707070;
    margin-bottom: 20px;
  }

  .tes-quote {
    font-size: 20px;
    color: #111111;
    max-width: 610px;
    margin: 0 auto;
  }


  .res-section {
    background-color: #0C1C2C; /* Deep navy */
    color: white;
    padding: 80px 20px;
    text-align: center;
  }
  
  .res-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  

  
  .res-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .res-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: #979797;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .res-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .res-image {
    max-width: 100%;
    height: auto;
    width: 1000px;
  }
  

  
.res-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .res-footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }
  
  .res-footer-left {
    margin-bottom: 20px;
  }
  
  .res-footer-logo {
    color: #f5c518;
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .res-footer-socials a {
    color: #ccc;
    font-size: 18px;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .res-footer-socials a:hover {
    color: #f5c518;
  }
  
  .res-footer-right {
    max-width: 300px;
  }
  
  .res-footer-contact-title {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .res-footer-right a {
    color: #ccc;
    text-decoration: underline;
  }
  
  .res-footer-separator {
    border: 0;
    border-top: 1px solid #333;
    margin: 30px 0 20px;
  }
  
  .res-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    font-size: 14px;
  }
  
  .res-footer-links a {
    color: #ccc;
    margin-left: 20px;
    text-decoration: none;
  }
  
  .res-footer-links a:hover {
    text-decoration: underline;
  }
  /* Responsive */
  @media screen and (max-width: 768px) {
    .hero-content h1 {
      font-size: 1.8rem;
    }
  
    .carousel-track{
      animation: scroll 8s linear infinite;
    }
    .carousel-track img {
      width: 120px;
      height: 150px;
    }

    .why-container {
        flex-direction: column;
      }
    
      .why-left {
        flex: 1 1 100px;
        
      }
    
      .why-title {
        font-size: 2rem;
      }
    
      .why-grid {
        gap: 30px;
      }

      .exp-content {
        flex-direction: column;
      }
    
      .exp-header {
        text-align: center;
      }
    
      .exp-title {
        font-size: 24px;
      }
    
      .exp-subtitle {
        font-size: 16px;
      }
    
      .exp-list li {
        font-size: 16px;
      }

      .exp-image-wrapper {
        flex: 1 1 230px;
      }

      .ai-section {
        padding: 20px 20px;
      }

      .ai-title {
        font-size: 22px;
      }
    
      .ai-subtext {
        font-size: 15px;
      }
    
      .ai-image {
        width: 100%;
      }

      .ep-section {
        flex-direction: column;
      }

      .ep-right {
        padding-left: 0;
        margin-top: 40px;
      }

      .tes-testimonial-wrapper {
        flex-direction: column;
      }

      .res-title {
        font-size: 1.5rem;
      }
    
      .res-subtitle {
        font-size: 1rem;
        padding: 0 10px;
      }
    
      .res-image {
        width: 100%;
      }

      .res-footer-top,
  .res-footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .res-footer-links {
    margin-top: 10px;
  }

  .res-footer-links a {
    margin-left: 0;
    margin-right: 15px;
  }
  }
  