
    :root {
      --bg: #000;
      --text: #fff;
      --green: #5affb2;
      --purple: #7b61ff;
      --blue: #00c3ff;
      --section1: #0d0d0d;
      --section2: linear-gradient(145deg, #0f0f0f, #1a1a1a);
      --section3: linear-gradient(to right, #0c0c0c, #191919);
      --section4: #0e0e0e;
      --card: #121212;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    body {
      background-color: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      position: relative;
      line-height: 1.6;
    }

    /* Background circles */
    .bg-circles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      overflow: hidden;
      pointer-events: none;
    }

    .bg-circle {
      position: absolute;
      border-radius: 50%;
      background: var(--purple);
      filter: blur(80px);
      opacity: 0.15;
    }

    .bg-circle-1 {
      width: 700px;
      height: 700px;
      top: -100px;
      left: -100px;
      background: var(--purple);
    }

    .bg-circle-2 {
      width: 800px;
      height: 800px;
      bottom: -200px;
      right: -150px;
      background: var(--purple);
    }

    .bg-circle-3 {
      width: 500px;
      height: 500px;
      top: 40%;
      right: 10%;
      background: var(--blue);
      opacity: 0.1;
    }

    .bg-circle-4 {
      width: 400px;
      height: 400px;
      bottom: 10%;
      left: 15%;
      background: var(--green);
      opacity: 0.1;
    }

    .bg-grid {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(var(--purple) 1px, transparent 1px),
        linear-gradient(90deg, var(--purple) 1px, transparent 1px);
      background-size: 50px 50px;
      background-position: center center;
      opacity: 0.03;
      z-index: -1;
      pointer-events: none;
    }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .main-title {
      text-align: center;
      padding: 100px 0 60px;
      position: relative;
      overflow: hidden;
      padding-top: 200px;
    }
    
  
    .main-title h1 {
      font-size: 4.5rem;
      font-weight: 800;
      background: linear-gradient(to right, var(--green), var(--purple), var(--blue));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
      letter-spacing: -1px;
      opacity: 0;
      transform: translateY(30px);
    }

    .main-title::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(to right, var(--green), var(--blue));
      border-radius: 2px;
    }

    section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .section-inner {
      position: relative;
      z-index: 1;
    }

    /* .section-title {
      font-size: 2.5rem;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(20px);
    } */
  


.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  display: block !important;
}

/* Ensure the rule applying to all section titles is more specific */
section .section-title {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Make sure the animations don't conflict with visibility */
.section-title .highlight {
  opacity: 1;
  visibility: visible;
}

   
.section-title span {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}


    

    .section-title span::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--green);
    }

    /* Section styling */
    .section-1 {
      background: var(--section1);
    }

    .section-2 {
      background: var(--section2);
    }

    .section-3 {
      background: var(--section3);
    }

    .section-4 {
      background: var(--section4);
    }

    /* Card grid layouts */
    .grid {
      display: grid;
      gap: 20px;
      opacity: 0;
    }

    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    /* Enhanced card styling */
    .card {
      background: var(--card);
      border-radius: 12px;
      padding: 30px;
      height: 100%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
      transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                  box-shadow 0.5s ease;
      display: flex;
      flex-direction: column;
      z-index: 1;
    }

    /* Enhanced card border effect */
    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 0;
      background: linear-gradient(to bottom, var(--green), var(--purple));
      transition: height 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 0;
    }

    .card:hover::before {
      height: 100%;
    }

    /* Enhanced card background glow */
    .card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, transparent 30%, rgba(123, 97, 255, 0.05) 70%);
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: -1;
    }

    .card:hover::after {
      opacity: 1;
    }

    .card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 30px rgba(123, 97, 255, 0.25);
    }

    /* Enhanced corner glow effect */
    .card-glow {
      position: absolute;
      bottom: -50px;
      right: -50px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--purple);
      opacity: 0.15;
      filter: blur(40px);
      transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card:hover .card-glow {
      transform: scale(2.5);
      opacity: 0.35;
      background: linear-gradient(45deg, var(--purple), var(--blue));
      animation: pulse 3s infinite alternate;
    }

    /* Circle hover effect */
    .circle-hover {
      position: absolute;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--purple);
      opacity: 0;
      filter: blur(60px);
      pointer-events: none;
      z-index: -1;
      transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .card-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--green);
      position: relative;
      z-index: 1;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .card:hover .card-title {
      transform: translateX(5px);
    }

    .card p {
      position: relative;
      z-index: 1;
      transition: transform 0.4s ease;
    }

    .card:hover p {
      transform: translateX(5px);
    }

    /* Floating elements */
    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
    }

    .floating-element {
      position: absolute;
      opacity: 0.05;
      border-radius: 50%;
      filter: blur(20px);
    }

    /* Section divider */
    .section-divider {
      height: 1px;
      background: linear-gradient(to right, transparent, var(--purple), transparent);
      margin: 30px 0;
      opacity: 0.3;
    }

    /* Animated highlights */
    /* .highlight {
      position: relative;
      display: inline-block;
      z-index: 1;
    } */

    /* .highlight {
      opacity: 1 !important;
      visibility: visible !important;
    } */
    .highlight {
      position: relative;
      display: inline-block;
      z-index: 1;
    }
    
    .highlight::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100% !important;
      height: 8px !important;
      background: var(--purple);
      opacity: 0.3;
      z-index: -1;
      transform: scaleX(1) !important; /* Force the line to be visible by default */
      transform-origin: left;
      transition: transform 0.5s ease;
    }
    .highlight, .highlight.active {
      opacity: 1 !important;
      visibility: visible !important;
    }
    .highlight[data-highlight="green"]::before {
      background: var(--green) !important;
    }
    
    .highlight[data-highlight="blue"]::before {
      background: var(--blue) !important;
    }
    
    .highlight[data-highlight="purple"]::before {
      background: var(--purple) !important;
    }
    .highlight.active::before {
      transform: scaleX(1);
    }

    /* scoped just to your header logo */
.header-logo {
  display: block !important;      
  visibility: visible !important; 
  max-width: 180px;               
  width: auto;
  height: auto;
  margin: 0;                      
  padding: 0;                     
  object-fit: contain;           
  z-index: 1000;                  
}


.navbar-brand figure {
  overflow: visible !important;
}


    /* Enhanced animations */
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.25; }
      50% { transform: scale(1.1); opacity: 0.35; }
      100% { transform: scale(1); opacity: 0.25; }
    }

    @keyframes float {
      0% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(2deg); }
      100% { transform: translateY(0) rotate(0deg); }
    }

    @keyframes glow {
      0% { box-shadow: 0 0 5px rgba(90, 255, 178, 0.5); }
      50% { box-shadow: 0 0 30px rgba(90, 255, 178, 0.8); }
      100% { box-shadow: 0 0 5px rgba(90, 255, 178, 0.5); }
    }

    @keyframes colorCycle {
      0% { color: var(--green); }
      33% { color: var(--purple); }
      66% { color: var(--blue); }
      100% { color: var(--green); }
    }

    /* Subtle pulsing animation for background circles */
    @keyframes circlepulse {
      0% { transform: scale(1); opacity: 0.15; }
      50% { transform: scale(1.05); opacity: 0.2; }
      100% { transform: scale(1); opacity: 0.15; }
    }

    /* Responsive design */
    @media (max-width: 1200px) {
      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .grid-2, .grid-3 {
        grid-template-columns: 1fr;
      }

      

      .section-title {
        font-size: 2rem;
      }

      section {
        padding: 70px 0;
      }
      .main-title h1 {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
        word-spacing: 0.08em;
    }
    
    .main-title {
        padding-top: 100px;
        padding-bottom: 40px;
    }
      
      

    }
