* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

body {
    background: linear-gradient(135deg, #020024 0%, #090979 35%, #00d4ff 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.light-streaks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.streak {
    position: absolute;
    background: linear-gradient(90deg, rgba(255,0,102,0) 0%, rgba(255,0,102,0.8) 50%, rgba(255,0,102,0) 100%);
    height: 2px;
    width: 200%;
    animation: moveStreak 8s linear infinite;
    transform: rotate(-30deg);
    transform-origin: left center;
    opacity: 0.7;
    box-shadow: 0 0 20px 5px rgba(255,0,102,0.8);
}

.streak:nth-child(2) {
    top: 20%;
    animation-delay: -2s;
    background: linear-gradient(90deg, rgba(0,195,255,0) 0%, rgba(0,195,255,0.8) 50%, rgba(0,195,255,0) 100%);
    box-shadow: 0 0 20px 5px rgba(0,195,255,0.8);
}

.streak:nth-child(3) {
    top: 40%;
    animation-delay: -4s;
    background: linear-gradient(90deg, rgba(255,0,102,0) 0%, rgba(255,0,102,0.8) 50%, rgba(255,0,102,0) 100%);
    box-shadow: 0 0 20px 5px rgba(255,0,102,0.8);
}

.streak:nth-child(4) {
    top: 60%;
    animation-delay: -1s;
    background: linear-gradient(90deg, rgba(0,195,255,0) 0%, rgba(0,195,255,0.8) 50%, rgba(0,195,255,0) 100%);
    box-shadow: 0 0 20px 5px rgba(0,195,255,0.8);
}

.streak:nth-child(5) {
    top: 80%;
    animation-delay: -3s;
    background: linear-gradient(90deg, rgba(255,0,102,0) 0%, rgba(255,0,102,0.8) 50%, rgba(255,0,102,0) 100%);
    box-shadow: 0 0 20px 5px rgba(255,0,102,0.8);
}

@keyframes moveStreak {
    0% {
        transform: translateX(-100%) rotate(-30deg);
    }
    100% {
        transform: translateX(50%) rotate(-30deg);
    }
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(2, 0, 36, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(90deg, #00d4ff, #ff00c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00d4ff;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding-top: 60px;
}

h1 {
    font-size: 80px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.tagline {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(90deg, #4e9af1, #1aa5ff);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 165, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 165, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.arrow-icon {
    margin-left: 8px;
}

section {
    padding: 50px 0;
    width: 100%;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: scale(1);
}

.feature-card:hover {
    transform: scale(1.1); /* zoom in/pop out */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); /* stronger shadow */
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #00d4ff;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.container h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: white;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.process {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.process-image {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.process-background {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.process-content {
    position: relative;
    z-index: 2;
}

.process-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #4e9bf5;
    color: white;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
    animation-delay: 1s; /* Start pulsing after zoom-in completes */


}

.process-title {
    background-color: #4e9bf5;
    color: white;
    font-size: 1.5rem;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
}

.process-description {
    font-size: 1.1rem;
    color: #e6e6e6;
    max-width: 300px;
    margin: 0 auto;
}

.arrow {
    font-size: 2.5rem;
    color: #4e9bf5;
    margin-top: 100px;
}

.monitor {
    width: 150px;
    height: 120px;
    background-color: #444;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.monitor:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 15px;
    background-color: #333;
}

.monitor-screen {
    width: 140px;
    height: 100px;
    margin: 5px;
    background-color: #333;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    }

.form-field {
    width: 80%;
    height: 15px;
    background-color: #4e9bf5;
    border-radius: 3px;
}

.browser-window {
    width: 200px;
    height: 150px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.browser-header {
    height: 20px;
    background-color: #f0f0f0;
    display: flex;
    padding: 0 10px;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #999;
}

.browser-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 20px);
    background-color: white;
    padding: 15px;
    position: relative;
}

.Procontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Project Roadmap Section */
        .project-roadmap {
            padding: 60px 0;
        }

        .project-roadmap h1 {
            color: white;
            text-align: center;
            font-size: 3rem;
            margin-bottom: 80px;
            font-weight: 700;
        }

        /* Timeline */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 800px;
            
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background-color: #329af5;
            z-index: 1;
        }

        /* Milestone nodes */
        .milestone {
            position: relative;
            margin-bottom: 100px;
            display: flex;
            align-items: center;
        }
        
        .milestone-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #3498db;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .milestone-line {
            height: 4px;
            background-color: #3498db;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .milestone-line-left {
            right: 50%;
            left: 25%;
            margin-right: 25px;
        }
        
        .milestone-line-right {
            left: 50%;
            right: 25%;
            margin-left: 25px;
        }
        
        /* Card flip container */
        .phase-box {
            width: 40%;
            min-height: 200px;
            padding: 20px;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            perspective: 1000px; /* Required for 3D effect */
        }
        
        .phase-left {
            margin-right: auto;
        }
        
        .phase-right {
            margin-left: auto;
        }
        
        /* Flip card inner container */
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 200px;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }
        
        .phase-box:hover .flip-card-inner {
            transform: rotateY(180deg);
        }
        
        /* Position the front and back sides */
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden; /* Safari */
            backface-visibility: hidden;
            border-radius: 8px;
        }
        
        .flip-card-front {
            background-color: white;
            color: #333;
            padding: 10px;
        }
        
        .flip-card-back {
            background-color: #3498db;
            color: white;
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
        }
        
        .flip-card-back img {
            max-width: 100%;
            height: auto;
            max-height: 160px;
            border-radius: 4px;
            margin-bottom: 15px;
            object-fit: cover;
        }
        
        h2 {
            margin-bottom: 15px;
            color: #3498db;
            text-align: center;
        }
        
        .flip-card-back h2 {
            color: white;
        }
        
        p {
            line-height: 1.6;
        }

        @media (max-width: 480px) {
            .phase-box {
                width: calc(100% - 100px);
                padding: 15px;
            }

            .phase-box h2 {
                font-size: 1.4rem;
            }

            .phase-box p {
                font-size: 0.9rem;
            }
        }

.arrow-head {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    position: absolute;
    bottom: 0;
    left: 0;
}

.plant {
    width: 50px;
    height: 80px;
    position: relative;
}

.pot {
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 5px 5px 8px 8px;
    position: absolute;
    bottom: 0;
    left: 5px;
}

.leaves {
    position: absolute;
    bottom: 35px;
    left: 20px;
    width: 10px;
    height: 45px;
    background-color: green;
}

.leaves:before, .leaves:after {
    content: '';
    position: absolute;
    width: 25px;
    height: 15px;
    background-color: #4e9bf5;
    border-radius: 50%;
}

.leaves:before {
    top: 5px;
    left: -20px;
    transform: rotate(-30deg);
}

.leaves:after {
    top: 15px;
    left: 5px;
    transform: rotate(30deg);
}

.cat {
    width: 50px;
    height: 40px;
    background-color: #111;
    border-radius: 50% 50% 0 0;
    position: relative;
}

.cat:before {
    content: '';
    position: absolute;
    left: -5px;
    top: -8px;
    width: 15px;
    height: 15px;
    background-color: #111;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.cat:after {
    content: '';
    position: absolute;
    right: -5px;
    top: -8px;
    width: 15px;
    height: 15px;
    background-color: #111;
    border-radius: 50%;
    transform: rotate(45deg);
}

.cat-tail {
    position: absolute;
    right: -20px;
    bottom: 5px;
    width: 30px;
    height: 8px;
    background-color: #111;
    border-radius: 0 8px 8px 0;
}

.rewards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 200px;
}

.reward {
    width: 40px;
    height: 20px;
    background-color: #4e9bf5;
    border-radius: 10px;
}

.table {
    width: 200px;
    height: 15px;
    background-color: #333;
    position: relative;
}

.table-leg {
    position: absolute;
    bottom: -40px;
    width: 10px;
    height: 40px;
    background-color: #333;
}

.table-leg:first-child {
    left: 20px;
}

.table-leg:last-child {
    right: 20px;
}

.aqi-device {
    width: 80px;
    height: 120px;
    background-color: #444;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
}

.aqi-screen {
    width: 60px;
    height: 40px;
    background-color: #4e9bf5;
    border-radius: 5px;
}

.aqi-sensor {
    width: 20px;
    height: 20px;
    background-color: #222;
    border-radius: 50%;
}

.aqi-button {
    width: 15px;
    height: 15px;
    background-color: #333;
    border-radius: 50%;
}

.house {
    width: 120px;
    height: 100px;
    position: relative;
}

.house-base {
    width: 100px;
    height: 60px;
    background-color: #444;
    position: absolute;
    bottom: 0;
    left: 10px;
}

.house-roof {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 50px solid #333;
    position: absolute;
    top: -50px;
    left: 0;
}

.house-window {
    width: 20px;
    height: 20px;
    background-color: #4e9bf5;
    position: absolute;
    top: 20px;
}

/* Zoom-in animation for scrolling */
@keyframes zoomInScroll {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .zoom-in-animation {
    animation: zoomInScroll 0.6s ease-out forwards;
  }
  
  /* Initialize the elements we want to animate */
  .feature-card, .key-feature, .step, .aqi-card, .contact-form {
    opacity: 0;
    transform: scale(0.8);
  }
  
  .process {
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  }
  
  .process.visible {
    opacity: 1;
    transform: scale(1);
  }
  
  .process:nth-child(1).visible {
    transition-delay: 0.2s;
  }
  
  .process:nth-child(3).visible {
    transition-delay: 0.4s;
  }
  
  .process:nth-child(5).visible {
    transition-delay: 0.6s;
  }
  
  .arrow {
    opacity: 0;
    transition: opacity 1s ease;
    transition-delay: 0.8s;
  }
  
  .arrow.visible {
    opacity: 1;
  }

.how-it-works {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin-top: 30px;
    position: relative;
}

.steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, #4e9af1, #1aa5ff);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4e9af1, #1aa5ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(26, 165, 255, 0.6);
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Add the bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.step-number.bounce {
    animation: bounce 1s ease;
}

/* Media query from original CSS */
@media (max-width: 992px) {
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .steps:before {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
    }
}

.dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.dashboard-preview {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.dashboard-navbar {
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.dashboard-content {
    display: flex;
    height: calc(100% - 50px);
}

.dashboard-sidebar {
    width: 220px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.sidebar-item {
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.sidebar-item:hover, .sidebar-item.active {
    background: rgba(255, 255, 255, 0.1);
}

.animation-container {
      width: 100%;
      max-width: 500px;
      aspect-ratio: 1;
      position: relative;
      overflow: hidden;
      background-color: #fff;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-top: 100px;
      margin-left: 500px;
    }
    
    svg {
      width: 100%;
      height: 100%;
    }
    
    .token-container {
      transform-origin: center;
    }
    
    .breez-token {
      fill: #2E7D32;
      filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.2));
    }
    
    .token-border {
      fill: none;
      stroke: #4CAF50;
      stroke-width: 6;
      stroke-dasharray: 600;
      stroke-dashoffset: 600;
      filter: drop-shadow(0px 0px 4px rgba(76, 175, 80, 0.5));
    }
    
    .token-letter {
      fill: #FFFFFF;
      font-weight: bold;
      font-size: 70px;
      text-anchor: middle;
      dominant-baseline: central;
      filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.2));
    }
    
    .data-particle {
      fill: #8BC34A;
      transform-origin: center;
    }
    
    .air-wave {
      fill: none;
      stroke: #8BC34A;
      stroke-width: 3;
      stroke-dasharray: 12, 6;
      opacity: 0.7;
    }
    
    .stats {
      position: absolute;
      display: flex;
      justify-content: space-between;
      width: 100%;
      bottom: 20px;
      padding: 0 40px;
      box-sizing: border-box;
      font-size: 14px;
      color: #1B5E20;
    }
    
    .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .stat-value {
      font-size: 24px;
      font-weight: bold;
      margin: 5px 0;
    }
    
    .stat-label {
      font-size: 12px;
      opacity: 0.8;
    }

.key-features {
    background: rgba(0, 0, 0, 0.2);
    padding: 60px 0;
    border-radius: 20px;
    margin-top: 60px;
    width: 100%;
}

@keyframes slideInFromRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideInFromLeft {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

.key-feature {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    gap: 40px;
    opacity: 0; /* Start invisible */
}

.slide-in-right {
    animation: slideInFromRight 1s ease forwards;
  }
  
  .slide-in-left {
    animation: slideInFromLeft 1s ease forwards;
  }
  
  /* Add responsive behavior for the animations */
  @media (max-width: 992px) {
    .slide-in-right, .slide-in-left {
      animation: zoomInScroll 0.6s ease-out forwards;
    }
  }

.key-feature:last-child {
    margin-bottom: 0;
}

.key-feature:nth-child(even) {
    flex-direction: row-reverse;
}

.key-feature-image {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;

}

.key-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the container */
    display: block;
}

.key-feature-content {
    flex: 1;
}

.key-feature-title {
    font-size: 28px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.key-feature-description {
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Contact Form Styles */
.precontainer {
      background-color: rgba(255, 255, 255, 0.393);
      padding: 30px 40px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      max-width: 400px;
      width: 100%;
      text-align: center;
      margin-left: 540px;
    }

    .pcontainer h2 {
      margin-bottom: 10px;
      color: #333;
    }

    .pcontainer p {
      font-size: 14px;
      color: #666;
      margin-bottom: 20px;
    }

    input[type="text"],
    input[type="email"] {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }

    button {
      width: 100%;
      padding: 12px;
      background-color: #a244dcbc;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background-color: #4a148c;
    }

    .twitter-link {
      display: block;
      margin-top: 20px;
      color: #000000;
      text-decoration: none;
      font-size: 14px;
    }

    .success-message {
      margin-top: 15px;
      color: #2e7d32;
      font-weight: bold;
      display: none;
      animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }


/* 
.footer-links a:hover {
    color: #00d4ff;
} */


/* Ensure navigation stays on top */
nav, .navigation, header {
    position: relative;
    z-index: 1000; /* High z-index to stay on top */
}

/* Map container styling */
.map-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    z-index: 1; /* Lower z-index than navigation */
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 1; /* Same as container */
}

.section-title {
    text-align: center;
    margin-top: 40px;
    font-size: 2em;
}

/* If your map uses Leaflet controls, ensure they don't get hidden */
.leaflet-top, .leaflet-bottom {
    z-index: 900; /* High but lower than nav */
}

@media (max-width: 992px) {
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .steps:before {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
    }
    
    .key-feature {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }
    
    .key-feature-image {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .dashboard-content {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        height: 60px;
        display: flex;
        overflow-x: auto;
        padding: 10px;
    }
    
    .sidebar-item {
        white-space: nowrap;
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .dashboard-main {
        grid-template-columns: 1fr;
    }
}

