
.open-sans-normal    {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "width" 100;
}


 /* RESET */
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

    /* NAVBAR */
    header {
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      background: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    nav {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
    }

    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #ff7b00;
    }
    .logo span { color: #3c91ff; }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 600;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #3c91ff;
    }

    .btn {
      background: linear-gradient(45deg, #3c91ff, #1c63b9);
      color: #fff;
      padding: 8px 20px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn:hover { opacity: 0.85; }

    /* HERO SECTION */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 120px auto 50px auto;
      padding: 0 20px;
    }

    .hero-left {
      flex: 1 1 500px;
    }

    .hero-left h1 {
      font-size: 40px;
      margin-bottom: 15px;
      background: linear-gradient(45deg, #38bdf8, #1e40af);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-left p {
      font-size: 18px;
      color: #555;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .hero-left .buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
.hero-right {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/header_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

    

    .hero-right img {
      width: 100%;
      max-width: 300px;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero { flex-direction: column; margin-top: 150px; }
      .hero-left, .hero-right { flex: 1 1 100%; text-align: center; }
      .hero-left h1 { font-size: 36px; }
      .hero-left p { font-size: 16px; }
    }



/* About me Section */
.about-section {
  background: linear-gradient(135deg, #f8f7ff, #e8f0ff);
  padding: 80px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00b4ff, #0066ff); /* Blue gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Chrome/Safari */
  color: transparent; /* Firefox/Other browsers */
  text-align: left;
}


.about-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 10px;
  color: #222;
}

.card p {
  color: #444;
  font-size: 16px;
}

.btn {
  display: inline-block;
  background: linear-gradient(45deg, #38bdf8, #1e40af);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: linear-gradient(45deg, #1e40af, #38bdf8);
  transform: translateY(-2px);
}





/* SECTION skills */
.skills-section {
  padding: 80px 0;
  background: #f6f9ff;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.heading {
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(45deg, #00b4ff, #0066ff); 
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 40px;
    text-align: center; 
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.skill-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.skill-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.skill-card p {
  font-size: 18px;
  font-weight: 600;
}





/* SECTION project */
.project-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #eef7ff, #e4f0ff); /* Same as education */
  font-family: "Segoe UI", Arial, sans-serif;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(to right, #0ea5e9, #6366f1); /* Sky → Indigo */
  -webkit-background-clip: text;
  color: transparent;
}

.section-sub {
  text-align: center;
  margin-bottom: 50px;
  color: #555;
  font-size: 18px;
}

/* GRID */
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* CARD */
.project-card {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.4s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Thumbnail */
.project-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* CONTENT */
.project-content {
  padding: 25px;
}

.project-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  background: linear-gradient(to right, #0ea5e9, #6366f1);
  -webkit-background-clip: text;
  color: transparent;
}

.project-content p {
  color: #444;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* TAGS */
.project-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.project-tags span {
  background: #eff6ff; /* Soft sky-blue badge background */
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 13px;
  color: #1e3a8a; /* Indigo text */
}

/* LINKS */
.project-links {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  background: linear-gradient(45deg, #0ea5e9, #6366f1); /* Sky → Indigo */
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.25s;
  font-weight: 600;
}

.btn:hover {
  background: linear-gradient(45deg, #6366f1, #0ea5e9);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Education Section */
.edu-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #eef7ff, #e4f0ff);
}

.edu-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 35px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.edu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.edu-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(to right, #0284c7, #6366f1); /* Sky → Indigo */
  -webkit-background-clip: text;
  color: transparent;
}

.edu-text {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Gradient Button (Sky / Indigo) */
.edu-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, #0ea5e9, #6366f1);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.25s ease;
}

.edu-btn:hover {
  background: linear-gradient(45deg, #6366f1, #0ea5e9);
  transform: translateY(-2px);
}



/* footer with contact */
/* Base Section */
.contact-section {
  background: linear-gradient(135deg, #f8f7ff, #e8f0ff);
  padding: 80px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.section-heading {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(to right, #6366f1, #0ea5e9);
  -webkit-background-clip: text;
  color: transparent;
}

.section-sub {
  text-align: center;
  margin-bottom: 50px;
  color: #555;
  font-size: 18px;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info, .contact-form {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info h3, .contact-form h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #444;
}

/* Social Icons */
.social-icons a img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  transition: transform 0.3s;
}
.social-icons a img:hover {
  transform: scale(1.2);
}

/* Form */
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: #0077B5;
  box-shadow: 0 0 5px rgba(0,119,181,0.5);
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #00aaff, #0077B5);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: linear-gradient(45deg, #0077B5, #00aaff);
}

/* Footer */
.footer-section {
  background: linear-gradient(135deg, #e8f0ff, #d0d9ff);
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
/* Blue gradient headings like other sections */
.blue-heading {
  font-size: 26px;
  margin-bottom: 15px;
  background: linear-gradient(to right, #00aaff, #0077B5);
  -webkit-background-clip: text;
  color: transparent;
}

/* Social Icons */
.social-icons a img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  transition: transform 0.3s;
}
.social-icons a img:hover {
  transform: scale(1.2);
}

/* Rest of the CSS remains the same as before for form, grid, footer, etc. */

/* Responsive */
@media(min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
