* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f8fafc;
  color: #111827;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1270px;
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

 
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* LOGO */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
}

.college-name {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.navbar {
  display: flex;
  gap: 28px;
}

.navbar a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  transition: 0.3s;
}


.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #f59e0b);
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}


.navbar a:hover {
  color: #6366f1;
}


@media (max-width: 800px) {
  .navbar {
    display: none;
  }
}

.hero {
  padding: 40px 0;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 153, 0, 0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(139, 92, 246, 0.25),
      transparent 40%
    ),
    linear-gradient(135deg, #eef2ff, #f8fafc);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4),
    transparent 60%
  );
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #4f46e5, #9333ea, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #808183;
  margin-bottom: 30px;
  max-width: 560px;
  padding-left: 14px;
}
.highlight {
  font-weight: 600;
  background: linear-gradient(90deg, #9333ea, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #9333ea);
  color: white;
  padding: 14px 26px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background-color 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-5px);
  background-color: #9333ea;
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 24px;
  border-radius: 16px;

  font-size: 15px;
  font-weight: 700;

  color: #4f46e5;
  text-decoration: none;

  background: rgba(99, 102, 241, 0.08);
  border: 2px solid #6366f1;

  letter-spacing: 0.3px;

  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.15);

  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.2s ease;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #6366f1, #9333ea);
  color: white;

  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.45);
}
.btn-secondary:active {
  transform: scale(0.94);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.hero-right {
  flex: 1;
  position: relative;
  height: 500px;
  overflow: hidden;
}

.map-card {
  position: absolute;
  width: clamp(160px, 22vw, 260px);
  height: clamp(110px, 15vw, 180px);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card-main {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  z-index: 3;
}


.map-card-top {
  top: 10%;
  left: 50%;
  transform: translate(-65%, 0) rotate(-8deg);
  z-index: 2;
}


.map-card-bottom {
  bottom: 12%;
  left: 50%;
  transform: translate(-35%, 0) rotate(8deg);
  z-index: 1;
}

.map-card:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 5;
}

@media (max-width: 1000px) {
  .hero-left h1 {
    font-size: 48px;
  }

  .hero-right {
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 800px) {
  .navbar {
    display: none;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-right {
    height: 320px;
  }

  .map-card-top {
    top: 10%;
  }

  .map-card-bottom {
    bottom: 10%;
  }
}
@media (max-width: 800px) {
  .navbar {
    display: none;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
}

.creative-footer {
  position: relative;
  padding: 100px 20px 60px;
  text-align: center;
  overflow: hidden;

  background: linear-gradient(135deg, #1e293b, #312e81, #ea580c);
  color: white;
}

/* SOFT GLOW */
.creative-footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 70%
  );
  filter: blur(40px);
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}


.footer-quote {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.footer-subtext {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 30px;
}


.footer-line {
  width: 60px;
  height: 3px;
  margin: 20px auto;
  background: linear-gradient(90deg, #9333ea, #f59e0b);
  border-radius: 10px;
}

.footer-credit {
  font-size: 14px;
  opacity: 0.7;
}

@media (max-width: 800px) {
  .footer-quote {
    font-size: 24px;
  }

  .footer-subtext {
    font-size: 14px;
  }
}

.network {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #f59e0b;
  border-radius: 50%;

  box-shadow:
    0 0 10px #f59e0b,
    0 0 20px #f59e0b;

  animation: pulse 1.5s infinite;
}

.d1 {
  top: 50%;
  left: 20%;
}
.d2 {
  top: 20%;
  left: 50%;
}
.d3 {
  top: 50%;
  right: 20%;
}
.d4 {
  bottom: 20%;
  left: 50%;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.6);
  }
}
.footer-highlight {
  background: linear-gradient(90deg, #9333ea, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}


.about-dev {
  position: relative;
  padding: 30px 20px;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  overflow: hidden;
  font-family:Georgia, 'Times New Roman', Times, serif;
}

.about-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(99,102,241,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(245,158,11,0.15), transparent 40%);
  z-index: 0;
}


.about-wrapper {
  position: relative;
  z-index: 1;

  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content h1 span {
  background: linear-gradient(90deg, #6366f1, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-main {
  font-size: 18px;
  color: #374151;
  margin-bottom: 12px;
}

.about-sub {
  font-size: 16px;
  color: #4b5563;
}

/* ================= SECTION ================= */
.about-guidance {
  margin-top: 60px;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;

  background: linear-gradient(90deg, #6366f1, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.guidance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center; /* 🔥 center cards */
  gap: 30px;
}

/* CARD SPECIAL STYLE */
.about-guidance .team-card {
  border: 2px solid #f59e0b;
  background: rgba(245,158,11,0.08);

  transition: 0.3s ease;
}

.about-guidance .team-card:hover {
  transform: translateY(-10px) scale(1.03);

  box-shadow: 
    0 20px 50px rgba(0,0,0,0.15),
    0 0 0 2px rgba(245,158,11,0.3);
}

/* IMAGE */
.about-guidance .team-img {
  border-color: #f59e0b;
}

/* ROLE COLOR */
.about-guidance .role {
  color: #f59e0b;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {

  .section-title {
    font-size: 22px;
  }

  .guidance-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}

/* ========================= */
/* TEAM */
/* ========================= */
.about-team {
  grid-column: span 2;
}

.about-team h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #9333ea;
}

/* GRID (IMPROVED) */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* ========================= */
/* CARD */
/* ========================= */
.team-card {
  background: rgba(255,255,255,0.92);
  border-radius: 18px;

  padding: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;

  height: 100%;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.15),
    0 0 0 1px rgba(99,102,241,0.1);
}

/* ========================= */
/* IMAGE */
/* ========================= */
.team-img {
  width: 100px;
  height: 100px;

  border-radius: 50%;
  overflow: hidden;

  margin-bottom: 12px;

  border: 3px solid #6366f1;

  transition: 0.3s ease;
}

.team-card:hover .team-img {
  transform: scale(1.08);
  border-color: #9333ea;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================= */
/* TEXT */
/* ========================= */
.team-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.team-info h3 {
  font-size: 18px;
  font-weight: 700;
}

.role {
  font-size: 14px;
  color: #6366f1;
}

.desc {
  font-size: 14px;
  color: #4b5563;
}

/* ========================= */
/* TAG */
/* ========================= */
.about-tag {
  margin: 10px 0 12px;

  padding: 5px 12px;
  font-size: 12px;

  border-radius: 8px;

  background: linear-gradient(135deg, #6366f1, #f59e0b);
  color: white;

  font-weight: 500;
}

/* ========================= */
/* SOCIAL */
/* ========================= */
.socials a {
  font-size: 18px;
  margin: 0 6px;
  text-decoration: none;
  transition: 0.2s;
}

.socials a:hover {
  transform: scale(1.2);
  color: #f59e0b;
}

/* ========================= */
/* PROFESSOR */
/* ========================= */
.team-card.professor {
  border: 2px solid #f59e0b;
  background: rgba(245,158,11,0.1);
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 1000px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-team {
    grid-column: span 1;
  }

  .about-content h1 {
    font-size: 36px;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 600px) {
  .about-dev {
    padding: 60px 15px;
  }

  .about-content h1 {
    font-size: 30px;
  }

  .about-main {
    font-size: 15px;
  }

  .about-sub {
    font-size: 14px;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-img {
    width: 85px;
    height: 85px;
  }

  .team-info h3 {
    font-size: 16px;
  }

  .role,
  .desc {
    font-size: 12px;
  }
}