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

body {
  color: #fff;
  background: url("media/hero/hero.jpg") no-repeat center/cover fixed;
}

/* ================= OVERLAY ================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: -1;
}

/* ================= NAVBAR ================= */
.navbar {
  position: relative;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  padding: 12px 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none;

  z-index: 1000;
}

/* LOGO */
.logo img {
  width: 40px;
  border-radius: 50%;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 1;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
}

.hero p {
  opacity: 0.7;
  font-size: 14px;
}

/* ================= SECTIONS ================= */
section {
  padding: 80px 10%;
}

/* ================= GLASS EFFECT ================= */
.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

  padding: 40px;
  margin: 40px auto;

  transition: 0.3s ease;
}

.glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 255, 213, 0.2);
}

/* ================= TITLES ================= */
.section-title {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.section-desc {
  font-size: 14px;
  opacity: 0.7;
  text-align: center;
  margin-bottom: 25px;
}

/* ================= ABOUT ================= */
.about-container {
  display: flex;
  gap: 30px;
  align-items: center;
}

.about-container img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* ================= PROJECT ================= */
.featured-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}


.featured-img img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

/* ================= PHOTOS ================= */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-auto-rows: 400px; */
  gap: 20px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* VIDEO INSIDE GRID */
.video-full {
  grid-column: span 4; makes it bigger
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}


/* ================= CONTACT ================= */
.contact-box {
  /* text-align: center;
  max-width: 60%; */
}

.contact-info {
    /* width: 100%; */
}
.contact-info p {
    margin-bottom: 10px;
    margin-top: 15px;
  font-size: 14px;
  color: #ccc;
  width: 100%;
  display: flex;
  justify-content: start;
  gap: 10px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* margin-top: 20px; */
  width: 100%;
}
.contact-details{
    /* display: flex;
    gap: 35px;
    width: 100%;
    justify-content: space-between; */
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 10px;

  background: #00ffd5;
  color: black;
  font-weight: 600;
  cursor: pointer;

  transition: 0.3s;
}

.contact-form button:hover {
  background: #00c2a8;
}

/* SOCIAL */
.socials {
  margin-top: 20px;
  display: flex;
  /* justify-content: center; */
  gap: 15px;
}

.socials a {
  display: flex;
  align-items: center;
  gap: 8px;
    margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;

  background: rgba(255,255,255,0.08);
  text-decoration: none;
  color: white;
  font-size: 14px;

  transition: 0.3s ease;
}

.socials a img {
  width: 18px;
  height: 18px;
}

.socials a:hover {
  background: rgba(0, 255, 213, 0.2);
  transform: translateY(-2px);
}

.socials a {
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 14px;
  color: white;
  text-decoration: none;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;

    width: 220px;
    padding: 20px;

    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .about-container,
  .featured-wrap {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }
}

.resume-btn {
  margin-top: 20px;
  padding: 12px 24px;

  border-radius: 12px;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 14px;
  font-weight: 500;

  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);

  transition: 0.3s ease;
}

.resume-btn:hover {
  background: #00ffd5;
  color: black;
  transform: translateY(-3px);
}

/* EDUCATION GRID */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* CARD */
.edu-card {
  padding: 20px;
  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  backdrop-filter: blur(12px);

  transition: 0.3s ease;
}

/* HOVER EFFECT 🔥 */
.edu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,255,213,0.2);
}

/* TEXT */
.edu-year {
  font-size: 12px;
  opacity: 0.6;
}

.edu-card h3 {
  margin: 10px 0 5px;
}

.edu-card p {
  font-size: 14px;
}

.edu-card small {
  opacity: 0.6;
}

/* MOBILE */
@media(max-width:768px){
  .edu-grid {
    grid-template-columns: 1fr;
  }
}
/* CENTER TEXT */
.center {
  text-align: center;
}

/* WRAPPER (horizontal scroll) */
.edu-wrapper {
  /* display: flex; */
  
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 10px;
}

/* HIDE SCROLLBAR */
.edu-wrapper::-webkit-scrollbar {
  display: none;
  overflow: visible;

}

/* CARD STYLE (NEW LOOK 🔥) */
.edu-card2 {
  min-width: 280px;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);

  position: relative;

  transition: 0.3s ease;
}

/* HOVER EFFECT */
.edu-card2:hover {
  transform: translateY(-8px);
  background: rgba(0,255,213,0.1);
  border: 1px solid rgba(0,255,213,0.4);
}

/* TITLE */
.edu-card2 h3 {
  margin-bottom: 10px;
}

/* YEAR BADGE */
.edu-card2 span {
  position: absolute;
  top: 15px;
  right: 15px;

  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;

  background: rgba(0,255,213,0.2);
}

/* TEXT */
.edu-card2 p {
  font-size: 14px;
  margin-top: 10px;
}

.edu-card2 small {
  opacity: 0.6;
}

/* MOBILE */
@media(max-width:768px){
  .edu-wrapper {
    padding-left: 10px;
  }
}

/* Make about section relative */
#about .glass {
  position: relative;
}

/* SOCIAL ICONS (TOP RIGHT) */
.about-socials {
  position: absolute;
  top: 20px;
  right: 20px;

  display: flex;
  gap: 10px;
}

/* ICON BUTTON */
.about-socials a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.08);

  transition: 0.3s ease;
}

/* ICON SIZE */
.about-socials img {
  width: 18px;
  height: 18px;
}

/* HOVER EFFECT 🔥 */
.about-socials a:hover {
  background: #00ffd5;
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(0,255,213,0.6);
}

/* PROJECT LOGO (EXACT SOCIAL STYLE) */
.project-logo {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.08);

  transition: 0.3s ease;
}

.project-logo img {
  width: 18px;
  height: 18px;
}

/* HOVER SAME AS SOCIALS */
.project-logo:hover {
  background: #00ffd5;
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(0,255,213,0.6);
}
/* FOOTER */
.footer {
  text-align: center;
  padding: 30px 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);

  margin-top: 40px;
}