 <style>
    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f5f5f5;
    }

    /* Header */
    header {
      background-color: #ffffff;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
      padding: 16px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .profile-photo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #007bff;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
      color: #2c3e50;
    }

    nav {
      display: flex;
      gap: 15px;
    }

    nav a {
      text-decoration: none;
      color: #2c3e50;
      font-weight: 500;
      font-size: 16px;
    }

    nav a:hover {
      color: #007bff;
    }
	.navbar .nav-right {
	  padding-right: 40px; /* ✅ Add this line or increase value */
	}

    /* Mobile Menu */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle div {
      width: 25px;
      height: 3px;
      background-color: #2c3e50;
      margin: 4px 0;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        position: absolute;
        top: 80px;
        right: 30px;
        background-color: #ffffff;
        flex-direction: column;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        padding: 10px;
        border-radius: 6px;
      }

      nav a {
        margin: 10px 0;
      }

      nav.active {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    }
	.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1b4965;
    padding: 20px 60px;
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

    /* Layout */
  main {
  display: flex;
  padding: 0 20px;
  margin-top: 20px;
  gap: 20px;
}
.about-text {
	margin-left: 20px;
	margin-right: 20px;
	
	
}
.contact-info {
	margin-left: 20px;
	margin-right: 20px;
	
	
}
.featured-section {
	margin-left: 20px;
	margin-right: 20px;
	
	
}
.left-section {
  flex: 1;
}

.right-section {
  flex: 2;
}


    /* Slider */

    h2 {
      color: #2c3e50;
      margin-top: 0;
    }

    .skills-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .skills-list li {
      background-color:#f4f8fb;
      color: black;
      padding: 8px 12px;
      margin: 8px 0;
      border-radius: 6px;
      font-weight: 500;
      font-size: 15px;
    }

    .sub-section {
      margin-bottom: 30px;
    }

    .sub-section ul {
      padding-left: 18px;
    }

    /* Footer */
    footer {
      background-color: #2c3e50;
      color: #ffffff;
      padding: 15px 30px;
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .footer-section {
      flex: 1 1 200px;
      margin-bottom: 10px;
    }

    .footer-section h4 {
      font-size: 14px;
      margin-bottom: 6px;
    }

    .footer-section a {
      display: block;
      color: #ffffff;
      text-decoration: none;
      margin: 2px 0;
      font-size: 13px;
    }

    .footer-section a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      text-align: center;
      width: 100%;
      font-size: 12px;
      margin-top: 10px;
      border-top: 1px solid #ffffff33;
      padding-top: 8px;
    }
	.static-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.site-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f0f4f8;
  border-bottom: 2px solid #ccc;
  height: 150px; /* Adjust as needed */
}

.header-left img.profile-pic {
  height: 120px;
  width: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
  border: 2px solid #007acc;
}

.header-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-name {
  font-size: 2em;
  margin: 0;
  color: #003366;
  font-weight: bold;
}

.site-title {
  font-size: 1.2em;
  color: #666;
  margin-top: 5px;
}
body {
    padding-top: 70px; /* adjust if navbar height changes */
  }
  .project-badge {
  background-color: #f7faff;
  border-left: 6px solid #0077cc;
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
}

.project-badge h2 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #004080;
}

.project-badge ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.project-badge li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #333;
}

.project-badge a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.project-badge a:hover {
  text-decoration: underline;
}
#weather-card {
  padding: 20px;
  background: #fdfdfd;
  border-radius: 12px;
  max-width: 500px;
  margin: 40px auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.06);
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

#forecast-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

#forecast-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

#manual-city {
  padding: 8px;
  width: 60%;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 10px;
  font-size: 14px;
}

#weather-card button {
  padding: 8px 14px;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 6px;
  margin-left: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

#weather-card button:hover {
  background: #005fa3;
}
.tool-block {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.tool-block-3d{
  max-width: 900px; 
  margin: auto; background: white; 
  padding: 20px; border-radius: 10px; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tool-banner {
  width: 100%;
  height: 220px; /* FIXED height */
  overflow: hidden;
}

.tool-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full area coverage without distortion */
  display: block;
}

.tool-content {
  padding: 32px;
  text-align: center;
  min-height: 240px; /* Ensures visual balance */
}

.tool-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #222;
}

.tool-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.tool-content .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0055cc;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.tool-content .btn:hover {
  background-color: #003a99;
}
.intro-banner {
  text-align: center;
  background: #f0f4ff;
  padding: 2rem 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.intro-banner .tagline {
  font-size: 1.8rem;
  color: #003366;
  font-weight: 600;
}
.intro-banner .intro-text {
  font-size: 1.1rem;
  margin-top: 0.8rem;
  color: #333;
}
.intro-banner .call-to-action {
  font-size: 1.05rem;
  margin-top: 0.5rem;
  font-weight: 500;
}
.cta-button {
  margin-top: 1rem;
  display: inline-block;
  background: #0055cc;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button:hover {
  background: #003f99;
}
.tagline {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #003366;
}

.rotated-rocket {
  display: inline-block;
  transform: rotate(-90deg);
  margin-left: 0.4rem;
}
.golden-bordered {
  color: #ff8c00; /* Bright Gold */
  -webkit-text-stroke: 1px #003366; /* Deep Blue border */
  font-weight: bold;
  text-align: center;
}
.demo-subtext {
  text-align: center;
  font-size: 1rem;
  color: #003366; /* Deep blue subtitle */
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(90deg, #43a047, #fdd835);  /* green → yellow */
  color: #ffffff; /* White text for best contrast */
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.contact-form button:hover {
  background: linear-gradient(90deg, #fdd835, #43a047);  /* Reverse gradient */
  transform: scale(1.03);
}
.popup {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #43a047;
  color: white;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: none;
}

.popup.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
  </style>