@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@family=Poppins&display=swap');

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
/* === Preloader Overlay === */
#preloader {
    position: fixed;
    inset: 0;
    background-color: whitesmoke;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* === Modern Loader === */
  .loader {
    position: relative;
    width: 60px;
    height: 60px;
  }
  
  .loader span {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #0044ff;
    border-radius: 50%;
    animation: rotateLoader 1s linear infinite;
  }
  
  .loader span:nth-child(2) {
    border-top-color: #00c3ff;
    animation-delay: 0.15s;
  }
  
  .loader span:nth-child(3) {
    border-top-color: #6f00ff;
    animation-delay: 0.3s;
  }
  
  /* === Animation Keyframes === */
  @keyframes rotateLoader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
.Home {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 100px;
    overflow: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    font-size: 20px;
    z-index: 99;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

header h1 {
    color: aqua;
}

header nav a {
    font-size: 24px;
    margin-left: 80px;
    color: rgb(24, 44, 151);
    transition: 0.3s;
}

header nav :active,
header nav a:hover {
    color: aqua;
}

/* Text Section */
.text-box {
    width: 55%;
}

.text-box h1:first-of-type {
    font-size: 85px;
    color: black;
    animation: fadeSlideLeft 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.text-box h1:nth-of-type(2) {
    font-size: 60px;
    color: green;
    animation: fadeSlideLeft 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.text-box p {
    font-size: 20px;
    width: 70%;
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}
.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start; /* Change to center or flex-end if needed */
    margin-top: 1.5rem;
  }
  
  .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
  
  /* Shared button box styles */
  .btn-box {
    display: inline-block;
    margin-top: 5px;
    animation: bounceOnly 1s ease-out 1s forwards;
  }
  
  /* Default button (Schedule A Call) */
  .btn-box button {
    background: linear-gradient(135deg, #00c3ff, #0044ff);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 68, 255, 0.3);
  }
  
  .btn-box button:hover {
    background: linear-gradient(135deg, #0044ff, #00c3ff);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 68, 255, 0.4);
  }
  
  .btn-box button i {
    margin-right: 10px;
    color: white;
  }
  
  /* Quote Button with its own style */
  .quote-btn {
    background: linear-gradient(135deg, #00c3ff, #c09f0d) !important;
    box-shadow: 0 5px 15px rgba(192, 159, 13, 0.3);
  }
  
  .quote-btn:hover {
    background: linear-gradient(135deg, #c5bc41, #00c3ff) !important;
    box-shadow: 0 8px 20px rgba(192, 159, 13, 0.4);
  }
  

/* Animated Image */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.img {
    height: 100px;
    position: absolute;
    right: 0;
    pointer-events: none;
    z-index: 0;
    animation: fadeSlideUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

/* Text & Button Animation Keyframes */
@keyframes fadeSlideLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceOnly {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    80% {
        transform: translateY(5px) scale(0.95);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Responsive Toggle Menu */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: black;
    cursor: pointer;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .header {
        flex-wrap: wrap;
        padding: 15px 30px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        display: none;
        margin-top: 10px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        font-size: 18px;
    }

    .Home {
        flex-direction: column;
        padding: 120px 20px 40px;
        text-align: center;
    }

    .text-box {
        width: 100%;
    }

    .text-box h1:first-of-type {
        font-size: 48px;
    }

    .text-box h1:nth-of-type(2) {
        font-size: 36px;
    }

    .text-box p {
        width: 100%;
        font-size: 16px;
    }

    .img {
        position: relative;
        width: 100%;
        height: auto;
        max-width: 400px;
        margin-top: 20px;
        animation: fadeSlideUp 1s ease-out 0.5s forwards;
        opacity: 0;
    }
}
body {
    background-color: #f7fbfe;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .contact-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .contact-wrapper h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  /* Left Panel - Form */
  .contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #d1d1f1;
  }
  
  .contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    outline: none;
    background-color: transparent;
  }
  
  .contact-form textarea {
    resize: vertical;
    height: 100px;
  }
  
  .captcha-box {
    margin-bottom: 20px;
  }
  
  .fake-recaptcha {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 4px;
    max-width: 300px;
  }
  
  .fake-recaptcha input[type="checkbox"] {
    margin-right: 20px;
  }
  
  .fake-recaptcha img {
    height: 30px;
    margin-left: auto;
  }
  
  .contact-form button {
    background: white;
    color: #4d44f1;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #4d44f1;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #4d44f1;
    color: white;
  }
  
  /* Right Panel - What’s Next */
  .whats-next {
    flex: 1;
    background: #4d44f1;
    padding: 30px;
    color: white;
    border-radius: 8px;
  }
  
  .whats-next h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
  }
  
  .number {
    background: #2bd4c3;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    flex-shrink: 0;
    border: 2px solid white;
  }
  .arrow-line {
    width: 2px;
    height: 40px;
    background-color: #22c55e;
    margin: 0 0 30px 12px;
    position: relative;
  }
  
  .arrow-line::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #22c55e;
  }
 
  
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-form, .whats-next {
      width: 100%;
    }
  }
  

.footer {
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 20px 0;
    color: #000;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1 1 300px;
    min-width: 260px;
  }
  
  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .footer-section p,
  .footer-section li,
  .footer-section a {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #2a62d9;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .certification {
    margin-top: 15px;
  }
  
  
  
  .email-icon {
    font-weight: bold;
    margin-right: 6px;
  }
  
  .footer-logo img {
    width: 120px;
    margin-top: 10px;
  }
  
  .footer-logo p {
    font-size: 13px;
    color: #444;
    margin-top: 5px;
  }
  
  .footer-wave {
    position: relative;
    background-color: #2a62d9;
    color: white;
    text-align: center;
    padding-top: 30px;
    margin-top: 60px;
  }
  
  .footer-wave svg {
    display: block;
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 100px;
  }
  
  .footer-text {
    padding: 40px 20px 20px;
    font-size: 15px;
  }
  
  .footer-text a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .footer-text a:hover {
    color: #00c3ff;
  }
  
  /* Responsive Layout */
  @media screen and (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-text {
      font-size: 14px;
    }
  }

  .workflow-section {
    padding: 4rem 1rem;
    background-color: hsl(0, 0%, 100%);
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
  }
  
  .bold-text {
    font-weight: 700;
  }
  
  .workflow-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
  }
  
  .workflow-step {
    width: 10rem;
    text-align: center;
    position: relative;
  }
  
  .icon-wrapper {
    position: relative;
    display: inline-block;
  }
  
  .circle {
    width: 6rem;
    height: 6rem;
    border: 2px dashed #155ac2;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .step-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background-color: #6366f1;
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  .step-text {
    margin-top: 1rem;
    font-weight: bold;
    font-size: 0.875rem;
  }
  
  .partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
  }
  
  .partners-logos img {
    height: 2.5rem;
    object-fit: contain;
  }
  
  /* === Animated arrows between steps (desktop) === */
  @media (min-width: 769px) {
    .workflow-step:not(:last-child)::after {
      content: "➔";
      position: absolute;
      top: 50%;
      right: -1.5rem;
      transform: translateY(-50%);
      font-size: 1.5rem;
      color: #155ac2;
      animation: arrowBounceRight 1.2s infinite ease-in-out;
    }
  }
  
  /* === Animated arrows between steps (mobile) === */
  @media (max-width: 768px) {
    .workflow-steps {
      flex-direction: column;
      align-items: center;
    }
  
    .workflow-step:not(:last-child)::after {
      content: "⬇";
      position: absolute;
      top: 7rem;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.5rem;
      color: #155ac2;
      animation: arrowBounceDown 1.2s infinite ease-in-out;
    }
  }
  
  /* === Keyframes for arrow animations === */
  @keyframes arrowBounceRight {
    0%, 100% {
      transform: translateY(-50%) translateX(0);
    }
    50% {
      transform: translateY(-50%) translateX(5px);
    }
  }
  
  @keyframes arrowBounceDown {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(5px);
    }
  }

  .about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }

  .about-box {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .about-block {
    display: flex;
    flex-direction: column;
  }

  .about-icon {
    font-size: 40px;
    color: #5e5af7;
    margin-bottom: 10px;
  }

  .about-title {
    font-size: 20px;
    font-weight: bold;
  }

  .about-title span {
    font-weight: 800;
  }

  .about-text {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
  }

  .about-list {
    margin-top: 10px;
    padding-left: 20px;
    font-size: 14px;
    color: #333;
  }

  .about-img {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-img img {
    max-width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .about-section {
      flex-direction: column;
      align-items: center;
    }

    .about-box, .about-img {
      width: 100%;
      text-align: center;
    }

    .about-list {
      padding-left: 0;
      list-style-position: inside;
    }
  }

  @media (max-width: 480px) {
    .about-title {
      font-size: 18px;
    }

    .about-icon {
      font-size: 32px;
    }

    .about-text, .about-list {
      font-size: 13px;
    }
  }
  
  #progress {
    position: fixed;
    bottom: 20px;
    right: 10px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
  #progress-value {
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 35px;
    color: #001a2e;
  }

  /* In your stylesheet (style.css) */
.responsive-img {
  max-width: 100%;   /* scales down with the container */
  height: auto;      /* preserves aspect ratio */
  display: block;    /* removes tiny whitespace below inline images */
}
