:root {
    /* =========================
     Backgrounds
  ========================== */
    --bg-app: #F6F6F6;
    --bg-navigation: #FFFFFF;
    --bg-nav-active: #D0E8FD;
    --bg-card: #FFFFFF;
    /* =========================
     Text & Icons
  ========================== */
    --text-navigation: #042AAD;
    --text-primary: #0B0F1A;
    --text-secondary: #4A5568;
    --text-muted: #8A94A6;
    --text-inverse: #FFFFFF;
    /* =========================
     Actions & Buttons
  ========================== */
    --action-primary: #244CDE;
    --action-secondary: #5FA3FF;
    --action-pos: #FFC100;
    /* =========================
     Borders & Dividers
  ========================== */
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-focus: #244CDE;
    /* =========================
     Status (Optional / Scalable)
  ========================== */
    --status-success: #22C55E;
    --status-warning: #F59E0B;
    --status-danger: #EF4444;
    --status-info: #5FA3FF;


    /* =========================
       Fonts
    ========================== */
    --font-heading: "K2D", sans-serif;
    --font-body: "Inter", sans-serif;
}

        html, body {
    overflow-x: clip;
}
body {
    background-color: var(--bg-app);
    font-family: var(--font-body);
    background-color: var(--bg-app);
    color: var(--text-primary);
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}



.ATF{
    background-color: #244CDE;
    min-height: 90vh;
}

.btn{
    border-radius: 15px;

    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
}

.btn-primary-outline{
    border-color: white;
    color: white;
}
.btn-primary{
    background-color: var(--action-pos);
    color: black;
}

nav{
    background-color: #244CDE;
    padding-top: 1.5vh;
    padding-bottom: 1.5vh;

}

.nav-link{
    color: white;
}

@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease, visibility .2s ease;
    }

    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }


    .nav-item.position-static .dropdown-menu {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    transform: none !important;
}
}

.footer-BigLink{
color: white;
text-decoration: none;
}

.footer-BigLink h1{
color: white;
text-decoration: none;
}

.footer-BigLink :hover{
color: var(--action-pos);
}


      /* Custom Animation Classes */
      .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }
      
      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }
      
      .float-animation {
        animation: float 6s ease-in-out infinite;
      }
      
      @keyframes float {
        0%, 100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
      }
      
      .slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      }
      
      .slide-in-left.visible {
        opacity: 1;
        transform: translateX(0);
      }
      
      .slide-in-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      }
      
      .slide-in-right.visible {
        opacity: 1;
        transform: translateX(0);
      }
      
      .pulse {
        animation: pulse 2s infinite;
      }
      
      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(4, 42, 173, 0.3);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(4, 42, 173, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(4, 42, 173, 0);
        }
      }
      

      @keyframes moveBackground {
        0% {
          transform: translate(0, 0);
        }
        100% {
          transform: translate(-50px, -50px);
        }
      }
      
      /* Animated Button */
      .btn-primary-outline {
        background: transparent;
        color: white;
        border: 2px solid white;
        padding: 12px 32px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
      }
      
      .btn-primary-outline:hover {
        background: white;
        color: #042AAD;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      }
      
      .btn-primary-outline::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
      }
      
      .btn-primary-outline:hover::after {
        width: 300px;
        height: 300px;
      }
      
      .btn-primary {
        /* background: #244CDE; */
        background-color: var(--action-pos);
        color: black;
        border: none;
        padding: 12px 32px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
      }
      
      .btn-primary:hover {
        background:  #042AAD;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(4, 42, 173, 0.3);
      }
      
      /* Feature Card Animations */
      .feature-card {
        transition: all 0.4s ease;
        border: 2px solid transparent;
      }
      
      .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
        border-color: #042AAD;
      }
      
      /* Stagger Animation for Feature Items */
      .feature-item {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.5s ease;
      }
      
      .feature-item.visible {
        opacity: 1;
        transform: translateX(0);
      }
      
      .feature-item:nth-child(2) { transition-delay: 0.1s; }
      .feature-item:nth-child(3) { transition-delay: 0.2s; }
      .feature-item:nth-child(4) { transition-delay: 0.3s; }
      .feature-item:nth-child(5) { transition-delay: 0.4s; }
      .feature-item:nth-child(6) { transition-delay: 0.5s; }
      
      /* Image Animations */
      .img-float {
        animation: imgFloat 8s ease-in-out infinite;
      }
      
      @keyframes imgFloat {
        0%, 100% {
          transform: translateY(0) rotate(0deg);
        }
        33% {
          transform: translateY(-20px) rotate(1deg);
        }
        66% {
          transform: translateY(10px) rotate(-1deg);
        }
      }
      
      /* Scroll Progress Indicator */
      .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background: linear-gradient(90deg, #042AAD, #244CDE);
        z-index: 1000;
        transition: width 0.3s ease;
      }






      .SmallATF{
        background-color: #244CDE;
        min-height: 30vh;
      }



/* Keep sticky on desktop */
.sticky-col {
    position: sticky;
    top: 13vh;
}

/* Disable sticky on mobile */
@media (max-width: 576px) {
    .sticky-col {
        position: static;
        top: auto;
    }
}







        .MyInfoCard{
            min-height: 250px;
            padding: 15px;
            border-radius: 20px;

            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;


            display: flex;
                flex-direction: column;
    justify-content: flex-end;

    

        }

.MyInfoCard h3{
color: white;
        }
