/* Font Family */
    body {
      font-family: 'Overpass', sans-serif;
    }

    /* Smooth Scrolling */
    html {
      scroll-behavior: smooth;
    }

    /* Custom Sky Blue Theme Styles */
    .bg-soft {
      background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%);
    }
    .card-shadow {
      box-shadow: 0 8px 24px rgba(135, 206, 235, 0.15);
    }
    .section-bg {
      background: linear-gradient(135deg, rgba(135, 206, 235, 0.3), rgba(173, 216, 230, 0.2), rgba(224, 242, 254, 0.4));
      backdrop-filter: blur(10px);
    }
    .skyblue-gradient {
      background: linear-gradient(135deg, rgba(135, 206, 235, 0.4), rgba(173, 216, 230, 0.3), rgba(224, 242, 254, 0.2));
      backdrop-filter: blur(8px);
    }
    .skyblue-card {
      background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(173, 216, 230, 0.15), rgba(224, 242, 254, 0.3));
      backdrop-filter: blur(10px);
      border: 1px solid rgba(135, 206, 235, 0.2);
    }
    .skyblue-hover:hover {
      background: linear-gradient(135deg, rgba(135, 206, 235, 0.3), rgba(173, 216, 230, 0.25), rgba(224, 242, 254, 0.4));
    }
    .primary-skyblue {
      background: linear-gradient(135deg, #87CEEB, #5DADE2);
    }
    .accent-red {
      color: #DC143C;
    }
    .accent-red-bg {
      background: linear-gradient(135deg, #DC143C, #B22222);
    }
    .text-skyblue-700 {
      color: #5DADE2;
    }

    /* Dark Sky Blue Color */
    .dark-skyblue {
      color: #1e3a8a;
    }

    /* Animated Hero Background */
    .hero-bg {
      background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="investment-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(135,206,235,0.1)"/><path d="M10,2 L15,8 L20,2" stroke="rgba(135,206,235,0.2)" stroke-width="0.5" fill="none"/><rect x="1" y="10" width="3" height="3" fill="rgba(220,20,60,0.1)"/><circle cx="15" cy="12" r="1.5" fill="rgba(135,206,235,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23investment-pattern)"/></svg>');
      animation: float 20s ease-in-out infinite;
    }

    .floating-icons {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .floating-icon {
      position: absolute;
      opacity: 0.1;
      animation: floatUp 15s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      33% { transform: translate(30px, -30px) rotate(120deg); }
      66% { transform: translate(-20px, 20px) rotate(240deg); }
    }

    @keyframes floatUp {
      0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      10% { opacity: 0.1; }
      90% { opacity: 0.1; }
      100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
    }

    /* Section Animations */
    .section-animate {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }

    .section-animate.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .card-animate {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
      transition: all 0.6s ease-out;
    }

    .card-animate.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .fade-in-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.8s ease-out;
    }

    .fade-in-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .fade-in-right {
      opacity: 0;
      transform: translateX(50px);
      transition: all 0.8s ease-out;
    }

    .fade-in-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* Hover Effects */
    .card-hover {
      transition: all 0.3s ease-out;
    }

    .card-hover:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(135, 206, 235, 0.3);
    }

    /* Navigation Font Weight */
    .nav-semibold {
      font-weight: 600;
    }

    /* Icon Spacing */
    .icon-spaced {
      margin-right: 12px;
    }

    /* Gradient Text */
    .gradient-text {
      background: linear-gradient(135deg, #1e3a8a, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

     .bg-glass {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(6px);
    }

  .tw-square li::marker { font-size: 1.1em; color: theme('colors.blue.600'); }

  @keyframes pulse-slow {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(1.03); }
  }
  .animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
  }

  /* Scrollbar Styling for Timeline */
    .scrollbar-thin {
      scrollbar-width: thin;
    }

    .scrollbar-thin::-webkit-scrollbar {
      height: 8px;
    }

    .scrollbar-thin::-webkit-scrollbar-track {
      background: #e0f2fe;
      border-radius: 4px;
    }

    .scrollbar-thin::-webkit-scrollbar-thumb {
      background: #e0f2fe;
      border-radius: 4px;
    }

    .scrollbar-thin::-webkit-scrollbar-thumb:hover {
      background: #e0f2fe;
    }