         /* first main section */
   /* Base Styling */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
    }

    /* Hero Section */
    .hero-section {
      width: 100%;
      padding: 0;
      /* background-color: #183B4E; */
    }

    .hero-card {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 0;
    }

 .card-container {
  background-color: #183B4E;
  width: 100%;
  padding: 100px 40px;
  border-radius: 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: visible;
}


    .card-container h1 {
      font-size: 3rem;
      font-weight: bold;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .card-container h4.typing-text {
      font-size: 1.5rem;
      color: #ffffff;
      min-height: 2rem;
      position: relative;
    }

    .typing-text::after {
      content: '';
      display: inline-block;
      width: 1ch;
      height: 1.2em;
      background-color: currentColor;
      animation: blink 0.7s infinite;
      vertical-align: bottom;
      margin-left: 2px;
    }

    @keyframes blink {
      0%, 100% { opacity: 0; }
      50% { opacity: 1; }
    }
/*2nd  section*/
  .glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .glass-card img {
    width: 50px;
    margin-bottom: 15px;
  }

  .glass-card .card-title {
    font-weight: 600;
    font-size: 1.1rem;
  }

  .glass-card .card-text {
    font-size: 0.95rem;
    color: #333;
  }
  /* form section */
        :root {
            background-color: #183B4E;
            /* --primary-gradient: linear-gradient(135deg, #6e8efb, #a777e3); */
            --card-bg: rgba(255, 255, 255, 0.95);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .gradient-bg {
             background-color: #183B4E;
            /* background: var(--primary-gradient); */
            min-height: 100vh;
            padding: 4rem 0;
        }
        
        /* Text Cards Styling */
        .text-card {
            background: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .text-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .text-card h2 {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .text-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }
        
        .text-card p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        /* Form Card Styling */
        .form-card {
            background: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            margin: 3rem auto;
            width: 100%;
            max-width: 900px;
            transition: transform 0.3s ease;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .form-header h2 {
            font-weight: 700;
            font-size: 1.8rem;
            color: #2c3e50;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .form-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }
        
        .form-control {
            height: 50px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            padding: 0.5rem 1rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #a777e3;
            box-shadow: 0 0 0 0.25rem rgba(167, 119, 227, 0.25);
        }
        
        .btn-submit {
            background: var(--primary-gradient);
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 8px;
            width: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-submit::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-submit:hover::after {
            left: 100%;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .text-card, .form-card {
                padding: 1.8rem;
                margin-bottom: 1.5rem;
            }
            
            .form-header h2 {
                font-size: 1.5rem;
            }
        }
        /*MAp*/
        