@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,200;0,300;0,500;0,600;0,700;0,900;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary-color: #f8fafc;
    --text-color: #334155;
    --heading-color: #1e293b;
    --light-gray: #e2e8f0;
    --dark-color: #0f172a;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --bg: #ffffff;
    --clr-1: #00c2ff;
    --clr-2: #33ff8c;
    --clr-3: #ffc640;
    --clr-4: #e54cff;
    --blur: 30px;
    --fs: clamp(3rem, 8vw, 7rem);
    --ls: clamp(-1.75px, -0.25vw, -3.5px);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}


html, body {
    scroll-behavior: smooth;
}

body {
    text-align: center;
    position: relative;
    background: var(--bg);
    color: var(--heading-color);
    font-family: "Inter", "DM Sans", Arial, sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,200;0,300;0,500;0,600;0,700;0,900;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

main {
    padding: 120px 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(to bottom, #f8fafc, #e2e8f0); */
}

.heading {
    font-size: var(--fs);
    font-weight: 800;
    letter-spacing: var(--ls);
    position: relative;
    overflow: hidden;
    margin: 0;
    color: var(--heading-color);
    font-family: "Inter", "DM Sans", Arial, sans-serif;
    z-index: 1;
}

.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    mix-blend-mode: soft-light;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.3;
}

.aurora__item {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-1);
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    filter: blur(var(--blur));
    mix-blend-mode: soft-light;
    opacity: 0.2;
}

.aurora__item:nth-of-type(1) {
    top: -50%;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-1 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
    background-color: var(--clr-3);
    right: 0;
    top: 0;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-2 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
    background-color: var(--clr-2);
    left: 0;
    bottom: 0;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-3 8s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
    background-color: var(--clr-4);
    right: 0;
    bottom: -50%;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
    0% { top: 0; right: 0; }
    50% { top: 100%; right: 75%; }
    75% { top: 100%; right: 25%; }
    100% { top: 0; right: 0; }
}

@keyframes aurora-2 {
    0% { top: -50%; left: 0%; }
    60% { top: 100%; left: 75%; }
    85% { top: 100%; left: 25%; }
    100% { top: -50%; left: 0%; }
}

@keyframes aurora-3 {
    0% { bottom: 0; left: 0; }
    40% { bottom: 100%; left: 75%; }
    65% { bottom: 40%; left: 50%; }
    100% { bottom: 0; left: 0; }
}

@keyframes aurora-4 {
    0% { bottom: -50%; right: 0; }
    50% { bottom: 0%; right: 40%; }
    90% { bottom: 50%; right: 25%; }
    100% { bottom: -50%; right: 0; }
}

@keyframes aurora-border {
    0% { border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%; }
    25% { border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%; }
    50% { border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%; }
    75% { border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%; }
    100% { border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%; }
}

.paragraph {
    font-size: 20px;
    color: var(--text-color);
    max-width: 800px;
    margin: 40px auto;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

.button {
    background-color: #14568E;
    font-family: "Work Sans", sans-serif;
    color: white;
    padding: 20px 40px;
    font-size: 22px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: #2d78ba;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button:active {
    background-color: #ffc640;
    color: white;
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-stack {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 7%;
    margin-top: 50px;
    padding: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.image-stack.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-pair {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    margin-bottom: 0;
    width: 14vw;
    min-width: 200px;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.image-pair.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add animation delays for each image pair */
.image-pair:nth-child(1) {
    margin-top: 9%;
    transition-delay: 0.2s;
}

.image-pair:nth-child(2) {
    transition-delay: 0.4s;
}

.image-pair:nth-child(3) {
    margin-top: 14%;
    transition-delay: 0.6s;
}

.image-pair:nth-child(4) {
    margin-top: 6%;
    transition-delay: 0.8s;
}

.image-pair:nth-child(5) {
    transition-delay: 1s;
}

.image-pair:nth-child(6) {
    transition-delay: 1.2s;
}

.image-pair:nth-child(7) {
    transition-delay: 1.4s;
}

.image-pair:nth-child(8) {
    transition-delay: 1.6s;
}

.image-pair:nth-child(9) {
    transition-delay: 1.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update box classes with hover animation */
.bx1, .bx2, .bx3, .bx4, .bx6, .bx7, .bx8, .bx9 {
    width: 100%;
    height: 48vh;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bx1:hover, .bx2:hover, .bx3:hover, .bx4:hover,
.bx6:hover, .bx7:hover, .bx8:hover, .bx9:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.container {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  width: 200px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.image-section img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.text-section {
  padding: 15px;
}

.text-section h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.text-section p {
  font-size: 14px;
  color: #666;
}
.home-container {
    margin: 90px auto 80px;
    padding: 0 20px;
    max-width: 1400px;
    width: 100%;
    display: flex;
    gap: 45px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}
.inner-container{
    display: flex;
    gap: 50px;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.inner-container:nth-child(1), .inner-container:nth-child(3),.inner-container:nth-child(5){
    margin-top: 80px;
}

.inner-container-card{
    padding: 20px 10px;
    height: 250px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.imagecontainer {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    z-index: 2;
}

.imagecontainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.inner-container-content{
    font-family: 'Inter' , sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
}
.inner-container-content h3{
    color: #14568E;
    font-family: 'Work Sans' , sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}
.catchy-phrase {
    margin: 30px;
    padding-right: 60px;
    padding-left: 60px;
    margin-bottom: 80px;
}

.first-word {
    font-family: "Work Sans", sans-serif;
    font-size: 38px;
}

.remaining-phrase {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .catchy-phrase {
        padding: 40px 20px;
    }

    .first-word {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .first-word {
        font-size: 28px;
    }
}
.key-strengths {
    padding: 80px 20px;
    text-align: center;
    /* background-color: #f8f9fa; */
}

.key-strengths h2 {
    font-size: 3.5rem;
    color: #014a94;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: "Work Sans", sans-serif;
}

.key-strengths .line {
    width: 80px;
    height: 4px;
    background-color: #014a94;
    margin: 0 auto 40px;
}

.key-strengths .card-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.key-strengths .card {
    flex: 1;
    min-width: 350px;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.key-strengths .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #014a94;
}

.key-strengths .card:hover .content h3,
.key-strengths .card:hover .content p {
    color: white;
}

.key-strengths .image-container {
    width: 100px;
    height: 100px;
    background: #014a94;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.key-strengths .image-container img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.key-strengths .card:hover .image-container {
    background: white;
}

.key-strengths .card:hover .image-container img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(40%) saturate(7042%) hue-rotate(360deg) brightness(103%) contrast(107%);
}

/* Update icon colors for better visibility */
.key-strengths .image-container img[src*="task.png"],
.key-strengths .image-container img[src*="investment.png"],
.key-strengths .image-container img[src*="bitcoin.png"] {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.key-strengths .content h3 {
    font-size: 1.8rem;
    color: #014a94;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.key-strengths .content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .key-strengths {
        padding: 60px 20px;
    }

    .key-strengths h2 {
        font-size: 2.8rem;
    }

    .key-strengths .card {
        min-width: 300px;
        padding: 30px 20px;
    }

    .key-strengths .image-container {
        width: 80px;
        height: 80px;
    }

    .key-strengths .image-container img {
        width: 50px;
        height: 50px;
    }

    .key-strengths .content h3 {
        font-size: 1.5rem;
    }

    .key-strengths .content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .key-strengths {
        padding: 40px 15px;
    }

    .key-strengths h2 {
        font-size: 2.2rem;
    }

    .key-strengths .card {
        min-width: 280px;
        padding: 25px 15px;
    }

    .key-strengths .image-container {
        width: 70px;
        height: 70px;
    }

    .key-strengths .image-container img {
        width: 40px;
        height: 40px;
    }

    .key-strengths .content h3 {
        font-size: 1.3rem;
    }

    .key-strengths .content p {
        font-size: 0.95rem;
    }
}
.process {
    position: relative;
    margin-top: 70px;
}
.process h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
    position: relative;
    color: #014a94;
    font-weight: 700;
}
.line2 {
    position: absolute;
    height: 4px;
    width: 70px;
    background-color: #14568E;
    border-radius: 20px;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
}
.process p {
    font-family: "Inter", sans-serif;
    color: gray;
}
.process-container {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    margin: 30px;
    padding-left: 200px;
    padding-right: 200px;
    position: relative;
    gap: 20px;
}
.process-card {
    margin-top: 30px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* border: solid rgb(224, 217, 217); */
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative; /* Needed for absolute positioning of .number */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.number {
    font-family: "Work Sans", sans-serif;
    position: absolute;
    left: -40px;  /* Moves number outside the card */
    top: -50%;
    ; /* Centers it vertically */
    font-size: 8rem;
    font-weight: bold;
    color: #14568E;
    z-index: 2;
}

.icon {
    height: 70px;
    width: 70px;
    margin-left: 20px;
    border-radius: 50%;
    background-color: #14568E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.icon i {
    color: #fff;
    font-size: 30px;
    transition: all 0.2s;
}
.process-content h3 {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
}
.process-content p {
    font-family: "Inter", sans-serif;
}
.process-card:hover .icon{
    height: 90px;
    width: 90px;
}
.process-card:hover .icon i{
    font-size: 40px;
}
.core-services {
    background-color: #14568E;
    padding-top: 25px;
    padding-bottom: 30px;
    position: relative;
}

.core-services h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 35px;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    text-align: center;
    position: relative;
}
.line3{
    position: absolute;
    height: 4px;
    width: 70px;
    background-color: #fff;
    border-radius: 20px;
    top: 110px;
    right: 600px;
}
.services-container {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.services-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    width: 350px;
    height: 350px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.services-card:hover {
    transform: scale(1.1);
    z-index: 2;
}

.services-container:hover .services-card {
    opacity: 0.8;
}

.services-container .services-card:hover {
    opacity: 1;
}

.services-image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.services-content h3 {
    font-family: "Work Sans", sans-serif;
    margin: 20px;
}

.services-content p {
    font-family: "Inter", sans-serif;
    color: gray;
    margin: 20px;
}
.newsletter {
    background-color: rgb(239, 235, 235);
    padding: 80px 0;
    color: black;
  }
  
  .newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .newsletter-content h2 {
    color: black;
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    margin-bottom: 15px;
  }
  
  .newsletter-content p {
    font-family: "Inter", sans-serif;
    color: rgb(114, 111, 111);
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .newsletter .form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .newsletter input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
  }
  
  .newsletter button {
    padding: 0 30px;
    background-color: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .newsletter button:hover {
    background-color: #393f49;
  }
  
  #newsletter-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: var(--border-radius);
  }
  
  #newsletter-message.success {
    background-color: rgba(0, 255, 0, 0.1);
    color: #00c853;
  }
  
  #newsletter-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #f44336;
  }
  
  /* Footer */
  footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  
  .footer-logo {
    text-align: left;
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    margin-left: 90px;
  }
  
  .footer-logo h2 {
    font-family: "Work Sans", sans-serif;
    color: var(--white);
    margin-bottom: 15px;
  }
  
  .footer-logo span {
    color: var(--primary-light);
  }
  
  .footer-logo p {
    font-family: "Inter", sans-serif;
    opacity: 0.7;
    font-size: 15px;
  }
  
  .footer-links {
    display: flex;
    flex: 2;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .footer-column {
    text-align: left;
    min-width: 160px;
    margin-bottom: 30px;
  }
  
  .footer-column h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    margin-left: 35px;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;

  }
  
  .footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
  }
  
  .footer-column a:hover {
    color: var(--white);
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
  }
  
  .footer-bottom p {
    margin-bottom: 10px;
    margin-left: 500px;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  .footer-bottom-links a:hover {
    color: var(--white);
  }

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Header and Navigation Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* background: white; */
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 1.8rem;
    color: #242323;
    margin: 0;
}

.logo span {
    color: #f64f12;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: "Inter", sans-serif;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #014a94;
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #014a94;
}

.nav-right {
    display: flex;
    align-items: center;
}

.get-in-touch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #014a94;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.get-in-touch:hover {
    background: #fbb040;
    transform: translateY(-2px);
}

/* Add padding to main content to account for fixed header */
main {
    padding-top: 80px;
}

/* Add scroll effect for navbar */
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Update text colors for better visibility */
.heading, .paragraph, .catchy-phrase, .key-strengths h2, .process h2, .core-services h2 {
    color: var(--heading-color);
}

.paragraph {
    color: var(--text-color);
}

/* Update card backgrounds for better visibility */
.card, .services-card, .process-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Update footer background */
footer {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Update newsletter background */
.newsletter {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Update core services background */
.core-services {
    background: rgba(20, 86, 142, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

/* Active states for animations */
.fade-up.active,
.fade-down.active,
.fade-left.active,
.fade-right.active,
.fade-in.active {
    opacity: 1;
    transform: translate(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-family: "Work Sans", sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-link:hover {
    background: rgba(20, 86, 142, 0.1);
    color: #14568E;
    padding-left: 25px;
}

@media (max-width: 1200px) {
    .image-pair {
        width: 20vw;
    }
}

@media (max-width: 768px) {
    .image-pair {
        width: 40vw;
    }
    
    .bx1, .bx2, .bx3, .bx4, .bx6, .bx7, .bx8, .bx9 {
        height: 35vh;
    }
}

@media (max-width: 480px) {
    .image-pair {
        width: 80vw;
    }
    
    .bx1, .bx2, .bx3, .bx4, .bx6, .bx7, .bx8, .bx9 {
        height: 30vh;
    }
}

.about-visuplans {
    text-align: center;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-visuplans h2 {
    font-size: 3.5rem;
    color: #014a94;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    width: 100%;
}

.about-visuplans p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    margin: 0 auto 40px;
    text-align: justify;
    max-width: 900px;
    width: 100%;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 0 20px;
}

.about-visuplans .line {
    width: 80px;
    height: 4px;
    background-color: #014a94;
    margin: 0 auto 40px;
}

.about-visuplans .button {
    background-color: #14568E;
    font-family: "Work Sans", sans-serif;
    color: white;
    padding: 20px 40px;
    font-size: 22px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.about-visuplans .button:hover {
    background-color: #ffc640;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about-visuplans .button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Override any conflicting button styles */
.button {
    background-color: #14568E !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.button:hover {
    background-color: #ffc640 !important;
    color: white !important;
}

@media (max-width: 768px) {
    .about-visuplans h2 {
        font-size: 2.8rem;
    }
    
    .about-visuplans p {
        font-size: 1.2rem;
        line-height: 1.7;
        max-width: 800px;
        padding: 0 15px;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .about-visuplans h2 {
        font-size: 2.2rem;
    }
    
    .about-visuplans p {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 10px;
        text-align: justify;
    }
}

@media (max-width: 1200px) {
    .process-container {
        padding-left: 150px;
        padding-right: 150px;
    }
}

@media (max-width: 768px) {
    .process-container {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 480px) {
    .process-container {
        padding-left: 50px;
        padding-right: 50px;
    }
}



.plan-section {
    background-color: #0056a3;
    color: white;
    font-family: Arial, sans-serif;
    padding: 50px 20px;
    text-align: center;
}

.plan-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: "Work Sans", sans-serif;
    color: #ffffff;
    position: relative;
}

.plan-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #fbb040;
    border-radius: 2px;
}

.plan-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

.plan-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-cards-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background-color: #024e94;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 30px 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 0 0 300px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.plan-card:nth-child(1) { animation-delay: 0.2s; }
.plan-card:nth-child(2) { animation-delay: 0.4s; }
.plan-card:nth-child(3) { animation-delay: 0.6s; }
.plan-card:nth-child(4) { animation-delay: 0.8s; }
.plan-card:nth-child(5) { animation-delay: 1s; }
.plan-card:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    background-color: #033a6f;
}

.plan-card img {
    width: 60px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.plan-card:hover img {
    transform: scale(1.1);
}

.plan-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.plan-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.plan-card button {
    background-color: #fbb040;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.plan-card button:hover {
    background-color: #e89a02;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(251, 176, 64, 0.3);
}

@media (max-width: 992px) {
    .plan-section h1 {
        font-size: 3rem;
    }
    
    .plan-cards-row {
        gap: 20px;
    }
    
    .plan-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .plan-section h1 {
        font-size: 2.5rem;
    }
    
    .plan-cards-row {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .plan-section h1 {
        font-size: 2rem;
    }
}



@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }

/* Responsive Design */
@media (max-width: 1200px) {
    .home-container {
        gap: 30px;
    }
    
    .inner-container-card {
        width: 280px;
        height: 230px;
    }
    
    .process-container {
        padding-left: 150px;
        padding-right: 150px;
    }
    
    .services-container {
        gap: 30px;
    }
    
    .services-card {
        width: 320px;
        height: 330px;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 15px 30px;
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .get-in-touch {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .home-container {
        margin: 70px auto 60px;
        gap: 25px;
    }
    
    .inner-container-card {
        width: 260px;
        height: 220px;
    }
    
    .process-container {
        padding-left: 100px;
        padding-right: 100px;
    }
    
    .services-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .services-card {
        width: 300px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        display: block;
        right: 0;
    }

    .nav-item {
        margin-bottom: 20px;
    }

    .nav-link {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        background-color: #f8f9fa;
        display: none;
    }

    .nav-item:hover .dropdown-menu {
        display: block;
    }

    .nav-right {
        display: block;
        margin-top: 30px;
        text-align: center;
    }

    .get-in-touch {
        display: inline-flex;
        margin-top: 20px;
    }

    .home-container {
        margin: 60px auto 40px;
        gap: 20px;
    }
    
    .inner-container-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 200px;
    }
    
    .process-container {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .number {
        font-size: 6rem;
        left: -30px;
    }
    
    .icon {
        height: 60px;
        width: 60px;
    }
    
    .icon i {
        font-size: 25px;
    }
    
    .services-card {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        text-align: center;
        margin-left: 0;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-left: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 15px;
    }
    
    .logo h2 {
        font-size: 1.3rem;
    }
    
    .home-container {
        margin: 50px auto 30px;
        padding: 0 15px;
    }
    
    .inner-container-card {
        max-width: 280px;
    }
    
    .process-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .number {
        font-size: 5rem;
        left: -20px;
    }
    
    .icon {
        height: 50px;
        width: 50px;
    }
    
    .icon i {
        font-size: 20px;
    }
    
    .process-content h3 {
        font-size: 18px;
    }
    
    .process-content p {
        font-size: 14px;
    }
    
    .services-card {
        max-width: 300px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3 {
        margin-left: 0;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #014a94;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 10px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: "Inter", sans-serif;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: #014a94;
}

.mobile-menu .nav-right {
    display: block;
    margin-top: 30px;
    text-align: center;
}

.mobile-menu .get-in-touch {
    display: inline-flex;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }

    header {
        padding: 15px 20px;
    }

    .logo h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 15px;
    }

    .logo h2 {
        font-size: 1.3rem;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}

#form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

#form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background-color: #f8d7da;
    color: #130f94;
    border: 1px solid #f5c6cb;
}

#form-message.hidden {
    display: none;
}

.experience {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(90deg, #014a94, #1170ce);
    padding: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

.stat {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h2 {
    font-size: 48px;
    margin: 0;
    font-family: "Work Sans", sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat p {
    margin: 10px 0 0;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    opacity: 0.9;
}

.counter {
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .experience {
        flex-direction: column;
        gap: 20px;
        padding: 30px 0;
    }

    .stat h2 {
        font-size: 36px;
    }

    .stat p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stat h2 {
        font-size: 32px;
    }

    .stat p {
        font-size: 13px;
    }
}


.software-use {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    text-align: center;
    padding: 60px 0;
}

.software-use h2 {
    font-weight: bold;
    color: #0c0c3e;
    margin-bottom: 40px;
    font-size: 35px;
    font-family: "Work Sans", sans-serif;
}

.software-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.software-logos img {
    max-height: 120px;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.software-logos img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .software-logos {
        flex-direction: column;
        gap: 50px;
    }

    .software-logos img {
        max-height: 100px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .software-logos img {
        max-height: 80px;
        max-width: 200px;
    }
}


.choice-section {
    background-color: #0054a6;
    color: white;
    padding: 50px 20px;
    text-align: center;
  }

  .choice-section h2 {
    color: #fdbb2d;
    margin-bottom: 40px;
    font-size: 28px;
  }

  .choice-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
  }

  .option {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .option h3 {
    color: #fdbb2d;
    margin-bottom: 20px;
  }

  .option p {
    font-size: 16px;
    line-height: 1.6;
  }

  .app-icons {
    margin-top: 20px;
  }

  .app-icons img {
    width: 40px;
    margin: 0 10px;
  }

  .know-more {
    background-color: #fdbb2d;
    color: #0054a6;
    padding: 15px 35px;
    margin: 30px 0 0 0;
    position: relative;
    right: 94%;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.know-more:hover {
    background-color: #f9a825;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.know-more:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .know-more {
        padding: 12px 30px;
        font-size: 16px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .know-more {
        padding: 10px 25px;
        font-size: 15px;
        margin-top: 20px;
    }
}


.pricing {
    /* background: linear-gradient(90deg, #6a0d83, #e73c7e); */
    color: black;
    padding: 60px 20px;
    text-align: center;
  }
  .pricing h2 {
    font-size: 54px;
    margin-bottom: 10px;
  }
  .pricing .sub-heading {
    margin-bottom: 44px;
    font-size: 18px;
  }
  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .card {
    background: white;
    color: black;
    padding: 30px 20px;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .card h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .card h3 span {
    color: #3d05cb;
  }
  .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .card ul {
    list-style: none;
    padding: 0;
    text-align: left;
  }
  .card ul li {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .newsletter{
    background-color: #0054a6;
  }
 