
    /* General Styles */
    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(135deg, #4A90E2, #50E3C2);
      color: #fff;
    }

    h1, h2, h3 {
      font-family: 'Verdana', sans-serif;
      margin-bottom: 15px;
    }

    a {
      text-decoration: none;
      color: #fff;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Header with Gradient Background */
    .hero {
      background: linear-gradient(135deg, #003E8D, #00B894);
      text-align: center;
      padding: 100px 20px;
      border-bottom: 5px solid rgba(255, 255, 255, 0.2);
    }

    .hero h1 {
      font-size: 3rem;
      margin: 0;
    }

    .hero p {
      font-size: 1.2rem;
      margin: 20px 0 30px;
    }

    .cta-button {
      background: #00A19D;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: #009688;
    }

    /* Stylish Navigation Menu */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
    }

    nav ul li {
      margin: 0 15px;
    }

    nav ul li a {
      font-size: 1rem;
      font-weight: bold;
      padding: 10px 15px;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    nav ul li a:hover {
      background: #00B894;
    }

    /* Section Styles */
    .section {
      padding: 80px 20px;
    }

    #about {
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      text-align: center;
    }

    /* Timeline */
    .timeline {
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      padding: 20px;
    }

    .timeline-item {
      margin-bottom: 20px;
    }

    .timeline-item h3 {
      margin: 0 0 10px;
      font-size: 1.5rem;
    }

    /* Portfolio */
    .grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .card2 {
     /* background: rgba(0, 0, 0.1, 0.5);
      border-radius: 10px;
      padding: 20px;
      text-align: center;*/
      width:600px;
      position: absolute;
     /* width: calc(33.333% - 20px);
      min-width: 300px;*/
     
      transition: transform 0.3s ease;
    }
.sechead{
    
}
    .card2:hover {
      transform: translateY(-10px);
    }
    .card {
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      width: calc(33.333% - 20px);
      min-width: 300px;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-10px);
    }

    /* Contact Form */
    form {
      background: rgba(0, 0, 0, 0.5);
      padding: 20px;
      border-radius: 10px;
    }

    input, textarea, button {
      width: 100%;
      margin: 10px 0;
      padding: 10px;
      border-radius: 5px;
      border: none;
    }

    button {
      background: #00B894;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
    }

    button:hover {
      background: #009688;
    }

    /* Footer */
    .footer {
      text-align: center;
      padding: 20px 0;
      background: rgba(0, 0, 0, 0.7);
    }