
  /* The style section */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #f6f8fb;
      --card: #ffffff;
      --text: #172033;
      --muted: #64748b;
      --primary: #0f4c81;
      --accent: #f59e0b;
      --border: #e5e7eb;
      --shadow: rgba(15, 76, 129, 0.12);
    }

    body {
      font-family: "Poppins", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
    }

    html {
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      height: 76px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 7%;
      z-index: 1000;
    }

    .logo {
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 24px;
    }

    .nav-links a {
      font-weight: 600;
      color: var(--muted);
      transition: 0.25s;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .hamburger {
      display: none;
      border: none;
      background: var(--primary);
      color: #fff;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      cursor: pointer;
    }

    section {
      padding: 80px 7%;
    }

    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
      padding-top: 130px;
      background:
        radial-gradient(circle at top right, rgba(245,158,11,0.18), transparent 35%),
        linear-gradient(135deg, #ffffff, #eef6ff);
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5rem);
      line-height: 1.05;
      margin-bottom: 20px;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      color: var(--muted);
      max-width: 680px;
      margin-bottom: 28px;
    }

    .hero-card {
      background: var(--card);
      border-radius: 32px;
      padding: 30px;
      box-shadow: 0 25px 60px var(--shadow);
      border: 1px solid var(--border);
    }

   .profile-circle{
    width:180px;
    height:180px;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #ffffff;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
    margin-bottom:24px;
}

.profile-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--primary);
      color: #fff;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.25s;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 30px var(--shadow);
      background: #09385f;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
      margin-left: 10px;
    }

    .section-label {
      color: var(--accent);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-text {
      color: var(--muted);
      max-width: 800px;
      margin-bottom: 34px;
    }

    .grid {
      display: grid;
      gap: 24px;
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 28px;
      box-shadow: 0 18px 40px var(--shadow);
      transition: 0.25s;
    }

    .card:hover {
      transform: translateY(-6px);
    }

    .icon-box {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--primary);
      font-size: 1.3rem;
      margin-bottom: 18px;
    }

    .card h3 {
      margin-bottom: 10px;
    }

    .card p,
    .card li {
      color: var(--muted);
    }

    .card ul {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .card li i {
      color: var(--accent);
      margin-right: 8px;
    }

    .timeline {
      display: grid;
      gap: 18px;
      max-width: 900px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 20px;
      align-items: start;
    }

    .year {
      background: var(--primary);
      color: #fff;
      padding: 10px 14px;
      border-radius: 999px;
      text-align: center;
      font-weight: 700;
    }

    .contact-box {
      display: grid;
      gap: 14px;
    }

    .contact-item {
      display: flex;
      gap: 12px;
      align-items: center;
      color: var(--muted);
    }

    .contact-item i {
      color: var(--primary);
      font-size: 1.1rem;
    }

    form {
      display: grid;
      gap: 16px;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      padding: 14px 16px;
      border-radius: 16px;
      font-family: inherit;
      outline: none;
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    input:focus,
    textarea:focus {
      border-color: var(--primary);
    }

    footer {
      background: var(--text);
      color: #fff;
      padding: 44px 7%;
      text-align: center;
    }

    footer p {
      color: rgba(255,255,255,0.75);
    }

    @media (max-width: 900px) {
      .hero,
      .grid-2,
      .grid-3 {
        grid-template-columns: 1fr;
      }

      .hamburger {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px 7%;
        transform: translateY(-140%);
        transition: 0.3s;
        border-bottom: 1px solid var(--border);
      }

      .nav-links.open {
        transform: translateY(0);
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .btn-outline {
        margin-left: 0;
        margin-top: 12px;
      }
    }
  